HN user

tbe

29 karma

truls.becken on gmail

Posts1
Comments45
View on HN

I have two accounts in my name, one for me personally and one for work. I got the offer on behalf of my employer, and was like; what would this even mean for this account? I'm pretty sure I would take the offer had it been for my personal account.

From the wizard's hat hangs something with various initials, maybe a tape, a tail(1) or a strip(1).

Hah, why is the cat(1)'s tail(1) missing from the drawing? Talk about missed oppertunity!

You missed the second sentance. The length of the translated string is less critical for a tooltip compared to a toolbar filled with buttons.

Imagine when an app is to be translated to 20 languages. Only the original language had the luxery of having a voice in how many buttons fit on the toolbar.

How are you going to play music you've added in the last three years, but not heard for a month, from the "Latin" genre, with two or more stars, using only the file system?

BeOS actually solved this 20 years ago with its file system BFS. Haiku is an open source reimplementation of BeOS that recently progressed from (high quality) alpha releases to its first beta.

Ok, good to know, thanks. The point still stands that the receiver's client probably doesn't bother styling the message. I mean even if GMail, say, was persuaded to do it, Outlook for instance wouldn't.

That would be nice if it was standard for clients to display text/markdown rendered as styled text. This would require an actual standard for the markdown syntax though. Without the rendering, markdown is just text/plain.

Are there any mail clients that will send both the markdown source and the rendered HTML as a multi-part message?

SSH: Best practices 10 years ago

f=$(mktemp) && ssh-keyscan korell > $f && ssh-keygen -l -f $f && rm $f

Unfortunately ssh-keygen does not support input from stdin, so this example is slightly more complicated than it should.

Any shell that supports process substitution can fix this for you with something like;

ssh-keygen -l -f <(ssh-keyscan korell)

That would mean two stages of password query, which I think might be a con. Also, the file names would either not be encrypted in the git repo or not be compatible with e.g. Android app I guess.

Thanks for the autofs hint, will try it and see how that works out re unlocking.

The very first web browser had editing built in. That's why HTTP has the concept of verbs in the first place! Otherwise GET would probably be implicit. Forms and POST came later, but PUT and DELETE was part of the original idea behind the web.

I totally agree that browsers should allow editing. Even if you are not authorized to PUT the page back to the server, it would still be useful to be able to edit before you print or save the page locally.

I really have no idea why we were robbed of this capability! It was probably just laziness from the people who wrote mainstream browser and httpd implementations.

Yes, for X11 the client/server roles are backwards so I shouldn't have included it in the list.

I want to use my TV as a VNC/RDP client, and either buy a wireless keyboard for it, or just let it act as a passive display.

This reminds me of Bedrock Linux, which allows you to run multiple linux distros on a single kernel instance. It does so using good old chroot, but has an implementation that is capable of breaking out of the chroot when entering a new one. This way the different environments become more integrated in that a RHEL binary can call a Debian binary and so on, creating a sort of super distro which is itself quite small and simple.

And then, even if all of the servers involved in delivering your mail communicate securely, the reciepent is going to reply in plain text, quoting your entire message...

I wish there was a way to do this search only on the currently visible part of the page. Installing a hit-a-hint type of addon would then be less of a prerequisite for me to use the browser.