grunfink, to fediverse
@grunfink@comam.es avatar

I'm glad to announce the release of version 2.51 of #snac, the simple, minimalistic #ActivityPub instance server written in C. It includes the following changes:

Support for custom Emojis has been added; they are no longer hardcoded, but read from the emojis.json file at the server base directory. Also, they are no longer limited to string substitutions, but images as external URLs are also supported (see snac(8) for more information).

Fixed a bug that caused some notifications to be lost when coming from a user in the same instance.

Added an additional check for blocked instances (sometimes, posts from blocked sites that were ancestors of legit posts were 'leaking' into the timeline).

On OpenBSD, if the disable_email_notifications server flag is set to true, unveil() is not called for the execution of the /usr/sbin/sendmail binary and pledge() doesn't set the exec promise.

https://comam.es/what-is-snac

If you find #snac useful, please consider buying grunfink a coffee: https://ko-fi.com/grunfink

This release has been inspired by the album Eternal Embers by #Meltt.

#snacAnnounces

teajaygrey,
@teajaygrey@rap.social avatar

@grunfink I submitted a PR to update MacPorts' snac to 2.51 here:

https://github.com/macports/macports-ports/pull/23357

CI checks are queued. Hopefully they'll go smoothly?

Assuming they do, it will still be up to someone else with commit access to merge it.

Thank you for your continued improvements! On my mental ToDo list I keep on meaning to create a snac Port for OpenBSD, and it looks as if the unveil and pledge support continues to be refined, cool!

#snac #MacPorts #OpenSource #ActivityPub #Mastodon #NoDatabaseNeeded #NoJavaScript #NoCookiesEither #NotMuchBullShit #snacAnnounces

firefly, (edited ) to random
@firefly@neon.nightbulb.net avatar

Is there a way (via cli or by calling a snac function from a script) to poll and auto-accept follows to a certain profile, and then auto-boost all posts that mention that profile address?

The idea is to function like a group on the local server so that all followers will be able to see all toots addressed to the profile.

So user Bob is following user @boost. User Alice posts a status mentioning @boost. The account @boost automatically boosts the post from Alice. Then user Bob eventually can see the boosted post in the timeline.

If there is a way to hack or cobble this I'd probably rather go that route rather than trying to author C code for it. I haven't even tried to write C code for like 20 years, and even then I was not proficient at it. A hackety solution is just as good for my purpose, if anyone can suggest any.

I know I can emulate this behavior by scripting a mastodon client to do it with a cron job. But if there is a way to use snac commands or a config hack I would prefer it.

@grunfink

grunfink,
@grunfink@comam.es avatar

Hi. I'm afraid there is no easy way to automate what you want just using #snac 's command-line interface. As you say, doing it via the Mastodon API could be feasible. I don't know of an already written tool that does this, but it may exist out there.

The #ActivityPub actor of type Group was defined basically for this; to boost to their followers all posts that mention it. Programs like Lemmy and the Wordpress ActivityPub plugin implement 'channels' this way.

Implementing support for this in snac won't be too difficult, but I want to keep it as slim as possible. I don't totally discard the idea, though, so I'll write it down as a possible thing to be done in the future.

DAISYLittleOne1, to random
@DAISYLittleOne1@mastodon.thirring.org avatar

You must have #Snac, why else would you be stopping by! #inquiringMinds #emptyMoufs #starvingPeegs #VisitingPeegs #ReignandAthena

ncrav, to Rabbits
@ncrav@mas.to avatar

"Is that a pumpkin seed? I sniff pumpkin seed! Give it to me 🦫"

BunDad Note: I can feel the tiny lips searching on my hand 🤭

fediverseobserver, to fediverse

Found 2 new servers and 14 servers died off since 3 hours ago.

23,093 servers checked. 13,965,001 Total Users with 1,609,539 Active Users today. Check out the stats!

New #fediverse servers found:

fedi.notfire.cc a #snac server from Private
mstdn.engawa.social a #mastodon server from Private

Help others find a home, send them to fediverse.observer

hui, to random

Why Tusky keeps notifying me there are notifications even after I have already read all of them? The only option seems to be deleting them all.
It this a Tusky or Snac2 issue?

grunfink, to random
@grunfink@comam.es avatar

So it seems that, now that Threads is federating, the most popular person in the fediverse is... Mark Zuckerberg:

https://mastodon.bsd.cafe/users/release_candidate/statuses/112140845317198247

I find these "popularity contests" pointless, ridiculous and inherently toxic, and a signature of private social networks where the goal is not to help people communicate between each other.

This is the reason why #snac does not propagate how many followers nor likes a person have.

abucci,
@abucci@buc.ci avatar

This is the reason why #snac does not propagate how many followers nor likes a person have.

I love this feature, for the reasons you cite.

liaizon, to fediverse
@liaizon@wake.st avatar

Working on a page for my #fediverse SVG icons. Anyone want to help make this page better? My CSS and HTML abilities are lacking...

The page is live at https://fediverse.wake.st

