# disclaimer: i'm completly new to python ### imports ### class MyWindow(Gtk.Window): def __init__(self): ### irrelevant initialization of gtk ### self.s...
when doing urlopen().read(), what does it do? the read functions supports a parameter to ask for a specific amount of bytes (or bits?) but when passing no arguments, does it j...
what DB should I use, MongoDB or PostgreSQL? in the case of PostgreSQL, what guide should i learn from (no sql experience at all)? any cool libraries to use with MongoDB apart...
Hey! i need some help with Sequelize. Let's suppose I created a user: const newUser = await User.create({ username, password }); Then I want to return to the client the user, ...
basically, a webpush subscription has three fields, endpoint, auth and p256dh (the last ones are keys.) which can I use to uniquely identify a subscription? or should I genera...
[express.js] Hey! I have some regexps to verify that the body of a request is valid, and I don't want to make a middleware that goes through every regexp and checks if valid, ...
What do you guys recommend for styling in a React app?
Hey. how can I make a subscription listener that doesn't render anything, that only listens to write to cache? This is Apollo Client in React btw
Why do pepole use axios? fetch can do the same thing I think
Hey! I love The Devs, but could you not shorten the link to the articles? it makes Instant View not work.
I'm thinking of ditching graphql and try to do everything in web sockets. What do you guys think?
Hey pepole! Is there someone that knows Apollo (mainly client) REALLY well and can give me a hand?
Hey! I'm interested in learning about GraphQL, but I was wondering, how does it keep itself secure? Is there a theorical attack where a user can make a (hacked in) query for t...
it executes the query: INSERT INTO "users" ("id","username","password","createdAt","updatedAt") VALUES (DEFAULT,'x','xxx','2019-01-29 20:25:56.973 +00:00','2019-01-29 20:25:56...
Hey, i'm on debian w gnome. Hibernation is broken in my machine, so how would i go to disable it or replace it with suspension?
okay i honestly don't understand lots of stuff you're saying. what do you think would be the database type i need?
does someone use (neo)vim for javascript? i'm learning vim and i need a good .vimrc/plugins to get started off
I want to subscribe to something after I get the Query for something (as I need to use info from the Query for the variables of the subscription). Any idea? (this is of course...
Quick question, if I delete a mongodb document can another document use the _id that the deleted one used?
does somebody have some good resources on service workers?