Hello I have a question Why do we need namespace to avoid conflict names when we have classes that already do this job?
Hi I use provider package to manage global state across two screens When I use provider in some screen and set the value of the provider like that: print(formId) // I can see...
I have idea for good project that can make the desktop development much better in windows. Electron - what a good framework, using html and css + js to make great apps. But s...
Hi How can i access variables when debugging node js?
как я могу добавить headers на сервер svelte?
How can I generate this function using struct? mouse.go#L179 tried as you can see in the picture but it didn't worked
Someone know how can I reverse engineer webpack bundeled code? (I don't have the source files or map files) And how can I call function of webpack from dev console?
let url = 'https://google.com' useEffect(() => { console.log(`fetching ${url}...`) }, [url]) Is something like that ok?
Hi How can I improve my programming knowledge? My goal is to write better systems in high scale I have a lot of hands on experience in programming, but I don't have knowledge...
I need to return result from this function only when the for loop finished, do you have idea how to do that? update: what do you think about the solution with await new promis...
Как я могу импортировать scss-файл в svelte из тега <script>?
how can I configure react to pass the session auth credentials to api proxy middlware? I have this proxy for keeping the api secure the proxy interact with the api internally ...
How can I build data structure similar to this one in Dart? https://github.com/basveeling/python-miio/blob/master/miio/integrations/ihcooker/recipe_profile.py#L42
Hi I need help with mysql query select city, sum(sub.area_consumption) from ( select city, sum(amount_streetlight) / consumption as area_consumption from MuniLEIMS.stati...
Does anyone here have experience with the cube.js platform?
Guys, how do you organize your code projects folder? I have too many projects, And I cant organize them by language because some of them has several language, Share your way ...
Hi I try to create data structure for FileSystem I want to "map" root folder that has childs files and folder every folder has name, path, parent, files, folders folders is a...
H Any recommended testing framework / runner for nodejs module? I got many problems when I put the tests like that /project /src index.js /test test.js // import ...
Hi How can I compile c/cpp code on windows without visual studio? Is there a convenient way to develop c/cpp on windows?
Is there a better way to create dom element with nested divs in vanilla js than dom.createElement... multiple times? ..