HackerTrans
トップ新着トレンドコメント過去質問紹介求人

henrydark

no profile record

投稿

[untitled]

1 ポイント·投稿者 henrydark·5 か月前·0 コメント

My Fargate Startup Is Slow: An Investigation into Docker Layer Optimization

drorspei.com
1 ポイント·投稿者 henrydark·6 か月前·0 コメント

Supaplex – first time I cheated in a computer game

drorspei.com
1 ポイント·投稿者 henrydark·9 か月前·0 コメント

コメント

henrydark
·21 日前·議論
It's 100*10*4.5 inside, you're summing 100*9+100*8+...+100*1.

So 4.6min, i.e. 4:36
henrydark
·先月·議論
First, they give a novel generation algorithm based on combining trees with diffusion, which trees alone just don't give you.

Second, yes, they think some tabular data will be fit better by their combination of trees with diffusion than just with trees.
henrydark
·先月·議論
Is the code available somewhere?
henrydark
·2 か月前·議論
I don't put ssh keys on all devices. With syncthing, in contrast to git, I don't have too.

Also syncing is automatic and immediate, I don't have to initiate push and pull.
henrydark
·2 か月前·議論
For sure, I put the details here: https://drorspei.com/syncgit
henrydark
·2 か月前·議論
I now use syncthing for the .git directory, excluding HEAD file and a few others, between my few devices and a vps on hetzner.

Most of git is append only immutable blobs - just sharing these between devices just works for me. "users" and authentication is handled by syncthing.

I have pre and post hooks to make sure no device tries to change HEAD of branch owned by another device, just to be safe, be it hasn't been activated once yet.
henrydark
·3 か月前·議論
I read the piece, looks cool, but it merges Dockerfile with docker image?

If instead of using Dockerfile they would have a direct build of the image tar file with something like nix then it would have been easier, though admittedly mildly esoteric
henrydark
·10 か月前·議論
I've given the following exercise to developers in a few workplaces:

What's the complexity of computing the nth fibonacci number? Make a graph of computation time with n=1..300 that visualizes your answer.

There are those that very quickly reply linear but admit they can't get a graph to corroborate, and there are those that very quickly say linear and even produce the graph! (though not correct fibonacci numbers...)