For the best experience on desktop, install the Chrome extension to track your reading on news.ycombinator.com
Hacker Newsnew | past | comments | ask | show | jobs | submit | history | more zuj's commentsregister

> every parent is just a human who is mostly winging it trying the best they can This is an eye opening statement. Often as a kid, parents tend to look like gods and superheros because they are doing things which are impossible for us. As we age we tend to notice the shortcomings both from the current situation as they are ageing and from our child hood which we have better understanding now. Again, second order thinking helps a lot here I guess.


Maybe it's just my outlook - I sit in meetings with adults and have to remind myself that we are all just children in overgrown bodies. Sure, some will have had experiences that have taught empathy, communication, etc, but most of us are still prone to the occasional temper tantrum or emotional outburst. And that's ok. Rather than seeing it in a derogatory way, I think it helps us all stay humble and open minded toward each other. With my kids - they are at an age where they are starting to realize that I'm human, with foibles. Better to admit that and build trust that they should heed my advice anyway, as a more experienced human, than have them distrust out of spite that I'm the parent and they are the teen.


"Daycare for adults" is how a coworker described a particularly dysfunctional government agency.


LOL! Isn't that every dysfunctional organisation ?


99percentinvisible did a podcast on the culture of hanko and how it changed during the pandemic. It is pretty interesting. https://99percentinvisible.org/episode/hanko/


Naive question, isn't gobo, nix and other systems trying to make a tag based file systems at the end?

https://www.nayuki.io/page/designing-better-file-organizatio...


What leads you to think that?

Everything remains in a hierarchical structure (or a few, if you consider the symlinks).

The notion of tags does away with a hierarchy.


I do see GoboLinux simulating some aspects of tagging, based on reading https://gobolinux.org/at_a_glance.html and https://github.com/gobolinux/Documentation/wiki/What-makes-G... .

Their documentation gives examples of primary files stored at locations like:

    /Programs/Bash/4.4/bin/bash
    /Programs/Netkit-Base/0.17/bin/ping
    /Programs/LibPNG/1.2.5/lib/libpng.so.3
    /Programs/Glibc/2.24/include/stdio.h
The above paths have the format of "/Programs/<PackageName>/<VersionNumber>/<TraditionalDirectory>/<FileName>". GoboLinux presumably scans every package directory and adds symbolic links to "/System/Index/<TraditionalDirectory>/<FileName>", like the following example (respectively):

    /System/Index/bin/bash
    /System/Index/bin/ping
    /System/Index/lib/libpng.so.3
    /System/Index/include/stdio.h
The primary file locations make it easy to handle one package at a time, cleanly adding and removing entire packages. The indexed view makes it easy to find files (binaries, libraries, includes, man pages, etc.) by name without worrying about what packages they belong to.

Generally speaking, tagging can be half-simulated using hierarchies and (hard/soft) links. But a tag-based system would be cleaner and not prioritize one retrieval method over another. Here is an illustration of how I might rephrase GoboLinux's package storage and retrieval system in terms of tags:

    Blob("... binary data of bash executable ..."), with hash = 9e19e455.
    Blob("... binary data of ping executable ..."), with hash = 28224f5b.
    Blob("... binary data of libpng.so library ..."), with hash = 6243c115.
    Blob("... binary data of stdio.h C code ..."), with hash = d0335126.
    
    Tag(packageName="Bash", version="4.4", target=9e19e455).
    Tag(packageName="Netkit-Base", Version="0.17", target=28224f5b).
    Tag(packageName="LibPNG", version="1.2.5", target=6243c115).
    Tag(packageName="Glibc", version="2.24", target=d0335126).
    
    Tag(traditionalDirectory="bin", fileName="bash", target=9e19e455).
    Tag(traditionalDirectory="bin", fileName="ping", target=28224f5b).
    Tag(traditionalDirectory="lib", fileName="libpng.so.3", target=6243c115).
    Tag(traditionalDirectory="include", fileName="stdio.h", target=d0335126).


defunct ? Isn't this the same ? https://www.usenix.org/conferences/byname/5


defunct.

https://www.usenix.org/conferences/upcoming

Note the non-existence of a 2022 or 2023 LISA.


Just wanted to add Austin: Python frame stack sampler for CPython written in pure C (https://github.com/P403n1x87/austin)


This is amazing. I just gave a quick glance and love your style.

I just wish you would have provided ipynb instead of md. It would be so much fun to just modify and run as I am learning. Thank you!


Thank you! I am not an expert in Jupyter Notebook, may look into it now.


Python might not be energy efficient in the hardware it is definitely efficient in the wetware.


It is a pain to work with invoke now. It is all find and dandy for the basic features but you going to hit the seams soon you start trying advanced stuff. Looks like the project is going to be abandoned.


What is advanced?

btw, the project is old and it is useful with the current feature set. There is an issue with the bus factor but is common for many tools.


How does this compare to pyinvoke or they are completely different ?


Damn, so many goodies to play with. Thanks for the list.


Consider applying for YC's Summer 2026 batch! Applications are open till May 4

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search:

HN For You