search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

P粉709644700

P粉709644700

Follow
student

Follow 0
fans 0
integral 0
How can I use Unicode-aware regular expressions in JavaScript?

There should be something akin to \w that can match any code-point in Letters or Marks category (not just the ASCII ones), and hopefully have filters like [[P*]] for punctuation, etc

2026-01-12 15:43:11Ask
JavaScript
Read a character from standard input in Go (without pressing Enter)

I want my app to show: press any key to exit ... And to exit when I press any key. How can I achieve this? Note: I have googled but all of what I've found needed to press Enter at t

2026-01-02 11:22:13Ask
Python
Alternatives for returning multiple values from a Python function [closed]

The canonical way to return multiple values in languages that support it is often tupling. Option: Using a tuple Consider this trivial example: def f(x): y0

2025-12-22 19:22:12Ask
Python
How to customize VSCode id attribute?

I recently moved from Atom to VSCode, and while I've managed to customize most of the editor to my liking, I'm still missing some Atom features that I like. One of them is that the "id" attribute in Atom used to be a specific color, something like #99FFFF. I've looked through themes but can't find one that makes the id attribute color different than the others. Another feature I like is that when creating a new HTML element, e.g. A div with the most commonly used basic attributes by default. I got the hang of using emmet fragments but it still

2024-03-31 14:13:45Ask
HTML
React error: Item is not iterable when adding to state

I'm currently trying to use the spread operator to push items into an array in React, but I'm getting the following error. The error occurs in the PhotoUploader component within PlacesForm.jsx. I've included the code into the component below. PlacesForm.jsx: importaxiosfrom'axios'importReact,{useEffect,useState}from'react'import{useNavigate,usePara

2024-03-27 17:49:53Ask
React
php - generate a 4 digit number

For the verification code, the code below generates a 5-digit number. I want it to be 4 digits. what should I do. //generaterandomnumbers$sayilar='';for($x=15;$x<=95;$x+=20){$sayilar.=($sayi=rand(0,9));imagechar($image,rand (3,5),$x,rand(2,14),$sayi,$textcolor);}

2024-02-25 20:05:18Ask
PHP
When rendering happens inside onsubmit handler

I'm new to react and while learning I tried some code to understand controlled and uncontrolled components, I used usestate and useref. First time I gave the data name as: john and age:40 and clicked submit I saw name as "prakash" and age as 40 because I changed status during submit then I changed only age to 60 and click submit, it doesn't change the age, I'm wondering because I changed the state during submit, which means it needs to render and change the age to 60. Can you explain why it doesn't change the age

2024-02-21 22:29:30Ask
React
Vue 3 - Specifying the type of components and props when using them as function parameters

In Vue3, I'm creating a function that will accept an instance of a component and a property to be passed. I'm also using TypeScript and wondering if it's possible to enter these parameters. For example, the function would look like: constexample=(component,props)=>{//}; So my question is: How do I specify the type of the component instance? These are not always the same components, but at least components that serve similar purposes. Is there a way for me to specify the type of prop and limit it to the prop of the first parameter (component)?

2024-01-05 23:55:40Ask
Vue.js
The rewritten title is: SweetAlert2: "onBeforeOpen" parameters are unknown

I'm using Laravel5.8 and Sweetalertv2 and I'm trying to trigger this alert on Blade with: Swal.fire({title:'<h4style="color:#0c5460;">Updatinguserstatus</h4>',html:'< h5style="color:#0c5460">Wait...</h5&

2023-11-10 09:39:01Ask
PHP
Embed targeting

I'm currently trying to position the embedded content between the image and the center of the screen. To accomplish this, I leveraged https://rss.app/ to embed the NBA portion of Google News into my website. If you need CSS files, please feel free to ask. I've been struggling with this for a while and would really appreciate any help you can provide. <htmllang="en"><head><metacharset="UTF-8">&l

2023-09-15 00:14:35Ask
HTML