HN user

warvariuc

63 karma
Posts0
Comments36
View on HN
No posts found.

You paid $0 and contributed nothing

I think investing into integrating a tool into your infrastructure is not exactly "paying $0".

Ode to the M1 3 years ago

Interesting, this results in a fully functional desktop version?

It's very snappy. I run Firefox to work with my Internet banking site in an isolated environment.

I installed KDE -- I am very satisfied.

Ode to the M1 3 years ago

I use Ubuntu in UTM, but I installed the ARM64 server version, then the desktop packages.

Oh, my!

  # Trackpad: enable tap to click for this user and for the login screen

  # Trackpad: map bottom right corner to right-click

  # Disable “natural” (Lion-style) scrolling

I can solve any problem. I've created more than $1B value for companies I worked for in my career.

That sounds suspicious. I don't know anyone who "can solve any problem". And in order to deliver larger value you need to work in a team. How can you be an effective team member with a fear of video calls?

GNU Nano 6.3 4 years ago

Works as usual for me (I am on a Mac). shift+up/down selects lines. shift+fn+right -- selects till the end of the line.

I've used a dozen of todo apps over the last 10 years. This is the best I found: https://tasks.org/

It allows you to snooze recurring tasks (unlike Google Keep), can hide a task from the list until its time comes, and a lot more!

And it's free. But not available for iPhone and this prevents me from switching to iPhone.

Or

    #!/bin/sh
    """:"
    # bash code here; finds a suitable python interpreter and execs this file.
    for pyver in 3.6 3.7 3.8 3.9; do
        which python$pyver > /dev/null 2>&1 && exec python$pyver "$0" "$@"
    done
    echo "No appropriate python interpreter found." >&2
    exit 1
    ":"""