I have a @Codeberg repo here up here https://codeberg.org/FediverseX/pages

grunfink,
@grunfink@comam.es avatar

@liaizon, I miss Susie, the logo of ...

grunfink, to fediverse
@grunfink@comam.es avatar

I'm glad to announce the release of version 2.50 of #snac, the simple, minimalistic #ActivityPub instance server written in C. It includes the following changes:

Incoming posts can now be filtered out by content using regular expressions on a server level (these regexes are written in the filter_reject.txt file at the server base directory; see snac(5) and snac(8)).

Improved page position after hitting the Hide or MUTE buttons (for most cases).

Use a shorter maximum conversation thread level (also, this maximum value is now configurable at compilation level with the MAX_CONVERSATION_LEVELS define).

Fixed a bug where editing a post made the attached media or video to be lost.

The way of refreshing remote actor data has been improved.

Posting from the command-line now allows attachments.

Added defines for time to enable MacOS builds (contributed by andypiper).

https://comam.es/what-is-snac

If you find #snac useful, please consider buying grunfink a coffee: https://ko-fi.com/grunfink

This release has been inspired by the song The Raven by #CarolineLavelle.

#snacAnnounces

grunfink,
@grunfink@comam.es avatar

Thanks for the nice words.

The xs is an intentionally lightweight library I (with the help of some friends) started for a very different project that never was. As it adds some niceties to C coding, I use it everywhere. It's mostly feature-complete now, but I fix and add some things occasionally. These days, is mostly its main user, as other projects that use it are pretty irrelevant.

Using C headers both for implementations and prototyping is somewhat of a perversion 😆, but it simplifies immensely sharing code between projects, because you don't have to care about building libraries (static nor dynamic) and their operating system idiosyncracies. You just drop the .h in your project, include it and it's done. The reason: simplicity. If I had a motto as a developer, simplicity would be.

teajaygrey,
@teajaygrey@rap.social avatar

@grunfink I submitted a PR to update MacPorts' snac to 2.50 here:

https://github.com/macports/macports-ports/pull/23182

CI checks passed OK!

It's up to someone else with commit access to merge it.

Thank you for your continued enhancements, bug fixes and contributions!

#snac #MacPorts #OpenSource #ActivityPub #Mastodon #NoDatabaseNeeded #NoJavaScript #NoCookiesEither #NotMuchBullShit #snacAnnounces

KelsonTalksTech, to threads
@KelsonTalksTech@snac24.keysmash.xyz avatar

Update: can interact with Threads, I'd just messed up my configuration.*

Looks like still doesn't federate properly with .

Which may be a feature as far as most GTS and Snac users are concerned!

But I do want Threads to technically be able to federate with most/all other software that uses , so it can be user/admin choice whether to accept connections from the giant instance...and more importantly, to cut down on the risks of vendor lock-in and EEE.

And I hope more compatible systems will cut down on the "OK, my software federates with itself and Mastodon, I'm done" problem. In some cases there may be bugs on the smaller project's side, and fixing them might also fix issues talking to other small projects.

GTS has already fixed a bug found by trying to federate with Threads, but there's still a bug on the Threads end preventing them from talking to each other.
https://github.com/superseriousbusiness/gotosocial/issues/2491

Key quote:

If Facebook had an issue tracker for threads, someone could open an issue there. If threads was an open source project, we could look at the code and immediately know what's up, but... 🤷

grunfink,
@grunfink@comam.es avatar

Hi, #snac author here. I've just read your message and tested following a Threads account, and the process seems to complete correctly, the log messages report the correct dialog and the account appears in my being-followed list (I still haven't received any message from that account, but it's still early, I think). What may have happened in your case is that the Accept message from Threads to your Follow request was lost or not sent for whatever reason, so for snac it's a follow not (yet) confirmed.

Can you tell me what Threads account are you trying with? I'll investigate.

Thanks for your help.

grunfink, to fediverse
@grunfink@comam.es avatar

I'm glad to announce the release of version 2.49 of #snac, the simple, minimalistic #ActivityPub instance server written in C. This time it includes some fixes to the Mastodon API code, which was in need of some love:

Mastodon API: Fixed a bug in how validated links are reported.

Mastodon API: Fixed a bug in search by account.

Mastodon API: Fixed missing Video type objects in timelines.

Mastodon API: Added search by hashtag.

Some cosmetic fixes to the web interface.

https://comam.es/what-is-snac

If you find #snac useful, please consider buying grunfink a coffee: https://ko-fi.com/grunfink

#snacAnnounces

teajaygrey,
@teajaygrey@rap.social avatar

@grunfink I submitted a PR to update MacPorts' snac to 2.49 here:

https://github.com/macports/macports-ports/pull/22899

CI checks passed OK! It's up to someone else with commit access to merge it.

#snac #MacPorts #OpenSource #ActivityPub #Mastodon #NoDatabaseNeeded #NoJavaScript #NoCookiesEither #NotMuchBullShit

