Hey all, soo. I was just wondering about "The Devs Admin Bot", I wish to make something similar for a group of mine. Where and How can I get started with that? I have no prior...
Hey all, soo.......I've got a stupid question. But the thing is, I haven't been able to find an answer since past week :/ So, I'm making an ajax call with the following heade...
Hey all! I was wondering if it was possible to read block files while they are mounted. Like if you have a pen drive and it's mapped to file /dev/sdb and the file is mounted...
So then, something like this? const TOKEN = "some_secret_token" func main() { http.Handlefunc("/one", testGet) http.HandleFunc("/two", testPost) http.ListenAndServeTLS(p...
Hi, I wish to secure my APIs against third party abuse by making sure that only my webapp can use the routes. Soooo, how could that be achieved? I've been looking into aut...
With low level unix.Read() method /dev/abc dir is being interpreted as a normal file but for other locations it errors out saying it is a directory. Is that the case because ...
How do I mount an image file? I tried looking into golang.org/x/sys/unix. The documentation states that there is a function called "Mount' but for some reason, I can't find it...
Thoughts on Julia? Could it replace Python anytime soon? How's the community support? Are there enough ML/DL libraries available? I hear it's built by MIT so it sounds promi...
Are there any books or tutorials or related resources you guys might know that could help in optimizing go web servers to use less memory and CPU? I'm writing a webapp with n...
Hey all, I've been using promises for making API calls via axios But I wish to use the async await pattern. So for the following code: onSubmit = (params, config) => { ...
Hey guys so I've been trying to learn EmguCV (Using current version i.e 3.1). I need to use the HomographyMatrix in order to mark the detected object. But I am not able to fi...
Yea, I meant goroutines. I thought more reading like four routines parallely would increase the copying speed. There must be some way to speed up copying, right?
On second thought, scratch that, not really worried about ML yet(not that interested tbh), but I'd like to know about GraphQL, how it's different than REST APIs(preferably wit...
How can I create a RAM Disk in Windows? What Win32 APIs are going to be useful here?
Hey all! I keep getting this error while trying to run neo4j on Arch Linux: `Error: Could not find or load main class org.neo4j.server.CommunityEntryPoint ` I installed it...
Can I do low-level stuff with C#? Like reading raw bits from a mobile's internal storage that is connected to computer via usb and writing those exact bits into a .img file?
Hey all. How do I perform low-level r/w stuff with c/c++ ? I wish to read raw bits from my usb device and then write those bits into a .img file. Thoughts?
Has anyone tried HTTP/2 push server in Go? I'm a little confused with this one, I've read that it has been included in standard library since go 1.8 & that to enable it all we...
Btw correct me if I'm wrong but aren't methods defined in Interfaces and don't necessarily need a struct? Also, I haven't found any use cases for them yet. Maybe I'm simply ...
I see. Couldn't you just put that part (the database file?) in another lambda function and just call it internally when required?