Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
zffr
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
31.
▲
by
zffr
9mo ago
Yeah it’s strange that the project does not mention using redis, or even SQLite with a vector DB extension.
32.
▲
by
zffr
9mo ago
Just curious, why do you want to migrate from mongo (document database server) to sqlite (relational database library)? That migration would be making two changes: document-based -> relational, and server -> library. Have you consider
33.
▲
by
zffr
9mo ago
I was with you until this part: > Thus any attempt at estimates is as futile as gambling to win, tasks are only ever done when they're done, and "successful estimators" are kings of retconning. > It's all make-beli
34.
▲
by
zffr
10mo ago
Does anyone know why the industry is killing OpenGL?
35.
▲
by
zffr
11mo ago
I just tested this on my computer. 1. Make a new Xcode iOS project and delete all files except for Info.plist 2. Remove all keys from Info.plist 3. In the build settings search for "storyboard" and remove all keys 4. Add
36.
▲
by
zffr
11mo ago
> so it's almost certain that private APIs would get accessed No it's not. Just like with ObjC or Swift, in ASM you have to be explicit about the APIs you want to call. I don't see how you would accidentally call a privat
37.
▲
by
zffr
1y ago
To me a handle implies that the object is somewhat sturdy. It’s okay to have it bump against other things and to set it on the floor.
38.
▲
by
zffr
1y ago
nit: the pure HTML example is not the same as the other examples. It would make a POST request to the server with the data using a form encoding instead of a JSON encoding. It's not a given that your server supports this encoding!
39.
▲
by
zffr
1y ago
One challenge is that JSON is for data and HTML is for UI. When a client gets JSON it can transform the data to make it ready for the UI. With HTML, the client is locked into the UI chosen by the server. What if the client wants to render t
40.
▲
by
zffr
1y ago
What I like about TUIs are that they are forced to be simple, and are forced to load all data at once. I don’t prefer interacting with an app in a terminal window, but I do prefer the kinds of apps that are built with these constraints in m
41.
▲
by
zffr
1y ago
Preview was just included in iOS 26
42.
▲
by
zffr
1y ago
Apple’s typical process for releasing public API involves dogfooding it internally first. Sometimes it will take years of internal use before Apple will release API publicly. With something as large as TextKit, I would be extremely surprise
43.
▲
Ask HN: Using Stripe Atlas to start a LLC for a small side project?
4 points
by
zffr
1y ago
|
4 comments
44.
▲
by
zffr
1y ago
I'm at a cafe in NYC right now. Every single person here is on their laptop including me.
45.
▲
Innovation starts with consumers, not academia
(lemire.me)
2 points
by
zffr
1y ago
|
1 comments
46.
▲
by
zffr
1y ago
For people wanting to include URL references in things like books, what’s the right approach to take today? I’m genuinely asking. It seems like its hard to trust that any service will remaining running for decades
47.
▲
by
zffr
1y ago
PDFs don’t always contain actual text. Sometimes they just contain instructions to draw the letters. For that reason, IMO rendering a PDF page as an image is a very reasonable way to extract information out of it. For the other formats you
48.
▲
by
zffr
1y ago
or I think if you right click and then open the app, macOS lets you run it.
49.
▲
by
zffr
1y ago
How do you do server-side rendering without a framework? If you use static pages, how do you make sure that shared UI like navbars all update if you decide to make a change?
50.
▲
by
zffr
1y ago
My understanding is that SQLite is OLTP and duckdb is OLAP. Duckdb is column based so not a great fit for a traditional backend db
51.
▲
by
zffr
1y ago
What’s the other candidate besides pocketbase?
52.
▲
by
zffr
1y ago
What do you think the bottleneck was in your search? Was it finding openings, getting interviews, or passing those interviews? In my niche I’m finding that there are very few opening in the city I live in, but that getting interviews might
53.
▲
by
zffr
1y ago
Out of curiosity, how did you end up with 6 months off between jobs? I would love the opportunity to take ~6 months off, but I feel scared that if I just quit, it might take me a longer time to find a job again.
54.
▲
by
zffr
1y ago
Why wouldn't you be able to switch back to using pip ?
55.
▲
by
zffr
1y ago
Do you ever get threatening letters from the legal departments of these companies? I once built a site like this for a popular social media site, and got an email from their lawyers claiming “Unlawful Use of COMPANY’s Trademarks / Serv
56.
▲
by
zffr
1y ago
You set a breakpoint directly before this line, and then step forward. If you need the breakpoint to only trigger when there is an error, then you can use a conditional breakpoint that triggers when err != nil
57.
▲
by
zffr
1y ago
It’s not as simple as that. All people don’t get fat for the same reasons. I never eat junk food, and yet I still got fat during the pandemic. For me the issue was that I stopped exercising during the lock down, but continued to eat the sam
58.
▲
by
zffr
1y ago
The article is about being fat. The primary tool to lose fat is diet, not exercise. Losing weight is all about removing things from your diet. It’s accessible to anyone if they are willing to tolerate a little hunger.
59.
▲
by
zffr
1y ago
https://www.swift.org/blog/swift-at-apple-migrating-the-pass...
60.
▲
by
zffr
1y ago
Why do you feel the stdlib needs a .sum() if using .reduce() is so simple?
More ›