Ian Alexander's Avatar

Ian Alexander

@ozi.au

I used to be a werewolf, but I'm alright nooooooooow! Excited to join this vibrant community! As a retired senior, I love continuous discovery. Passionate about UNIX/LINUX , command line tools, FOSS, and decentralized web apps. ๐ŸŒ

8
Followers
12
Following
15
Posts
23.12.2023
Joined
Posts Following

Latest posts by Ian Alexander @ozi.au

The 'tr' command can be used to ...

# Convert case
echo 'example' | tr '[:lower:]' '[:upper:]'

# Delete characters:
echo 'Hello 123' | tr -d '[:digit:]'

# Squeeze repeated characters:
echo 'hiiiiii' | tr -s 'i'

โ€˜trโ€™ Command in Linux | String Manipulation Guide (ioflood.com)

26.12.2023 01:16 ๐Ÿ‘ 2 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

@alesya.social I remember a flake.lock file is generated during a build capturing exact versions of inputs used for the build, allows reproduction of the exact environment. Flakes use fixed references to refer to specific versions of dependencies and provide isolation avoiding global state changes.

25.12.2023 19:06 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

When you see the enormous tree arrive you will know.

24.12.2023 04:17 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Thank you for that information - I will follow accordingly.

24.12.2023 04:14 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Thank you

24.12.2023 02:35 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

I have a single user system/configured home manager - regarding flakes I am considering if it is worth the effort. A flake will allow reproduceable environments/preserve versions and dependencies. However, I have my system hosted on a vps so have setup daily backups so may not need to use a flake.

24.12.2023 02:04 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 2 ๐Ÿ“Œ 0

@alesya.social to flake or not to flake that is my question ๐Ÿ˜•

24.12.2023 01:39 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

Very amusing - made my day ๐Ÿ‘๐Ÿ˜‚

24.12.2023 01:27 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Thank you yes that is so much better.

24.12.2023 01:23 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
YouTube Video - Using a 1930 Teletype as a Linux Terminal https://www.youtube.com/watch?v=2XLZ4Z8LpEE

YouTube Video - Using a 1930 Teletype as a Linux Terminal https://www.youtube.com/watch?v=2XLZ4Z8LpEE

Using a 1930 Teletype as a Linux Terminal - YouTube

24.12.2023 00:45 ๐Ÿ‘ 3 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
https://youtu.be/2XLZ4Z8LpEE?si=mnVkWa5-q5rkmwLj

https://youtu.be/2XLZ4Z8LpEE?si=mnVkWa5-q5rkmwLj

It works !!

24.12.2023 00:35 ๐Ÿ‘ 3 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

use 'ctrl+r' to search and repeat past commands. Start typing a keyword, and it will find and display matching commands from your history. Saves time and makes navigating the command line easy.

24.12.2023 00:29 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

It is indeed

23.12.2023 21:06 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

That my vitrectomy went well ๐Ÿ™‚

23.12.2023 20:05 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0


Did you know that the Unix command line has a built-in calculator? You can use the bc command to perform arithmetic operations, such as bc <<< "2+2" or bc <<< "sqrt". You can also use the expr command for simple calculations, such as expr 2 + 2 or expr 25 / 5.

23.12.2023 19:24 ๐Ÿ‘ 6 ๐Ÿ” 0 ๐Ÿ’ฌ 2 ๐Ÿ“Œ 0