mastodon

Back Open Paginator
13.09.2025 12:38
pawel (@pawel@wspanialy.eu)

What #Mastodon apps are you using on #Android?




Show Original Post


13.09.2025 12:29
colin_mcmillen (@colin_mcmillen@piaille.fr)

About that... It was stupid to set my `compose_mode` var as a string mirroring its source argv[] and then check its first char using [0] everywhere. Set it as a char from the start, simplify every comparison, -84 bytes.

github.com/colinleroy/a2tools/

#RetroComputing #AppleII #Mastodon




Show Original Post


13.09.2025 12:10
colin_mcmillen (@colin_mcmillen@piaille.fr)

Let the composer display the original toot, along with "Your quote:", when quoting.

github.com/colinleroy/a2tools/

The `if(compose_mode[0] == 'r')` got replaced with a
switch() {
case 'r':
case 'q':
...
}

You guessed why, it is tighter than if(compose_mode[0] == 'r' || compose_mode[0] == 'q').

The cc65 optimizer is far from perfect, and that or'ed if would load the variable twice, get the first char of it twice, and compare it twice. With a switch, only the comparison is done twice.

Cost so far, +46 bytes - but we're not done yet, as sending the quote would, for now, make a reply!

#RetroComputing #Mastodon #AppleII




Show Original Post


13.09.2025 12:02
glasco61 (@glasco61@mastodon.scot)

A fairly rare occurrence on Mastodon for me:

A toot with an upbeat story about a young researcher working to make the world a wee bit better, with a decent amount of credible info easily available online to back the story.

The cynicism and negativity in the thread *way* outweighs the positive. Maybe it's a reflection of where we are atm? I am no kind of an unremitting sunshine & unicorns type of personality, but FFS why don't you knock it off with them negative waves?

#Mastodon #LightenUp




Show Original Post


13.09.2025 11:59
seharinsights (@seharinsights@mastodon.social)

Discover how AI is transforming finance by cutting costs, improving risk management, and boosting efficiency. Learn from real examples like Citibank and Klarna, and explore smart strategies for adopting AI in your business.

open.substack.com/pub/seharins





Show Original Post


13.09.2025 11:58
colin_mcmillen (@colin_mcmillen@piaille.fr)

When the user presses Q, we'll launch the composer with command-line parameters 'q' and the status ID if the toot is quotable.

The composer doesn't know what to do of that parameter combination yet, we'll get to it.

github.com/colinleroy/a2tools/

Total cost for the main binary: +168 bytes

Total cost for the composer, which I didn't directly touch yet but it already has the updated status struct and parser: +68 bytes.

#RetroComputing #AppleII #Mastodon




Show Original Post


13.09.2025 11:52
colin_mcmillen (@colin_mcmillen@piaille.fr)

Now that we have a `quotable` field in our status struct, we can update the menu to show the possibility of quoting: github.com/colinleroy/a2tools/

As 'Q' was used to Quit, we also rename 'Quit(Q)' to 'Exit(X)' so that the Quote action has a good shortcut.

#RetroComputing #AppleII #Mastodon




Show Original Post


13.09.2025 11:50
colin_mcmillen (@colin_mcmillen@piaille.fr)

Let's live-toot the adding of quote-posting to #Mastodon for #AppleII, in case it interests some nerds.
First of all, let's detect whether a toot is quotable: github.com/colinleroy/a2tools/
The JSON field `quote_approval.current_user` of a Status entity will either contain `automatic`, `manual`, `denied` or `unsupported_policy`. We'll consider everything but `denied` as quotable.
If the field doesn't exist, for retro-compatibility, we'll use a default `d`.

In the commit you'll see that we compare the first character of that field to `d`, this is much tighter size-wise than an strcmp().




Show Original Post


13.09.2025 11:47
coa100 (@coa100@mastodon.social)

i have a treat for you!
Monster Island Illian a fun action game
Game can be downloaded for FREE at coa-100.itch.io/monster-island





Show Original Post


13.09.2025 11:36
scrumschau (@scrumschau@mastodon.social)

"Mastodon führt ab nächster Woche die lang diskutierte Zitat-Funktion ein. Nachdem man sich anfangs gegen diese Funktion gesträubt hatte, können Nutzer künftig beim Boosten von Beiträgen wählen, ob sie diese mit einem eigenen Kommentar versehen möchten. Die dezentrale Plattform hatte die Quote-Posts ursprünglich abgelehnt, weil man Bedenken wegen möglicher Belästigungen hatte. Im Februar kam dann die Kehrtwende"

stadt-bremerhaven.de/mastodon-




Show Original Post


13.09.2025 11:05
kurzgedanken-mastodon-fuehrt-zitat-funktion-ein (@kurzgedanken-mastodon-fuehrt-zitat-funktion-ein@www.jansens-pott.de)

Neu auf Jansens Pott:

Kurzgedanken: Mastodon führt Zitat-Funktion ein

Nächste Woche wird es ein Update bei Mastodon geben und damit wird dann auch die Zitat-Funktion eingeführt.

Ich bin da immer noch skeptisch, ob das eine gute Idee ist. Ich dachte lange, dass diese Zitatfunktion mit ein Grund dafür war, dass […]

jansens-pott.de/kurzgedanken-m

#Blog #Mastodon #microblog #Zitate




Show Original Post


13.09.2025 11:02
daliamohisen (@daliamohisen@mastodon.social)

The stench of gunpowder and fire blankets the skies of Gaza, suffocating the city beneath a burning shroud.
medium.com/@daliamohisenn/it-f





Show Original Post


1 ...2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 ...2878
UP