5 Followers
34 Following
46 Posts

i just wanna have chill convos, preferably about linux or foss, and definitely not about politics

"blarp. it's not just a funny word i made up -- it's my personal mantra."
- blarp

favorite drinktaco
favorite colortaco
best friend's nametaco
favorite foodbroccoli...betcha didn't see that one coming

A number of folks have reached out to us over the past few months asking how they could help Mastodon out. Unfortunately, we haven't had the capacity to accept those kind offers at the time.

If you're interested in getting involved as a volunteer, please fill out this form (and share it around!) so we know who could help with what. (There is plenty that needs doing!)

https://joinmastodon.typeform.com/to/PdqUZCAg

Fediverse Volunteer Signup

Turn data collection into an experience with Typeform. Create beautiful online forms, surveys, quizzes, and so much more. Try it for FREE.

If you try bash for loop ranges using shell vars it will not work:
S=1
E=5
for i in {${S}..${E}}; do echo "$i"; done

The workaround is to use the seq command or eval command:
S=1
E=5
for i in $(eval echo "{${S}..${E}}"); do echo "$i"; done

See https://www.cyberciti.biz/faq/unix-linux-iterate-over-a-variable-range-of-numbers-in-bash/ for more including other examples such as arrays to solve this issue.

So mastodon.social was under a DDoS attack.

@Gargron confirms this.

Someone out there doesn't like the Fediverse.

But also, if they thought that taking down mastodon.social would take down the Fediverse, then they were incredibly foolish!

The Fediverse is built on redundancies.

This isn't like Twitter where a Fail Whale would bring down the entire social network.

https://mastodon.social/@Gargron/109781490892884305

Ever want to quickly see a hex color value from the command line? Try using ImageMagick display and making a easy to use function to call it.

showcolor() { display -size 400x400 xc:"#${1}"; }
showcolor 6823AF

The first beta version of #Tusky 21 is out!
โœ… Editing
โœ… change your preferred reading direction
โœ… improved (bigger) media previews
โœ… add accounts to lists from their profile
โœ… view all your followed hashtags
full changelog: https://github.com/tuskyapp/Tusky/releases/tag/v21.0-beta.1
โš ๏ธ There is a known issue of 21.0 beta 1 crashing on Androids below 11 that is already being fixed
Release Tusky 21.0 beta 1 ยท tuskyapp/Tusky

Support for post editing (Mastodon 4 feature) New setting to control preferred reading direction Improved media display in timelines Media previews with aspect ratios between 1:2 and 2:1 are now s...

GitHub