Viewing profile — jdsleppy
jdsleppy
HN member- Joined
- Tue, Oct 27, 2020, 12:28 PM UTC
- HN karma
- 196
- Public activity
- 67 items
- HN profile
- View on Hacker News ↗
About jdsleppy
Interests: Entrepreneurship, Freelancing, Hiking, Investment, Music, Programming, Going new places
---
Recent public activity
-
comment
Comment #47639179
It's a nice idea, but after I get to the graph page things just stop. Clicking on nodes doesn't do anything. Bug?
-
comment
Comment #46320043
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, o…
-
comment
Comment #45810109
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.…
-
comment
Comment #45623163
I can second the other commenter: you are having a different discussion than the rest of the comments and OP.
-
comment
Comment #45421403
Er... is it software? Hardware?
-
comment
Comment #44834468
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…
-
comment
Comment #44675829
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 i…
-
comment
Comment #44322525
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 pro…
-
comment
Comment #44320179
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/s…
-
comment
Comment #44317574
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 mentio…
-
comment
Comment #44297867
This is for running code on your own servers, he doesn't deal with running others' code.
-
comment
Comment #44008680
Did you compile the Python yourself? If so, you may need to add optimization flags https://devguide.python.org/getting-started/setup-building/i...
-
comment
Comment #43983144
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.
-
comment
Comment #43904134
You also skip the docker compose pull if you configure it to always pull in the compose file or in the up command.
-
comment
Comment #43904069
Do what the sibling comment says or set DOCKER_HOST environment variable. Watch out, your local environment will be used in compose file interpolation!
-
comment
Comment #43903860
I really like `DOCKER_HOST=ssh://... docker compose up -d`, what do you miss about Deployments?
-
comment
Comment #43883145
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 t…
-
comment
Comment #43735892
Where do you suggest we sanitize values? Only in the client, when rendering them?
-
comment
Comment #43735861
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.mo…
-
comment
Comment #43631020
I have not started to use LLMs, so yes I still use search engines.
-
comment
Comment #43530456
Yes, in that I have the time but need something meaningful to build with it. Let me know if you might need a partner.
-
comment
Comment #43080099
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.
-
comment
Comment #43078493
Apparently the 150 year old Social Security recipients were due to a COBOL quirk where the zero datetime is 1875. Interesting, but not fraud.
-
comment
Comment #42714253
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 …
-
comment
Comment #42683803
...but with manually running autoinstrumentation in the post fork hook. I guess there is a lot of undocumented magic in OTel...