Anybody into reactphp?
my usestate hook variable becomes a function later on. but it remains undefined and causes errors. how can i fix it?
How can I make my PHP CLI script running forever, even though the execution has reached last line?
Seems like everything is being slowly bought by Microsoft. Two years ago, they buys GitHub, recently they acquired Citus Data https://www.citusdata.com/. They are one of the c...
my ISP has this weird Ethernet port that doesn't stay open always. When you connect the Ethernet to a device, the port won't light up right away. It lights up for a second and...
is there any eslint rule I can enforce a mandatory brackets? For example : if (myVar === 90) return initAction(); To this if (myVar === 90) { return initAction(); }
how to I construct a new array from an object? Here is how i am doing this: ` var myObject = {name: "Alex Jonathan", age: 41, id: 3}; let {name, age} = myObject myArray = [...
Any trick to make nginx+ php-fpm fast? My client got frustrated with the performance of VPS server. He thinks $3 hosting does a better job.
A few days ago I complained here about VSCode running like very slow in Linux. Everybody were telling me to upgrade RAM and stuff. I told them again and again that VSCode runs...
Is it possible to create ORM models from raw SQL?
How does a mysql query work? The client does new TCP request for each query? Or, do they open one connection per client and sends the queries over the one already established ...
How to manage large scale cron jobs system with nodeJS that has fault tolerance? Would using message que system be a viable choice?
How can I solve this? If I use typedefs I can do so easily, but here it doesn't
I want to write a nodejs script to execute a long running binary and the origin nodeJS process quites but the child process keeps running. How do I achieve that?
I want to achieve this, I want to call a function and return value containing data, but the knex library is async, Any workarounds?
Guys, do these quick app/website builders pose a risk to your business? I heard they have this adobe xd to flutter ui export feature and mockup to webpage system built by Anim...
I want to add graphiql to a public graphql endpoint. Because there is no GraphiQL there. But the endpoint supports introspection queries. Is it possible to create graphiql fro...
is it a good idea to develop a hybrid app with node and php? i like php's doctrine library.
How do I protect information in my database while using GraphQL? I think it is easy to get an idea of database internal structures and query every part of it. Any trick to obf...
how do I do a fulltext search on sqlite? if I do WHERE name LIKE 'beth' then I see first entry as "McBeth" "Elizabeth" etc. I want to get the entries that start with "be...