eeleech

joined 1 year ago
[–] eeleech@lemm.ee 5 points 11 months ago* (last edited 11 months ago)

I don't really have a single favorite a language, if I am able to choose freely it depends on the task.

  • C++ for natively compiled programs and C interoperability, I like the types from the STL and templates.
  • Clojure is IMO great for data-oriented programs, I really like the immutability and it being a lisp. The java interop and the ability to compile to JavaScript with clojurescript can also be useful.
  • Julia for smaller (mostly numerical) programs that should be fast at runtime. The type system is great in being optional, but strong and significantly improving performance when types annotations are used.
  • Fennel (or Lua) is definitely my favorite Language for embedding into larger programs and scripting. Fennel has the advantage of being a lisp and cleanly compiling to lua.
  • brainf*ck is great as a simple language to have fun and enjoy programming
[–] eeleech@lemm.ee 33 points 11 months ago (2 children)

These shortcuts aren't provided by the terminal or the shell but the readline library (or zle if you use zsh), which can be configured using the ~/.inputrc file.

[–] eeleech@lemm.ee 11 points 1 year ago (1 children)

Easyeffects is great, or use the eq built in to pipewire to avoid an additional dependency: wiki.archlinux.org/title/PipeWire#Systemwide_parametric_equalization

[–] eeleech@lemm.ee 7 points 1 year ago (4 children)

RAID 5/6 is somewhat broken, and some people might consider the lack of built in encryption or support for a cache disk as problems. For some reason it seems popular to blame it for data loss.

That being said, it is my favorite file system and I never had problems with data loss, but I use ECC RAM on my desktop as is strongly recommended if you use btrfs or zfs (another potential downside).

[–] eeleech@lemm.ee 39 points 1 year ago (1 children)

I don't know of one, but why not install gnome on Mint (or Debian)?

[–] eeleech@lemm.ee 15 points 1 year ago

I exclusively use podman instead of docker at work and at home and haven't encountered any unsolvable problems.

[–] eeleech@lemm.ee 3 points 1 year ago* (last edited 1 year ago) (3 children)

I genuinely don't know if scratch is the right choice or a simple text based language would be better, especially for the older kids. Just from my personal experience, I started programming in BASIC at 12 and don't think I would have had as much fun and continued programming if i had used scratch instead.

[–] eeleech@lemm.ee 9 points 1 year ago (1 children)

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.

[–] eeleech@lemm.ee 11 points 1 year ago

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.

[–] eeleech@lemm.ee 7 points 1 year ago

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.

[–] eeleech@lemm.ee 13 points 1 year ago (2 children)

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.

[–] eeleech@lemm.ee 2 points 1 year ago

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.

view more: ‹ prev next ›