HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jdsleppy

no profile record

comments

jdsleppy
·3 เดือนที่ผ่านมา·discuss
It's a nice idea, but after I get to the graph page things just stop. Clicking on nodes doesn't do anything. Bug?
jdsleppy
·7 เดือนที่ผ่านมา·discuss
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 keep session cookies in secure, HTTP-only cookies, then you are more resilient to this attack.

I interviewed frontend devs last year and was shocked how few knew about this stuff.
jdsleppy
·8 เดือนที่ผ่านมา·discuss
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.
jdsleppy
·9 เดือนที่ผ่านมา·discuss
I can second the other commenter: you are having a different discussion than the rest of the comments and OP.
jdsleppy
·10 เดือนที่ผ่านมา·discuss
Er... is it software? Hardware?
jdsleppy
·11 เดือนที่ผ่านมา·discuss
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 successful, but it's hard to clone something unless you know the thing.
jdsleppy
·12 เดือนที่ผ่านมา·discuss
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.
jdsleppy
·ปีที่แล้ว·discuss
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 docker feature that too many people aren't aware of and do not understand.
jdsleppy
·ปีที่แล้ว·discuss
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 instruct the remote host (Hetzner VPS, or whatever else) to build the image. That image does not go to an external registry, but is used internal to that remote host.

For 3rd party images like `postgres`, etc., then yes it will pull those from DockerHub or the registry you configure.

But in this method you push the source code, not a finished docker image, to the server.
jdsleppy
·ปีที่แล้ว·discuss
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 way to set the variable.

Did you know about this approach? In the snippet above, the image will be built on the remote machine and then run. The context (files) are sent over the wire as needed. Subsequent runs will use the remote machine's docker cache. It's slightly different than your approach of building locally, but much simpler.
jdsleppy
·ปีที่แล้ว·discuss
This is for running code on your own servers, he doesn't deal with running others' code.
jdsleppy
·ปีที่แล้ว·discuss
Did you compile the Python yourself? If so, you may need to add optimization flags https://devguide.python.org/getting-started/setup-building/i...
jdsleppy
·ปีที่แล้ว·discuss
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.
jdsleppy
·ปีที่แล้ว·discuss
You also skip the docker compose pull if you configure it to always pull in the compose file or in the up command.
jdsleppy
·ปีที่แล้ว·discuss
Do what the sibling comment says or set DOCKER_HOST environment variable. Watch out, your local environment will be used in compose file interpolation!
jdsleppy
·ปีที่แล้ว·discuss
I really like `DOCKER_HOST=ssh://... docker compose up -d`, what do you miss about Deployments?
jdsleppy
·ปีที่แล้ว·discuss
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.
jdsleppy
·ปีที่แล้ว·discuss
Where do you suggest we sanitize values? Only in the client, when rendering them?
jdsleppy
·ปีที่แล้ว·discuss
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/Web/HTML/Reference/... that can represent all three states.

Maybe I don't understand the problem you are talking about.
jdsleppy
·ปีที่แล้ว·discuss
I have not started to use LLMs, so yes I still use search engines.