HackerTrans
TopNewTrendsCommentsPastAskShowJobs

henrydark

no profile record

Submissions

[untitled]

1 points·by henrydark·5 bulan yang lalu·0 comments

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

drorspei.com
1 points·by henrydark·6 bulan yang lalu·0 comments

Supaplex – first time I cheated in a computer game

drorspei.com
1 points·by henrydark·9 bulan yang lalu·0 comments

comments

henrydark
·21 hari yang lalu·discuss
It's 100*10*4.5 inside, you're summing 100*9+100*8+...+100*1.

So 4.6min, i.e. 4:36
henrydark
·bulan lalu·discuss
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
·bulan lalu·discuss
Is the code available somewhere?
henrydark
·2 bulan yang lalu·discuss
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 bulan yang lalu·discuss
For sure, I put the details here: https://drorspei.com/syncgit
henrydark
·2 bulan yang lalu·discuss
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 bulan yang lalu·discuss
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 bulan yang lalu·discuss
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...)