shakedown.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A community for live music fans with roots in the jam scene. Shakedown Social is run by a team of volunteers (led by @clifff and @sethadam1) and funded by donations.

Administered by:

Server stats:

255
active users

#bestpractices

1 post1 participant0 posts today

A little reminder to everybody on climatejustice.social (but it similarly also applies to all Mastodon servers).

If you're posting mostly in one language, please go to climatejustice.social/settings and set your primary posting language, if you haven't yet. It does not have to be the same as your interface language.

While you're there you can also filter languages. If you select any of the languages in the list, then only posts in that or those languages will display in public timelines for you. This does not work if people set their posts to the wrong language though.

If you regularly switch languages, please try to make a habit of manually selecting the posting language every time.

Apart from the language filters, some other advantages of setting the correct language:
* climatejustice.social and many other servers have a built in translation function, but it only works if the language is set correctly (this is especially important for moderators - you'll be making our live a lot easier)
* Alt text is also translated, so for accessibility, please always write your alt text in the post's language
* trends are language specific. if you set your posts to the wrong language, you could be spamming the trends for that language
* your account is recommended to people based on the set language(s) of your posts, if your privacy settings allow account recommendation
* if someone follows you and you post in different languages and actually set them correctly every time, they can go to your profile and select which of your languages they wand to subscribe to

Mastodon hosted on climatejustice.socialClimate Justice SocialWelcome to this Fediverse instance for climate justice activists.

KQED: A Treasure Trove of Education Reports and Studies is Under Threat. “Initially, ERIC was spared from the department’s mass contract cancellations in February. But according to Erin Pollard Young, the sole Education Department employee who managed ERIC until her job was eliminated in March, the Department of Government Efficiency or DOGE has since refused to approve disbursement of […]

https://rbfirehose.com/2025/04/22/kqed-a-treasure-trove-of-education-reports-and-studies-is-under-threat/

ResearchBuzz: Firehose | Individual posts from ResearchBuzz · KQED: A Treasure Trove of Education Reports and Studies is Under Threat | ResearchBuzz: Firehose
More from ResearchBuzz: Firehose

My god, I just realized one of the simplest opsec things you can do (something I've been doing for years and don't even think about anymore) is set your browsers to open links in private/secure instances AS A DEFAULT.

If it needs to be opened in a window that you want to keep open or bookmark, you can always manually copy and paste it.

It makes no sense to be using a secure shared tool like cryptpad, if you're just gonna open it where you're logged in as you.

Remember the #SocialEngineering motto:
If there are people, there are security holes.

📚 Check out this recent article on best practices for file uploads.

Popular approaches:
1. Uploading a file by itself, like adding an avatar.
2. Uploading a file with metadata, like a video with a title and description.
3. Importing a file from a URL, like an avatar from Facebook.

Best practices:
+ Check Content-Type and Content-Length
+ Secure file uploads

Read the full article: apisyouwonthate.com/blog/api-d

#API #Development #BestPractices #FileUploads

By @Philsturgeon

APIs You Won't Hate · API Design Basics: File UploadsHow does a REST API handle uploading images or spreadsheets when it normally only handles JSON or XML?

Ich hab mir jetzt nen #pixelfed Account gemacht (@fiaskogaul@pixelfed.de) weil ich den Funktionsunfang und das Userinterface für #Bilder besser finde und nutzen will.

Ich weiß aber noch nicht so richtig wie ich die beiden #fediverse Accounts #coexistieren lassen soll.

Ich will die Bilder und Videos, die ich über Pixelfed poste über meinen #Mastodon Account auf Freiburg.Social auch ausgeben.

Wie macht man das am Besten? Gibt es da eine #bestpractices?

Mein Plan war erst mal meine Pixelfed-Postings zu #Boosten. #Crossposting will ich eigentlich vermeiden.

"The main vehicle of diffusion of that set of generic 'tools'—hard, soft & ideological—which modify the #BestPractices frontier for all, is the #TechnoEconomicParadigm.
It is #economic because each technological transformation brings with it a major shift in the relative price structure that guides economic agents…
It is a #Paradigm because it defines the model and the territory for 'normal' innovative practice, promising success to those that follow the principles…"

RE: toolsforthought.social/@billse

Tools For Thought Rocks!Bill Seitz (@billseitz@toolsforthought.social)A theory: the 2008 financial crisis was a potential Turning Point in this cycle of Technological Revolution. But Obama's appointees Geithner and Summers protected the status quo system/players, and so we've been stuck in the unsustainable financial-engineering/frenzy period ever since. So "tech" is bitcoin and GenAI. http://webseitz.fluxent.com/wiki/TechnologicalRevolutionsAndFinancialCapital

We’ve documented “best practices” by which creators of Generative AI solutions using Azure OpenAI Services can improve the response time of end user’s requests along with GitHub repos with code samples.

"Optimizing Response Times for Generative AI Applications using Azure OpenAI Services"
techcommunity.microsoft.com/t5

TECHCOMMUNITY.MICROSOFT.COMThe LLM Latency Guidebook: Optimizing Response Times for GenAI ApplicationsLearn how to turbocharge your GenAI applications. Latency is key to building a great customer experience, and in this article you will learn practical..
#openai#genai#ai
Replied in thread

@DDelgadoVive
I've been saying how we've dealt with Covid reminds me of The 3 Little Pigs & The Big Bad Wolf. No mask or vax is a house of straw, Vax but no mask is a house of sticks. Both ineffective against the big bad wolf's huffing & puffing. Both houses blow down. Only the brick house of best practices survives which is proper masking first & foremost, & all other things like vax, social distance, limit crowds, air purifiers, etc.

I'm looking to switch from multi-booting my laptop to one linux distro that hosts purposed containers (work, personal, play, etc).

Any recommendations or ideas on the best way to do this?

I want to keep them separated and secured with different credentials, but minimize the pain in the ass that is rebooting and entering multiple passwords every time I want to switch contexts.

Virtual machines work, but they have a lot of overhead.

---

New article:

⚠️Why you should avoid import * in Python 🐍
pybit.es/articles/why-you-shou

Covering:
- Why modules are great and namespacing explained
- Why import * is a problem
- A practical example where a function gets overriden
- The recommended way to do imports
- What PEP8 has to say about this
- Protection workaround, use __all__ to define your module's public interface

PyBites⚠️Why You Should Avoid Import * In Python 🐍 - PyBitesHowever, not all ways of using modules are equally beneficial. In this article, we will discuss why using import * can be more problematic than it's worth,