>And Web Serial reached mainline Firefox last week. That's good news. I wish FF wasn't so conservative... they're missing a lot of cool APIs. Sometimes I wonder who they think their audience is. I suppose they would…
One of the greatest texts ever written. Ok maybe just one of my favorites. I wouldn't mind a 2nd edition though... surely the system call interface has changed a bit since 2010.
A bunch of different ways probably. This method is stolen from SO (works for Chrome): const detect = () => { var fs = window.RequestFileSystem || window.webkitRequestFileSystem; if (!fs) { console.log("FS check…
You're in luck, Divinity 2 runs perfectly for me on linux with Proton (with a little bit of work). Check protondb.com.
Bisqwit: https://www.youtube.com/watch?v=eF9qWbuQLuw Also Professor Leonard but someone already mentioned him.
I don't do anything special for prototyping, I just use what I normally do if I were creating the real thing. > django-admin startproject > copy+paste my webpack config for React > copy+paste my general management…
Yeah they must mean new accounts, if not then I'm lost. I guess it could have reset autoincrement but they said it didn't. The only other thing I can think of is that the signed token that's put in localStorage is sent…
The part of that that I don't get is how a new user could have the same ID as an old (truncated) user since "our system created new records for them, with primary keys generated from the existing sequence (PostgreSQL…
So the session keys mapped to usernames, rather than IDs in the database? Otherwise, when the database is restored with the old user IDs, the session would become invalid instead of continuing to work. This is what I'm…
"Some 55,000 devices were affected in the United States and 14,000 in China, and Iran's share of affected devices was 2 percent," Azari-Jahromi was quoted as saying. Pretty misleading headline.
That's how it should be done yeah. Developers on Windows seem to be really loose in their use of TCP or UDP for IPC. Even my mouse driver opens up a port on 0.0.0.0.
The Linux Programming Interface is my favorite software book of all time. I had a problem that I think a lot of other people had, where I learned C the language pretty in depth, but didn't really know what to do with it…
Check this one out: 'GET…
Does kaspersky AV also keep a DNS cache? That would be convenient.
Eastern Europe eats a lot of potatoes. Onion = Onion Router
The point of the bootcamp is the job you get after it's over. I imagine bootcamps make deals with the local tech companies to direct the grads to them, so the bootcamp can boast high hiring rates, and the tech companies…
UPDATE email SET deleted = 1 WHERE uuid = '3b431dc020cc404b8bbea290e91b9865';
He worked at Sun Microsystems. His time there inspired a lot of Office Space apparently. https://www.youtube.com/watch?v=ylnMb6niDJ0
Might be obvious to some of you, but I use this to check what my macros expand out into to make sure the syntax is valid. #include <stdio.h> #define atoa(x) #x #define mdb(x) printf("%s\n", atoa(x)) #define swap(type,…
>And Web Serial reached mainline Firefox last week. That's good news. I wish FF wasn't so conservative... they're missing a lot of cool APIs. Sometimes I wonder who they think their audience is. I suppose they would…
One of the greatest texts ever written. Ok maybe just one of my favorites. I wouldn't mind a 2nd edition though... surely the system call interface has changed a bit since 2010.
A bunch of different ways probably. This method is stolen from SO (works for Chrome): const detect = () => { var fs = window.RequestFileSystem || window.webkitRequestFileSystem; if (!fs) { console.log("FS check…
You're in luck, Divinity 2 runs perfectly for me on linux with Proton (with a little bit of work). Check protondb.com.
Bisqwit: https://www.youtube.com/watch?v=eF9qWbuQLuw Also Professor Leonard but someone already mentioned him.
I don't do anything special for prototyping, I just use what I normally do if I were creating the real thing. > django-admin startproject > copy+paste my webpack config for React > copy+paste my general management…
Yeah they must mean new accounts, if not then I'm lost. I guess it could have reset autoincrement but they said it didn't. The only other thing I can think of is that the signed token that's put in localStorage is sent…
The part of that that I don't get is how a new user could have the same ID as an old (truncated) user since "our system created new records for them, with primary keys generated from the existing sequence (PostgreSQL…
So the session keys mapped to usernames, rather than IDs in the database? Otherwise, when the database is restored with the old user IDs, the session would become invalid instead of continuing to work. This is what I'm…
"Some 55,000 devices were affected in the United States and 14,000 in China, and Iran's share of affected devices was 2 percent," Azari-Jahromi was quoted as saying. Pretty misleading headline.
That's how it should be done yeah. Developers on Windows seem to be really loose in their use of TCP or UDP for IPC. Even my mouse driver opens up a port on 0.0.0.0.
The Linux Programming Interface is my favorite software book of all time. I had a problem that I think a lot of other people had, where I learned C the language pretty in depth, but didn't really know what to do with it…
Check this one out: 'GET…
Does kaspersky AV also keep a DNS cache? That would be convenient.
Eastern Europe eats a lot of potatoes. Onion = Onion Router
The point of the bootcamp is the job you get after it's over. I imagine bootcamps make deals with the local tech companies to direct the grads to them, so the bootcamp can boast high hiring rates, and the tech companies…
UPDATE email SET deleted = 1 WHERE uuid = '3b431dc020cc404b8bbea290e91b9865';
He worked at Sun Microsystems. His time there inspired a lot of Office Space apparently. https://www.youtube.com/watch?v=ylnMb6niDJ0
Might be obvious to some of you, but I use this to check what my macros expand out into to make sure the syntax is valid. #include <stdio.h> #define atoa(x) #x #define mdb(x) printf("%s\n", atoa(x)) #define swap(type,…