Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
ssfak
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
ssfak
4mo ago
Related: https://http1mustdie.com/
2.
▲
by
ssfak
4mo ago
In Go you can ignore the error value though, and use directly the returned value (`int` in your example). In Rust you cannot do that, you need to unwrap the Result or use the `?`
3.
▲
Background Jobs in Go with Asynq and Valkey
(josephgoksu.com)
4 points
by
ssfak
6mo ago
|
0 comments
4.
▲
by
ssfak
1y ago
chartsdb[1][2] can be installed locally (or run through Docker) and import your database schema [1]: https://chartdb.io/ [2]: https://github.com/chartdb/chartdb
5.
▲
by
ssfak
2y ago
Using the pg_duckdb[1] is an option, if you can install extensions on your setup. [1]. https://github.com/duckdb/pg_duckdb
6.
▲
by
ssfak
2y ago
For Python tasks you can check Prefect, among others..
7.
▲
by
ssfak
4y ago
I was expecting something like sending a payload with GET requests is not prohibited by the standard...
8.
▲
GraphQL Subscriptions: Why We Use SSE/Fetch over WebSockets
(wundergraph.com)
1 points
by
ssfak
4y ago
|
0 comments
9.
▲
by
ssfak
5y ago
More adequate title would be "C++ problems with C"..
10.
▲
by
ssfak
8y ago
Indeed, "Mostly functional" programming does not work: https://queue.acm.org/detail.cfm?id=2611829
11.
▲
by
ssfak
8y ago
The findings are well known, but I find it a bit ironic that the authors provide supplementary material as an Excel file...
12.
▲
by
ssfak
9y ago
..and closures
13.
▲
by
ssfak
10y ago
I believe in the majority of cases SSE are a better technology than web sockets (e.g. WS do not seem to conform to HTTP/2.0, SSE offer transparent (browser-supported) reconnects, SSE event ids allow for replay, etc). The downside is no
14.
▲
by
ssfak
10y ago
I am a bit puzzled about the scalability of listen/notify in Postgres and its use in the article. Each "listener" in the code requires a connection in the database so it's not a good design to have one listen "query
15.
▲
by
ssfak
10y ago
cough sci-hub.cc cough
16.
▲
by
ssfak
11y ago
Doesn't a TLS terminator proxy solve this? E.g. I usually put my application services behind HTTPS-enabled nginx and it works wonderfully.
17.
▲
by
ssfak
11y ago
For windows functions a good tutorial can be found at http://tapoueh.org/blog/2013/08/20-Window-Functions Postgresql also has good support for SQL-99 : http://www.slideshare.net/MarkusWinand&#
18.
▲
by
ssfak
14y ago
Well, he recommends to stick to a specific schedule (having a walk at 21:30, going to sleep at 22:00, waking up at 06:00, etc) The exact times do not really matter, but sticking to a specific time schedule is problematic IMHO when you have
19.
▲
by
ssfak
15y ago
Somewhat similar but more useful for debugging "HTTP caching" by Mark Nottingham: redbot ( http://redbot.org/ )
20.
▲
by
ssfak
15y ago
> This re-imagines passwords as nouns. As a side effect, you get a complete log of whenever anyone changes their password or requests to reset it. > Want to enforce password reuse policies? Do analysis of password lifetimes? Track
21.
▲
by
ssfak
15y ago
Instead of "long polling" (or a different way to have long polling) is to use the HTML5's server sent events ( http://www.w3.org/TR/eventsource/ ) See here for examples: http://www.html5rocks.com/en/tutorials/eventsource/basics/ I have im