Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
jdsleppy
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
jdsleppy
6mo ago
It's a nice idea, but after I get to the graph page things just stop. Clicking on nodes doesn't do anything. Bug?
2.
▲
by
jdsleppy
9mo ago
Doesn't stealing the cookies/token require a non-HTTP-only session cookie or a token in localstorage? Do you know that Discord puts their secrets in one of those insecure places, or was it just a guess? I believe if you always ke
3.
▲
by
jdsleppy
11mo ago
Multiple processes, multiple threads per process, and/or greenlets (monkey patch network calls, like async but no keywords involved). Scale out horizontally when there's a problem. It could get expensive.
4.
▲
by
jdsleppy
11mo ago
I can second the other commenter: you are having a different discussion than the rest of the comments and OP.
5.
▲
by
jdsleppy
1y ago
Er... is it software? Hardware?
6.
▲
by
jdsleppy
1y ago
If you continue to not find what you need and are willing to be a subject matter expert on what Pivotal actually is (because I never saw it), I would be interested in building this. A lot of people share your sentiment so it could be succe
7.
▲
by
jdsleppy
1y ago
Also disadvantaged groups might consume less healthcare and might be less aware of air quality, etc. and so may be more likely to have bad health outcomes for given environmental inputs.
8.
▲
by
jdsleppy
1y ago
The source code does not get to the filesystem on the prod server. It is sent to the Docker daemon when it builds the image. After the build ends, there's only the image on the prod server. I am now convinced that this is a hidden do
9.
▲
by
jdsleppy
1y ago
No, in my example the docker-compose.yml would exist alongside your application's source code and you can use the `build` directive https://docs.docker.com/reference/compose-file/services/#bui... to inst
10.
▲
by
jdsleppy
1y ago
I've been very happy doing this: DOCKER_HOST=“ssh://user@remotehost” docker-compose up -d It works with plain docker, too. Another user is getting at the same idea when they mention docker contexts, which is just a different
11.
▲
by
jdsleppy
1y ago
This is for running code on your own servers, he doesn't deal with running others' code.
12.
▲
by
jdsleppy
1y ago
Did you compile the Python yourself? If so, you may need to add optimization flags https://devguide.python.org/getting-started/setup-building/i...
13.
▲
by
jdsleppy
1y ago
I assume they are saying that in practice, if wealth gives one influence (if one lives in capitalism), one will use that influence to make one's market less free to one's benefit.
14.
▲
by
jdsleppy
1y ago
You also skip the docker compose pull if you configure it to always pull in the compose file or in the up command.
15.
▲
by
jdsleppy
1y ago
Do what the sibling comment says or set DOCKER_HOST environment variable. Watch out, your local environment will be used in compose file interpolation!
16.
▲
by
jdsleppy
1y ago
I really like `DOCKER_HOST=ssh://... docker compose up -d`, what do you miss about Deployments?
17.
▲
by
jdsleppy
1y ago
HTMX has a very nice drag and drop extension I just found, though. And old-school forms can include image files. The little image preview can be a tiny "island of JS" if you have to have it.
18.
▲
by
jdsleppy
1y ago
Where do you suggest we sanitize values? Only in the client, when rendering them?
19.
▲
by
jdsleppy
1y ago
They could always fall back to storing a value in a hidden element in the worst case. All/some/none selected is often done with an indeterminate state checkbox https://developer.mozilla.org/en-US/docs/We
20.
▲
by
jdsleppy
1y ago
I have not started to use LLMs, so yes I still use search engines.
21.
▲
by
jdsleppy
1y ago
Yes, in that I have the time but need something meaningful to build with it. Let me know if you might need a partner.
22.
▲
by
jdsleppy
2y ago
Too late to edit, but I've learned this is not necessarily true (but could be a default date used by the SS code in particular). Sorry for spreading rumors.
23.
▲
by
jdsleppy
2y ago
Apparently the 150 year old Social Security recipients were due to a COBOL quirk where the zero datetime is 1875. Interesting, but not fraud.
24.
▲
by
jdsleppy
2y ago
Working the backhoe requires more skill than shoveling and can command a higher wage. You want to more carefully vet and care for the person driving your expensive equipment. Also you had an engineer to design the backhoe and factory work
25.
▲
by
jdsleppy
2y ago
...but with manually running autoinstrumentation in the post fork hook. I guess there is a lot of undocumented magic in OTel...
26.
▲
by
jdsleppy
2y ago
I found this to work fine https://opentelemetry-python.readthedocs.io/en/latest/exampl...
27.
▲
by
jdsleppy
2y ago
Thank you for this, I'm glad to hear you acknowledge that having kids isn't a constant philosophical bliss. I have two under 5 as well and don't relate to the dozens of comments gushing about their kids, wanting to spend mor
28.
▲
by
jdsleppy
2y ago
Nice, that is my current approach on my latest project (referring to what your linked repo does). Inlining it here for others: copy a .env and a docker-compose.yml, run `docker compose "$@"` on the instance via ssh. That lets me
29.
▲
by
jdsleppy
2y ago
Same (but not a shopping site). Bundle the JS and CSS into one file each and cache it forever (hash in the filename to bust the cache). Then with each page transition there's exactly one HTTP request to fetch a small amount of HTML an
30.
▲
by
jdsleppy
2y ago
SvelteKit is very alive and is the way svelte apps are made generally, not like next.js which is more optional.
More ›