Hopefully it's not off-topic, but Is Tor for Android as reliable as its desktop version? I couldn't find a great deal of reviews on its Android counterpart on the internet. 🤔
Ironic eh? 😂 It's rumored around the internet that Arch breaks often because it's a cutting-edge rolling distro, whereas Ubuntu's the way to go especially when it comes to se...
But it probably is. Who in their right mind comes to a group and just says "Hi"?
It seems that letting Go infer (what to us are) obvious variable types [1] instead of stating them explicitly [2] all the time is a good practice. [1] a := 5 [2] var a int ...
What are you trying to accomplish exactly? function main() { a = 13.563; console.log(`number: ${a}\ntype: ${typeof(a)}`); } main(); \\ number: 13.563 \\ type: number
What do you mean by "right document to work"? Are you saying you're an undocumented immigrant looking for a formal job?
What library do you guys use in Go for web automation / web scraping? Sometimes a library such as go-colly won't suffice because you might need to click some buttons before r...
Do you guys think the slower performance of apps written in React Native when compared to the ones written in Dart (Flutter) is noticable enough to justify not using the forme...
I have a NodeJS backend. I wonder if it would make any sense to create an API with Go since the backend, as I understand it, will still do the hard work 🤔 I couldn't find a d...
Do you guys make browser automations to scrape website data via some PHP library or do you resort to doing so in another programming language and import the scraped data in th...
If so, why not just sanitize the input and use eval()?
Is it possible for someone connected to a wired network with internet access to know whether someone else's using an ethernet cable to connect it to an extraneous router used ...
Have you tried Puppeteer?
Do you guys think using Gin is a sane choice for a large, long-term API project, or is it better to stick to the built-in libraries?
Is there a way to check my router's public IP from CLI from a device connected, instead of accessing the router admin panel? I tried some commands but all I could get was it'...
Aren't there well-established solutions out there already?
Do any of you know if you need the premium subscription to use Google Material Design in Adobe XD? I'm new to it and I don't seem to find a way to use Google Material Design ...
Yes there's that too. If you don't have any experience in the service you're offering it's nearly impossible to get first orders. Let's put it this way: would you rather hire...
Just out of interest, what browser do you guys use on your Android? I'm trying to find a decent privacy-centered one, but I guess it'll come at the cost of not being compatib...
Is it possível / a good idea to make my JS library that works on both NodeJS and client-side JS via CDN? It seems that there's little to no information about that out there. ...