announcements, to fediverse

Dear friends of and the ,
since December 2023, snac.bsd.cafe has been operational, initially in an experimental phase but has proven to be stable and reliable.

Thus, Snac2 is now available as a service of BSD Cafe. It is considered one of the best and most comprehensive "lightweight" implementations of , offering one of the best ways to interact with the Fediverse without the need for the extensive dependencies and components of Mastodon.

It is now possible to request an account on the snac2 instance of BSD Cafe. There isn't an automatic sign-up process (snac2 does not provide one, as it wasn't designed to create large communities).

For information and details, I suggest reading the relevant page on our Wiki: https://wiki.bsd.cafe/snac.bsd.cafe

Have a great week!

@stefano

stefano, to fediverse
@stefano@bsd.cafe avatar

Dear friends of and the ,
since December 2023, snac.bsd.cafe has been operational, initially in an experimental phase but has proven to be stable and reliable.

Thus, Snac2 is now available as a service of BSD Cafe. It is considered one of the best and most comprehensive "lightweight" implementations of , offering one of the best ways to interact with the Fediverse without the need for the extensive dependencies and components of Mastodon.

It is now possible to request an account on the snac2 instance of BSD Cafe. There isn't an automatic sign-up process (snac2 does not provide one, as it wasn't designed to create large communities).

For information and details, I suggest reading the relevant page on our Wiki: https://wiki.bsd.cafe/snac.bsd.cafe

Have a great week!

cenobyte, to random
@cenobyte@mastodon.thirring.org avatar

Skye enjoying a lunchtime

gyptazy, to debian
@gyptazy@gyptazy.ch avatar

#snac 2.48 (2.49-dev) compile for #RISCV64 #Debian & #Ubuntu. Thanks to @grunfink for today's release!

This should help all the people that are running on #RV64 hardware (like the #VisionFive2, #MilkV, #LicheePi4A, ...) and also want to run #snac2 as a #ActivityPub instance in the #Fediverse like me.

You can grab it here: https://cdn.gyptazy.ch/files/riscv64/ubuntu/snac/snac_2.49_dev_ubuntu_23.10_riscv64_linux.tgz

tk, to fediverse en-us

Is anyone here running a server on ?

angel,
@angel@triptico.com avatar

AFAIK, @stefano runs both #Mastodon and #snac fediverse instances in https://bsd.cafe , but for some reason the snac one is not announced there.

stefano,
@stefano@bsd.cafe avatar

@angel Hi, the instance is running fine. I just haven't declared it as an "official" service as I'm still considering it as experimental.
Maybe it's time to announce it and make it official 🙂

DAISYLittleOne1, to random
@DAISYLittleOne1@mastodon.thirring.org avatar

On this 🌈❤️ we remember one of 's favorite , the home made carrot chip 🥕😋. And yes, her decerning pallet only liked home made 😏.

video/mp4

technicat, to fediverse
@technicat@iosdev.space avatar

now recognizing and as distinct platforms. also and . also running out of icons.

DAISYLittleOne1, to random
@DAISYLittleOne1@mastodon.thirring.org avatar

Someone thinks there should be coming his way! 🥬🥒🥦🫑🥕🍎🫐

fediverseobserver, to fediverse

Found 3 new servers and 8 servers died off since 3 hours ago.

23,866 servers checked. 13,894,330 Total Users with 1,668,746 Active Users today. Check out the stats!

New #fediverse servers found:

sharkey.bat-pike.ts.net a #sharkey server from United States
arcadellama.com a #snac server from United States
grimfeast.com a #sharkey server from United States

Help others find a home, send them to fediverse.observer

ADailyViolet, to Rabbits
@ADailyViolet@mastodon.thirring.org avatar

It's President's Day? Then I demand presidential level !

Alexia_Powderr, to random Spanish

Sigo enfurruñada con mastodon porque a pesar de seguir a 500 personas siempre veo a las 4 de siempre en la TL, el resto aunque están activas solo me entero de sus toots si alguien les hace RT o contesta :blobpats:

victor,
@victor@taquiones.net avatar

@Alexia_Powderr me pasa igual, hay personas de las que no sé en semanas y hasta que no me meto en su cuenta no sé si siguen vivas.

#snac es mi servidor y siempre muestra las cosas en hilos, de manera que no te pierdes de qué están hablando y aún así tampoco los veo a todos.

Debería haber un método para distribuir el contenido de otra forma pero eso suena a algoritmo y no es algo apreciado.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • ngwrru68w68
  • everett
  • InstantRegret
  • magazineikmin
  • thenastyranch
  • rosin
  • GTA5RPClips
  • Durango
  • Youngstown
  • slotface
  • khanakhh
  • kavyap
  • DreamBathrooms
  • provamag3
  • tacticalgear
  • osvaldo12
  • tester
  • cubers
  • cisconetworking
  • mdbf
  • ethstaker
  • modclub
  • Leos
  • anitta
  • normalnudes
  • megavids
  • lostlight
  • All magazines