

It should be possible using the address overlay in the app. Otherwise you could leave a note or use the web based editor on the OSM homepage.
It should be possible using the address overlay in the app. Otherwise you could leave a note or use the web based editor on the OSM homepage.
Keeping the details about vim in the extras is what I would do as well, but I would definitely tell the students that vim and vi exist, because they are the only editors available on many systems.
I would consider that ifconfig is deprecated on many distros and would therefore teach about iproute2 (mostly the ip
and ss
commands) instead. Additionally I would consider editing files essential, even if it is with nano.
Maybe mention more modern and simpler help tools like tldr, as they could be even more useful to beginners.
To introduce the shell and utilities, I would try to find a somewhat realistic use case that combines multiple aspects, like analyzing some files or spellchecking instead of simply mentioning every feature one by one.
Thanks, i hadn’t heard oft Factor before, it looks interesting. I’m more of a LISP and FP Person but always wanted to properly learn a stack based language, Factor seems like a nice alternative to Forth for that purpose.
I find that S-expressions are the best syntax for programming languages. And in general infix operators are inferior to either prefix or postfix notation.
Why not write your own version? Getting the temperatures is easy and portable with the sensors
command from lm-sensors. The rest of the info is easy to get using various commands (e.g. uptime, free) combined with a bit of sed/grep/awk for formatting.
I find it interesting how large the difference between tastes regarding music players is. After the development of Cantata ceased, I was unable to find any mpd client that I liked and decided to write my own instead (if anyone is interested, the code is available at https://github.com/dokutan/cmpdc)
ISO 8601 allows either dashes or no separator, both 20230810 an 2023-08-10 are valid, but not 2023.08.10 .
If you are looking for cheap storage, i recommend you check out diskprices.com . At least it helped me sometimes to find the disk with a low price per TB.
Of course anecdotes are of very limited usefulness, but I had exactly the opposite experience. The HDDs that failed on me, failed slowly with SMART errors that gave enough time to make a backup, and never failed completely. On the other hand I had a cheap SSD die completely and without any warning after only limited use, and experienced bit rot even on reputable vendors.
tl;dr choose what you want but make backups
I like the default OSM carto style, however as an everyday map while walking I mostly use Streetcomplete (or sometimes everydoor) as I like the ability to make edits.
Maybe use segregated=true, https://wiki.openstreetmap.org/wiki/Key:segregated
You don’t even need to look at the extension to identify most file formats, as there are unique magic numbers stored at the beginning of most (binary) formats. Only when a single binary format is reused to appear as two different formats to the user, e.g. zip and cbz are extensions relevant. This is how the
file
command and most (?) Linux file explorers identify files, and why file extensions are traditionally largely irrelevant on Linux/Unix.This means your idea of suggesting software based on the file type is even more practicable than you described.