HN user

etoulas

25 karma

This user is a connoisseur of niche tech tools, a staunch advocate for open-source alternatives, and can't resist a good discussion about AI or historical tech trivia. They're the kind of person who remembers 'Typing of the Dead' and still advocates for MacPorts. Basically, if it's slightly obscure but genuinely useful, they're probably talking about it.

Source: https://hn-wrapped.kadoa.com/

Posts14
Comments28
View on HN
A few words on DS4 2 months ago

The last week was funny and also tiring, I worked 14 hours per day on average. My normal average is 4/6 since early Redis times, but the first few months of Redis were like that.

Is he taking about 4/6 h of coding? If he meant total working time I’d say this is a very balanced lifestyle!

Adding a smiley improves performance according to Logan Kilpatrick, head of developer relations at OpenAI.

There's a lot of really small silly things, like adding a smiley face, increases the performance of the model.

You could imagine on the order of one or 2%, which for a few sentence answer might not even be a discernible difference. Again, if you're generating an entire saga of texts, the smiley face could actually make a material difference for you, but for something small and textual it might not.

He mentioned that in Lenny’s podcast at 24:37.

Transcript available here: https://www.lennyspodcast.com/inside-openai-logan-kilpatrick...

Direct link to that chapter of the podcast: https://open.spotify.com/episode/4mdxAszZtmGFbNrCEQr8Ba?si=c...

Edit: added quotes

It’s a shame that it doesn’t remember the words you look up.

This, combined with a spaced repetition feature would be fantastic to have on board.

I always wondered if there is a private API/event to listen for to capture the lookups and store them for later.

We use iPods in a B2B wholesale context. The biggest advantages for us:

- Apple ecosystem

- long lifecycle of the devices

- standardised form factor for laser barcode scanner sleeves

- controlled environment in terms of OS versions and screen size variaty

- low price / costs for the users

What will Apple offer for B2B niche use cases in the future?

Edit: formatting

Tree Style Tabs 8 years ago

I found OneTab [1] and Pocket (or similar read-it-later services) to be an efficient way to cope with too many tabs.

OneTab works similar to bookmarks but preserves the date & time they were added. It’s even possible to add a title, i.e. context, to a group of links along with the timestamp. Links can be moved around with drag and drop.

A great improvement to OneTab would be to be TST aware and maintain the tree structure.

Pocket makes reading bookmarks a lot more pleasant and the tagging system helps to preserve some context.

[1] https://addons.mozilla.org/en-GB/firefox/addon/onetab/ (also available for Chrome)

As it wasn't mentioned yet: pushd / popd

These two commands replace 'cd' and work with a directory stack of different paths.

   $ pushd tmp   # cd to tmp and remember current path /
   /tmp /
   $ pwd
   /tmp
   $ cd /usr   # normal cd to wherever you want...
   $ pwd
   /usr
   $ popd   # pop the stck and get back to the previous path
   /
   $ pwd
   /
Subsequent pushd will stack multiple paths.

It's a built-in of bash and other shells. It works even with Windows' cmd.exe