search
  • Sign In
  • Sign Up
Password reset successful

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

P粉351138462

P粉351138462

Follow
student

Follow 0
fans 0
integral 0
Idiomatic Type Conversion in Go

I was playing around with Go and was wondering what the best way is to perform idiomatic type conversions in Go. Basically my problem lays within automatic type conversions between u

2026-01-09 07:22:16Ask
Python
Negative lookbehind equivalent in JavaScript

Is there a way to achieve the equivalent of a negative lookbehind in JavaScript regular expressions? I need to match a string that does not start with a specific set of characters.

2026-01-08 21:43:12Ask
JavaScript
What is a rune?

What is a rune in Go? I've been googling but Golang only says in one line: rune is an alias for int32. But how come integers are used all around like swapping cases? The following

2026-01-03 11:43:10Ask
Python
Concurrent HashSet<T> in .NET Framework?

I have the following class. class Test{ public HashSet Data = new HashSet(); } I need to change the field "Data" from different threads, so I would like some opinions on my cu

2025-12-17 20:22:08Ask
C++
Is there something wrong with joins that don't use the JOIN keyword in SQL or MySQL?

When I started writing database queries I didn't know the JOIN keyword yet and naturally I just extended what I already knew and wrote queries like this: SELECT a.someRow, b.someRow

2025-12-10 20:22:22Ask
MySQL
What are functional interfaces used for in Java 8?

I came across a new term in Java 8: "functional interface". I could only find one use of it while working with lambda expressions. Java 8 provides some built-in functional interfaces

2025-12-04 08:22:11Ask
Java
Electron gets AppData on preload

How to get the preloaded AppData directory? Background.js[...]asyncfunctioncreateWindow(){constwin=newBrowserWindow({width:800,height:600,webPreferences:{preload:path.join(__static,"preload.js"),nodeIntegration:process.env.E

2024-04-06 11:05:31Ask
Vue.js
How can I first show the syntax for logging into the system when I type a folder name in localhost

Don't know what syntax is? What I want to happen is that when I type localhost/farm-e-mart, the first file should show the login system. How can I do this?

2024-04-02 14:32:52Ask
PHP
How to read two-dimensional array data using Google Sheets API?

I'm new to the GoogleSheetsAPI and I'm currently developing a system to send data to Google Sheets. When I try to send data it shows error like: Invalid value[0][0] Below is my code line. `$client=getClientAuth();$spreadsheet_ID=$this->spreadsheet->spreadsheetId;$range="Sheet1";$values=$this

2024-03-30 16:24:35Ask
PHP
Navigate to next page after making selection using Visible Values ​​option

I'm trying to create a flow using HTML (code is at the bottom) I select "Cisco" and then go to the next box for me to choose a type, I select "PE Router" and then go to the next set of options, select the device and so on , until completed How can I create something similar to continue? It will be used for troubleshooting to check and verify the steps that have been completed and what to try or do next, depending on the option selected. Photo example(https://i.stack.imgur.com/EAgGs.png)<labelfor

2024-02-26 22:45:32Ask
HTML