Hacker News new | ask | show | jobs
by dzove855 847 days ago
Creator here:

I'm really happy to see somebody shared it on hackernews :D If you have some questions, feel free to ask me

1 comments

Hey, great work! Reading through I started wonder how necessary the loadables are? It'd be fun to have one that's not dependent on loadbales, even if it's not as clean. E.g. could mktemp be replaced with a timestamp named directory or something? Can rm be avoided by just allowing garbage to pile up? Is finfo something that can be worked around in some way?
Hello,

You could avoid loadables.

Finfo <- load file inside a variable and get the size Mktemp <- like you said with timestamp Rm <- with a fifo or variable

Ah "stick it in a variable" seems obvious now, good point!