tallship

@tallship@public.mitra.social

Slackware, OpenBSD, and a bit of a Debiantard.
FOSS and Privacy Advocate. Secure, Enterprise Cloud.

This profile is from a federated server and may be incomplete. Browse more on the original instance.

tallship, to foss

Thanks Evan, there's a bit to digest there, some of which I agree with, and some of which I don't, between what both you and the Other Evan had to offer.

It's good to get this stuff right out in the open, especially as the Fediverse is currently undergoing yet another paradigmatic shifts, perhaps an evolutionary step, but certainly, a complete game changer from much of the perspective offered in the Evan <==> Evan Essays ;)

https://fediversity.site/item/eed57428-ca9c-4ea1-a398-ef2d7319eff7

I hope that helps! Enjoy!

RE: https://evanp.me/2024/04/14/responses-to-rabble-on-activitypub/

@evanprodromou

darnelltv, to fediverse

So after being alerted by @tallship / @tallship & @silverpill that my ActivityPub settings were a bit wonky, I decided to take some time & investigate.

After further analysis, my settings were a bit wonky, as the site could no longer ping user handles (weird, I know).

I decided to embrace the spirit of Serenity / Firefly & quit “fiddling” to find out what the issue was.

Opening scene from Serenity MovieI deactivated & reactivated the ActivityPub plugin & installed the NodeInfo(2) plugin (both are by @pfefferle).

So now, the site can ping users when mentioning handles, but I am still unsure why the site was not working previously or if the underlying issues were addressed.

If anyone else has any issues, feel free to ping me at @darnell (my Mastodon account), as being a part of the Fediverse is important to me.

https://darnellclayton.com/2024/04/14/embracing-serenity-third-activitypub-test/

tallship,

@pfefferle @silverpill @darnell @tallship @darnelltv

Okay this looks like the latest post in the thread :)

I just made another post, but it may take a few minutes to show up in the blog or the area where you release spam/approve posts/etc. Here's the link to that post here from this account of mine on a Mitra server:
https://public.mitra.social/objects/018ee220-adbf-5f0f-823d-26d3914f23d3

After reading your post Darnell, that you had up'ed your subscription and installed an additional plugin, and then (presumably) re-installed ActivityPub plugin, I went and checked the state of the follow I affected.

It was still stuck in pending. So I cancelled it, then waited a few minutes, and attempted a follow again. It's sitting there waiting - here's the screenie:

Well folks, I hope this helps :)

.

tallship, to fediverse

Okay I thought I'd share this recent post here on the . To give it some context, it's an answer to a common question, often a misunderstanding (even by many knowledgeable folks) as to just how we got here.

So first, the question, posed HERE.

And my answer follows below:

There's a lot of apples and oranges here. And everyone had a lot of good points made, but your question is simple, and has a very simple answer. I'll endeavor to address that directly, but do need to tend to some of what has already been said.

Scroll down to the tl;dr for the succinct answer of your question

Ethernet, ARCNET, Token Ring, Thick net (RG-59), Thin net (RG-58 A/U), and UTP (Cat 3, Cat 5, and Cat 6 unshielded twisted pair, Etc.) really have zero bearing on your question insofar as IP is concerned. All of these specifications relate to the definition of technologies that, although are indeed addressed in the OSI model which is indeed very much in use to this day,but are outside the scope of Internet Protocol. I'll come back to this in a minute.

It's quite common to say TCP/IP, but really, it's just IP. For example, we have TCP ports and we have UDP ports in firewalling. i.e., TCP is Transmission Control Protocol and handles the delivery of data in the form of packets. IP handles the routing itself so those messages can arrive to and from the end points. Uniform Data Protocol is another delivery system that does not guarantee arrival but operates on a best effort basis, while TCP is much chattier as it guarantees delivery and retransmission of missed packets - UDP is pretty efficient but in the case of say, a phone call, a packet here and there won't be missed by the human ear.

That's a very simplistic high level-view that will only stand up to the most basic of scrutiny, but this isn't a class on internetworking ;) If you just want to be able to understand conceptually, my definition will suffice.

Networking (LAN) topologies like Token Ring, ARCNET, and Ethernet aren't anywhere in the IP stack, but figure prominently in the OSI stack. I'm not going to go into the details of how these work, or the physical connection methods used like Vampire Taps, Thin net, or twisted pair with RJ-45 terminators, but their relationship will become obvious in a moment.

The OSI model unfolds like so, remember this little mnemonic to keep it straight so you always know:

> People Don't Need To See Paula Abdul

Okay, touched on already, but not really treated, is the description of that little memory aid.

> Physical, Data Link, Network, Transport, Session, Presentation, and Application layers (From bottom to top).

The physical and Data Link layers cover things like the cabling methods described above,and you're probably familiar with MAC Addresses (medium access control) on NICs (network interface controller). These correlate to the first two layers of the OSI stack, namely, the Physical (obvious - you can touch it), and the Data Link layer - how each host's NIC and switches on each LAN segment talk to each other and decide which packets are designated for whom (People Don't).

In software engineering, we're concerned mostly with the Session, Presentation, and Application layers (See Paula Abdul). Detailed explanation of these top three layers is outside the scope of this discussion.

The Beauty of the OSI model is that each layer on one host (or program) talks to exclusively with the same layer of the program or hardware on the other host it is communicating with - or so it believes it is, because, as should be obvious, is has to pass its information down the stack to the next layer below itself, and then when it arrives at the other host, it passes that information back up the stack until it reaches the very top (Abdul) of the stack - the application.

Not all communication involves all of the stacks. At the LAN (Local Area Network) level, we're mostly concerned with the Physical and Data Link layers - we're just trying to get some packet that we aren't concerned about the contents of from one box to another. But that packet probably includes information that goes all the way up the stack.

For instance, NIC #1 has the MAC: 00:b0:d0:63:c2:26 and NIC #2 has a MAC of 00:00:5e:c0:53:af. There's communication between these two NICs over the Ethernet on this LAN segment. One says I have a packet for 00:00:5e:c0:53:af and then two answers and says, "Hey that's me!" Nobody else has that address on the LAN, so they don't answer and stop listening for the payload.

Now for Internet Protocol (IP) and TCP/UDP (Transmission Control Protocol and User Datagram Protocol):

IP corresponds to Layer 3 (Need) - the Network Layer of the **OSI Model.

TCP and UDP correspond to Layer 4 (To) - the Transport Layer of the OSI model.

That covers the entire OSI model and how TCP/IP correspond to it - almost. You're not getting off that easy today.

There's actually a bit of conflation and overlapping there. Just like in real life, it's never that cut and dried. For that, we have the following excellent explanation and drill down thanks to Julia Evans:

  • Layer 2 (Don't) corresponds to Ethernet.
  • Layer 3 (Need) corresponds to IP.
  • Layer 4 (To) corresponds to TCP or UDP (or ICMP etc)
  • Layer 7 (Abdul) corresponds to whatever is inside the TCP or UDP packet (for example a DNS query)

You may wish to give her page a gander for just a bit more of a deeper dive.

Now let's talk about what might be a bit of a misconception on the part of some, or at least, a bit of a foggy conflation between that of the specification of the OSI model and a Company called Bolt Beranek & Newman (BBN) a government contractor tasked with developing the IP stack networking code.

The TCP/IP you know and depend upon today wasn't written by them, and to suggest that it was the OSI model that was scrapped instead of BBN's product is a bit of a misunderstanding. As you can see from above, the OSI model is very much alive and well, and factors into your everyday life, encompasses software development and communications, device manufacturing and engineering, as well as routing and delivery of information.

This next part is rather opinionated, and the way that many of us choose to remember our history of UNIX, the ARPANET, the NSFnet, and the Internet:

The IP stack you know and use everyday was fathered by Bill Joy, who arrived at UC Berkeley in (IIRC) 1974), created vi because ed just wasn't cutting it when he wanted a full screen editor to write Berkeley UNIX (BSD), including TCP/IP, and co-founded Sun Microsystems (SunOS / Solaris):

> Bill Joy just didn’t feel like this (the BBN code) was as efficient as he could do if he did it himself. And so Joy just rewrote it. Here the stuff was delivered to him, he said, “That’s a bunch of junk,” and he redid it. There was no debate at all. He just unilaterally redid it.

Because UNIX was hitherto an AT&T product, and because government contracting has always been rife with interminable vacillating and pontificating, BBN never actually managed to produce code for the the IP stack that could really be relied upon. In short, it kinda sucked. Bad.

I highly recommend that you take a look at this excellent resource explaining the OSI model.

tl;dr:

So! You've decided to scroll down and skip all of the other stuff to get the straight dope on the answer to your question. Here it is:

> What were the major things that caused TCP/IP to become the internet standard protocol?

The ARPANET (and where I worked, what was to become specifically the MILNET portion of that) had a mandate to replace NCP (Network Control Protocol) with IP (Internet Protocol). We did a dry run and literally over two thirds of the Internet (ARPANET) at that time disappeared, because people are lazy, software has bugs, you name it. There were lots of reasons. But that only lasted the better part of a day for the most part.

At that time the ARPANET really only consisted of Universities, big Defense contractors and U.S. Military facilities. Now, if you'll do a bit of digging around, you'll discover that there was really no such thing as NCP - that is, for the most part, what the film industry refers to as a retcon, meaning that we, as an industry, retroactively went back and came up with a way to explain away replacing a protocol that didn't really exist - a backstory, if you will. Sure, there was NCP, it was mostly a kludge of heterogeneous management and communications programs that varied from system to system, site to site, with several commonalities and inconsistencies that were hobbled together with bailing twine, coat hangers, and duct tape (for lack of a better metaphor).

So we really, really, needed something as uniform and ubiquitous as the promise that Internet Protocol would deliver. Because Bill Joy and others had done so much work at UC Berkeley, we actually had 4.1BSD (4.1a) to work with on our DEC machinery. As a junior member of my division, in both age and experience, I was given the task of, let's say throwing the switch on some of our machines, so to speak, when we cut over from the NCP spaghetti and henceforth embraced TCP/IP no matter what, on Flag Day - 01 January 1983.

So you see,the adoption of Internet Protocol was not a de facto occurrence - it was de jure, a government mandate to occur at a specific time on a specific day.

It literally had nothing to do with popularity or some kind of organic adoption, the erroneously described, so-called demise of the OSI model, or any physical network topology.

DARPA said 01 January 1983 and that's it, and that was it - Flag Day.

Sure, it took a few days for several facilities to come up (anyone not running IP was summarily and unceremoniously cut off from the ARPANET).

And one also needs to consider that it wasn't every machine - we only had some machines that were Internet hosts. We still had a lot of mainframes and mini computers, etc., that were interconnected within our facilities in a hodgepodge or some other fashion. Nowadays we have a tendency to be somewhat incredulous if every device doesn't directly connect over IP to the Internet in some way. That wasn't the case back then - you passed traffic internally, sometimes by unmounting tapes from one machine and mounting them on another.

There was a lot of hand wringing, stress, boatloads of frustration, and concern by people over keeping their jobs all over the world. But that's why and when it happened. Six months later in the UNIX portions of networks we had much greater stability with the release of 4.2BSD, but it wouldn't really be until a few years later Net2 was released that things settled down with the virtually flawless networking stability that we enjoy today.

Enjoy!

.

snikket_im, to android
@snikket_im@fosstodon.org avatar

Just a heads-up that has been pulled by from the store. We'll work on restoring it once we figure out their (as usual) nonsensical complaints. Apologies to everyone affected. Please look at and free yourself.

Today's excuse for delisting yet another app?

"Your app is uploading users' Image information without posting a privacy policy link or text within the Play Distributed App."

Funny. What's this then?? 👀

tallship,

@danie10 @snikket_im

I personally feel that this is the optimal delivery and update methodology for future software distribution.

I've written about this at length in several articles, and more and more service daemons and client software are taking advantage of this form of direct from the developers method of delivery - not just Android apps.

is one such app that even states in the docs that this is the preferred method, although they do support a total of four methods:

  • Google PlayStore - crippleware due to google funding source restrictions. In all cases, this is by far the worst distribution point for software, if not with respect for the product that the developers want to deliver, but also with regards for the privacy of the users who are tracked, mined, and themselves repackaged as a quantifiable inventory item.
  • F-Droid custom Dev's repo - 2nd best option, because this is built with the developer's keys when the developer decides to push the product, and contain all feature sets that the developer chooses to include.
  • F-Droid repo - 3rd best option, since it is signed with F-Droid's keys and typically lags by some measure of time with respect to release dates, considering that F-Droid staff pushes these out on a best effort basis, according to the time they have available to do so.
  • Direct from the developers Git repo - This is the best method. They push a release and the next time you open the app you're notified of an update.

This is part of the magic of Slackware's philosophy too - Patrick and team don't church it up like most distro's do (Debian and AlmaLinux quite often, quite heavily wrt customizations, use Apache or Nginx HTTP servers as examples). Slackware tries to package up software as close to how the upstream intends it to be.

In earlier articles I've published on the topic, I've focused at times on a solution to a theme proffered by , who denigrates the open source model somewhat, for being at a great disadvantage when compared to that of proprietary solutions that can update and evolve protocols, APIs, etc., on a whim, because they're centrally managed and controlled by a single dictatorial source. Microsoft is one such classic example. You simply have NO CHOICE as to when you must allow your software to be EOLed, evolve, or update itself.

Using this model, however, where a central repo, or a distributed, CDN type of repo mirroring is deployed at the origin by the development team itself, FOSS has no problem upgrading even things like protocols as they evolve. Of course, it is ultimately up to the operators of the software to allow updates and the prerogative of the developers to establish the level of nags that users of the software will experience until they permit the updates to occur, but that's beyond the scope of the basis of advocating for this type of delivery model.

Okay I think I'm bordering on hijacking this thread, so I'll make a comment about these types of shennigans by Google, and how one one hand it's certainly a huge frustration, if not an impediment to being found and adopted by users, but moreover, a predatory practice by one of the most egregious violators of personal choice in the free market of consumerism and commerce.

It may hurt being pulled like that, but IMO, I don't think there's anything preventing the good folks behind from pushing out the kind of crippleware that google wants them to, while at the same time pushing banner splashes in the app that explain just how fricken' useless it is under the terms necessary to distribute it via that medium, and encouraging users to install it instead by following the instructions at the for a fully featured, secure messaging platform.

IOW, there's always a silver lining - wear this dejection as a badge of honor and as the evidence to support the fact that you're on the right track!

.

tallship, to random

@silverpill

Not sure if you would have noticed the boost so I've pinged you on the QuotePost.

RE: https://socialhome.network/content/c94bb475-e75d-4a23-87b7-90d5d544d378/

@tallship

tallship,

@silverpill @tallship @darnell

Okay maybe someone can/will open an issue in that Codeberg issue tracker above for Mitra and loop @pfefferle in too because I've got the distinct gut feeling that this problem is going to require an bug report at his plugin's repo too, considering it appears that Mitra AND Socialhome aren't capable of responding to an powered site with a reply to an article, and I've a sneaking suspicion this bug extends even further - probably into the space of , , perhaps and the Pleroma/Misskey families of forks too - sad.

So just checked a couple of other platforms - This is not good - replies show up on the platforms and notifications go out to all of those cc'd but.... Poof! the replies just go into hyperspace never to be seen again - They're NOT showing up as replies / comments to the WordPress articles!!! - I'm sure more than a few have already discovered this the hard and most frustrating way. Yeah I don't think that plugin appears anywhere near that of a release candidate now. I'm sorry I hyped it up so much, taking the word of others without putting my fingers in the Jesus holes myself.

I'm not saying that it's not worth using at all if it only supports masto, but it's certainly not of Fediverse grade (ActivityPub) worthiness to mention if it doesn't work with most powered servers.

I'm going to just let the powers that be attend to this matter. People get paid for this and I thought it was a well matured WordPress plugin by a salaried crew. I don't get paid for this and I do have paying work to do right now.

I guess I let my enthusiasm get ahead of me before bothering to actually thoroughly test it this time. I know for me, I won't be installing it on WordPress servers or advising people to do so until it actually works withthe majority of the plethora of , and not just masto, servers.

My work is done here - I really was enthusiastic about this, but that was apparently premature.

shoq, to HashtagGames
@shoq@mastodon.social avatar

Swilling Captain Beefheart IPAs at a very dangerous rate of consumption while singing “women like long neck bottles and a big head on their beer.”


tallship,

@atomicpoet @shoq

Run Paint, Run Run is still my fav Beefheart tune after all these decades ;)

.

tallship, to foss

@Teri_Kanefield

Hi Teri,

I'm writing you because I came across your blog site and thought you may be able to leverage the Fediverse in conjunction with your WordPress site's publishing horsepower.

As a #FOSS advocate with great enthusiasm for mass #Fediverse adoption, I'd like to suggest a couple of things for you to consider, and the following treatment can also benefit others who also have bridged over to the Fediverse that already have a WordPress installation, or have been looking to deploy one.

  • First, that you think about establishing a Fediverse account other than that of a stock Mastodon instance. Sure, keep your @Teri_Kanefield@mastodon.social account, just create another account for yourself on a platform that will afford you more options that can facilitate your creative freedom (let's not dissect that word, lolz) to publish posts that are in excess of a paltry 500 characters, along with things like Markup capabilities, Etc. Just a thought. ...

This leads into the next suggestion, ...

  • Second, why not make that account your existing WordPress blog, where you already have a permanent, branded presence and readership? Let's supercharge your WordPress site by making it a full and complete publishing platform completely integrated with the Fediverse.

There's a couple of methodologies, but generally speaking, once you install the ActivityPub plugin any future blog posts are on the Fediverse as well as any other distribution channels you may already have (say, by virtue of having installed the JetPack Social plugin that propagates into the deprecated silo networks).

One method I can recommend is to follow this basic procedure to popularize your blog posts and gain followers - just like you probably have been with the mastodon.social account you already have:

  1. ) If you've already created a new account on a more feature complete platform that's better suited for long form posting, inline images, Etc., like #Friendica, #Socialhome, any #Misskey or #Pleroma family fork platform, #Hubzilla, or #Mitra (They all have excellent Markdown support too); simply follow your #WordPress user account @<username>@terikanefield.com. If not, then simply follow your WordPress Fediverse user account from your existing masto account - which you should do anyway since I gather you have some respectable measure of followers.

2.) Everytime you publish a new news article / blog post on your WordPress site, you'll see it in your stream on your fediverse accounts.

3.) Boost each article from those accounts, your followers will see what you boost in their streams.

4.) encourage them to boost as well and/or comment - you'll see those comments in the reply section of each article on your WordPress site - Awesome!

5.) Now that you have followers of your WordPress user's Fediverse account you should be able to garner more direct interaction on your WordPress site, instead of having to post links to those posts from your mastodon.social account.

  1. ) From your @<username>@terikanefield.com account at your WordPress site, you can now directly interact with your followers, even those who post replies/comments to your articles, whether or not they are a follower of yours.

I'm taking the time to write because I see that you have a relatively decent circulation and engagement between readers and your blog articles, and the more people that see you engaging with others in the Fediverse directly from your WordPress site, the more people are encouraged to Join the Fediverse.

I am, as stated in my profile and also leading in to this, a FOSS and Privacy Advocate.

So here's a couple of links, one to the plugin itself - it's easy to install and deploy. Another older one that's still relevant that shows you how to do the install, and I think that's about it. We'll see ;)

  • WordPress ActivityPub Plugin - This is where you get the plugin
  • HowTo with Video - Really simple, easy install, right from your WordPress admin panel
  • JetPac Social - I'm definitely not a fan of this kind of engagement (with the privacy mining, deprecated, monolithic silo networks), but you do you - it can afford you with even greater reach through syndication, and if you write about the Fediverse, well, ... So much the better!
  • You should also consider following the magnanimous @pfefferle - one of the primary authors of the #ActivityPub_Plugin.

I hope that helps! All the best!

#tallship

.

tallship, to random
tallship, to random

Go Tommy, it's your birthday, Go Tommy, it's your birthday, Go Tommy, Go Tommy

- F(r)iends @TommyWiseau You can haz ! 🍔

.

RE: https://mastodon.social/users/TommyWiseau/statuses/102890475029012257

@TommyWiseau

tallship, to foss

Well... Reddit may not yet have been shown the door, but it has certainly been handed its hat.

Think about it. platforms such as the projects for Kbin, Mbin, Lemmy, Lotide, and now...

https://join.piefed.social/ and the repo is here: https://codeberg.org/rimu/pyfedi/

Be sure to check the Link below in the link that @jeze left and sign up!

Pretty kewl, IMO. Thanks for sharing Elley :) it looks really nice and I created an account for myself. Seamless federation with the others too - very nice :)

.

RE: https://kzoo.to/users/jeze/statuses/112168259370814891

@jeze

tallship, to fediverse

@ben If I read everything correctly, you indicated that it should be able to recognize WordPress sites that have the ActivityPub plugin installed, but I didn't try to plug any of those in.

It is reminiscent of Share to Any and a couple of others that used to aggregate almost all of the available share points in the old monolithic social spaces, like del.icio.us, Diigo, and the thirty or so others supported by that plugin.

I'm looking forward to seeing how your effort progresses though, and it would be kewl if you could post an Atom or RSS feed link to make that easy in the meantime, although I'll follow you now and hope not to miss any milestones :)

I did plugin many Fediverse platforms such as various Friendica, Mitra, Misskey, Iceshrimp, Hubzilla, Diaspora, Akkoma, Lemmy, Takahe, and Pleroma sites, but none of those were found.

masto is obviously low lying fruit, but the real measure, IMO, is breaking out into the at large (not just masto). Interesting though, and thoughtful, that you Support Threads and Bluesky. will you be following up soon with nostr as well?

Exciting work there! Thanks for sharing (no pun intended ;) well, maybe a little ).

.

RE: https://werd.social/users/ben/statuses/112170840438655254

@ben

tallship,

@bruhbeans

I'm looking forward optimistically toward a future where either:

  1. ) mastopub isn't mentioned with respect to networking at all
  2. ) people stop conflating masto with - They are not the same.

technically, might be a percentage of some sort in terms of traffic by MAUs with respect to mastotron - but not really; because it's a percentage of some sort in terms of traffic by MAUs with respect to Fediverse, and more specifically, ActivityPub traffic - NOT masto! Unless of course, one wishes to compare a single platform against another, but then it would usually be framed differently, instead of "as if" masto was the network itself, which it is not - it's just an aging Fediverse platform slowly, yet incrementally being marginalized as a goto buzzword, due to it's predatory nature with respect to other, better, older, and more feature complete Fediverse platforms, Including those operating over diaspora*, Zot6, ActivityPub, OStatus, Etc.

Oh, why is it, that Lemmy feels more vibrant, active, lighthearted, and even more powerful than mastotron?

Nevermind.... it doesn't matter. Coz if you think that's kewl, you should really check this out.

Oh, geez! Is that you? lolz....

Seriously though @rimu , Don't you think it's about time for to have it's own account that we can subscribe to via RSS or folllow? People really like it. People are really impressed. People ARE NOT saying things like this about it:

> I don’t like that the easy install instructions are longer than this blog post. I don’t like that the build failed after ten minutes due to a missing dependency because they couldn’t check for it before starting. I don’t like that restarting the build literally restarted from crate zero and rebuilt everything. I don’t like that the build failed fifteen minutes later trying to compile lemmy-schema because it ran out of memory, so I had to add swap. I don’t like that the build failed again another twenty minutes later trying to link lemmy_server because I didn’t add enough swap. Come on, man.

Attribution: https://flak.tedunangst.com/post/azorius-01

So yah, we were discussing PyFedi in the Fediverse-City Matrix room, and clumping together notions such as how your following assertion here has found a relevance that other 'similar' so-called link aggregators have eschew:

> PieFed - a federated forum, similar to Lemmy but written in Python

And indeed, even at merely the first glance, it looks a heckuvalot (sic) more friendly than just link aggregation, the lines begin to blur even further when you take a look at the fast and friendly NodeBB, not too dissimilar, but not as lightweight as PyFedi - Wait! Are we supposed be calling it something else? , perhaps? Are you undergoing a rebranding and just haven't renamed the git repo over at Codeberg yet?

Do please let us know :) Piefed has a lot of other FUN connotations, as both a play on words and also just falling off the tongue a little easier.

Yes back to the question of whether you feel it's the right time for your PyFedi project to launch its own Fediverse account - preferably, if I might be so bold as to suggest, NOT on a masto instance. After all, and like you said:

> Mastodon feels like a fucking funeral.

Indeed it does. I could recommend a couple of Good Mitra instances, put in a word for you on one of the dev's reference flagship intances, or Friendica is awesome too - very awesome, and unlike mastopub, it doesn't, "feel like a fucking funeral", lolz (as you sooo eloquently stated). It also interoperates seamlessly with and between Diaspora, Bluesky, Hubzilla/Zot, and the entire ActivityPub portions of the Fediverse. The Pleroma and Misskey family of forks have some nice offerings as well. I think a lot of people would find it refreshing if a new and refreshing federated forum/aggregator project with an enjoyable, clean and friendly feel had it's Fediverse presence somewhere other than a cemetery ;)

I predict a rapid rise in the deployment of instances. just look at the number of deployments as/of late, and before that - both are still enjoying accelerating adoption rates.

Yup! There's a lot of excitement and people are talking - thought you might like to know ;) And thank you for creating PieFed!

You can haz ! 🍔

.

tallship, to random

@mjj

Morten, I love quotes: Here's a fav from my personal collection that I thought would be a nice addition to your https://sagt.dk/ collection :)

> Ultimately, shit will happen. It also happens to fly farther when using tools.
> -Robbie Workman, May 19th, 2009, @20:31hrs (UTC -8) - LQ.

.

darnell, to random
@darnell@one.darnell.one avatar

@gabek The total numbers for Zuck & Mosseri include non-federating Threads accounts (the vast majority) & Threads accounts that have activated ActivityPub (a vocal minority).

Threads does not yet provide a way to distinguish between federating & non-federating followers.

Flipboard had a similar issue weeks ago before providing a way to distinguish between either.

tallship,

@darnell @gabek

And it seems after a few discussions with Mike, that he's earnestly seeking to make Flipboard's ActivityPub integration consistent with being a "Good Fedizen" in mind. I can't say the same for Threads, it's more of a Veni Vidi Vici kinda feel.

gabek, to random

My heart broke when I saw this. I’m so sad right now. https://fedidb.org/popular-fediverse-accounts

tallship,

@gabek @gcrkrause

!

I love perusing the various stats, and this particular one left me with that pain in your side from serious gufaw gufaw's, ... Sulu outranks Eugen - now THAT, is fricken' funny! And he's also organically ranked above @gargron too, lolz.

Now, the sad part about this, and one would need to have been a Fedizen going back for a few years, is that as a techno early adopter, was summarily and relentlessly flogged and ridiculed until he was driven from the Fediverse by selfish, jealous little children here in the Fedi about 5 years ago.

I mean, sure, Wesley Crusher was a total goombah on , while is a superhero from , yet in real life, was among the first generation of (albeit, minor) celebrities to embrace and the , and our local stable of miscreants (every social network has them) hounded, maliciously trolled, and harassed him until the only conclusion that could be arrived at was that the Fediverse is a hostile environment not worthy of belonging to.

That really angered me, but at least everybody loves :)

.

AkaSci, to random
@AkaSci@fosstodon.org avatar

Flatline, a new powerful campaign Ad from the Biden-Harris 2024 team on the 14th anniversary of the Affordable Care Act aka Obamacare.

"When he was president,
Donald Trump tried to rip away our health care.
He failed. But he is coming back for it.
He will take away health care from people with preexisting conditions.
He will take away health care from people with diabetes.
He will take away health care from people with asthma.
...
"
https://www.youtube.com/watch?v=l5yoe4KYuhw
1/n

tallship,

@AkaSci

20 million, out of a total population exceeding 320 million?

What am I missing here, when (I was informed that) everyone is supposed to register there annually?

I could very well be mistaken, but does that reflect that 300 million American citizens have either medical insurance policies through their employers or pay for insurance completely out of pocket?

And, either way - that number going up by five million from the previous year seems to indicate a pretty significant economic downturn. Yeah, seems to follow a pattern of increasing enrollments by about 2 million a year for the past three years, mirroring the downward economic trend since the 2020 federal elections.

Or am I reading this wrong?

linux_mclinuxface, to Redis
@linux_mclinuxface@fosstodon.org avatar

Welp. It's official. is no longer

While I wasn't a contributor to the core, I presented on it dozens of times, talked to thousands, and wrote a book about it.

I probably wouldn't have done any of that with that kind of license.

Very disappointed.

tallship,

@alex @linux_mclinuxface

From my PoV, it's certainly a license that's preferable to that of BSD or MIT. There's a solid reasoning behind this HERE.

After all, even Tanenbaum himself was surprised to discover that MINIX is the most ubiquitous of all operating systems:

> "I guess that makes MINIX the most widely used computer operating system in the world, even more than Windows, Linux, or MacOS."

The SSPL being akin to that of the AGPL avoids that sort of dreadful situation, ensuring protections for the end users that not even the GPL affords them where is concerned ;)

.

shoq, to random

Or will it thread without one? {testing}

tallship,

@tallship @tallship @julien

Markdown published on NodeBB is preserved surprisingly well on Mitra, including the H3 heading. The bullets in the unordered list look really nice too.

Included is a screenie of what it looks like from both sides of the interaction between and a typical platform instance.

I can haz ? 🍔

jon, to Vivaldi
@jon@vivaldi.net avatar

We at @Vivaldi continue to be the only browser company all in on Mastodon and the Fediverse.

We have made our own instance, Vivaldi Social. Any user that has a Vivaldi account for sync or other services, can easily enable a presence on Vivaldi Social.

We have integrated Mastodon as a Web panel into Vivaldi.

We include links to Vivaldi Social into Vivaldi.

We also work on integrating our blogs and forums into the Fediverse.

We hope others will follow. Mozilla has talked a lot and we hope they will join us fully soon.

tallship,

@jon @Vivaldi

You're doing great things Jon, and the longer Mozilla takes to embrace the the better it is for .

But there's some glaring misgivings here that are often raised by people. Half the isn't mastopub - you should really consider replacing that icon in the panel with the Fediverse Logo, or even the ActivityPub Logo instead of the one you've currently got in that sidebar - It's quite misleading, and people who prefer using the more full featured and capable Fediverse platforms such as Friendica, Mitra, Socialhome, GoToSocial, Takahe, The Pleroma and Misskey families of forks, smolweb Fediverse platforms like Bovine, SNAC, Tapir, and many more, ... These stalwart and people shouldn't have to look at some exclusionary elephant logo that completely misrepresents and dismisses the fact that the masses of these people don't even use that platform.

These Fedizens most certainly should not feel forced into being pigeonholed into an association, in front of others, which implies that they use masto.

Here's an example of what our diverse world of 's looks like - that elephant thingy really only offers an homage to one single platform, losing user market share more rapidly each day, in favor of a better and more complete user experience with superior networking facilities.

Wishing you and the team all the very best, and looking forward to seeing the in that sidebar that more accurately represents the community at large, and is also much nicer looking :)

I hope you continue to shepherd the trailblazing innovation that Vivaldi has shared and introduced, and join now with the trending wave of sites replacing that tired old elephant graphic for either of the logos that more closely and accurately represents the unifying inclusivity and diversity indicative of the residents in our Fediverse.

.

tallship, to random

Really now, why do people stubbornly adhere to the belief that Government entities require warrants to determine anything about you - like, where you are at this particular moment or the GPS coordinates of your location last Tuesday at 17:42hrs UTC? ... And pretty much anything else you can dream up about yourself: The content of conversations with others, everything you've purchased at anytime, what you are likely to eat for dinner this coming Friday, your medical records; you name it!

All without a warrant, even for local law enforcement.

And why would they bother, when they can just buy it from the companies that you already gave it to for free?

.

RE: https://fosstodon.org/users/RTP/statuses/112018299149948961

@RTP

tallship, to random

I loved this photo so much I just had to rip it from National Geographic Magazine and post it here in the fedi - Attrib is in the alt-text.

It looks like two medusae (is that correct spelling of the plural) making whoopie, in brilliant colors. the filename is actually brain-original-render_transparent-background-black_4x3.avif

Note that it's a .avif file - if you don't see it on your type of Fediverse platform you should click through to the original coz it's a truly brilliantly colored image. I thought about converting it but didn't bother.

I think it's supposed to represent the two hemispheres of the brain and associated neuralnetwork, but as soon as I noticed that I had hit a paywall I just ripped the image and moved on w/o subscribing to reading the article, the link to which is in the alt-text.

I hope you enjoy it as much as I do!

.

tallship, to random

Prolly explains why, everytime I felt burnt out and sought out a different career path, then threw the switch and continued to clackity clackity clack down that other track...

I always came back. In fact, Looking back, it should have been obvious - why would someone go to bed with a technical journal or some textbook on IT by choice when they've left (or so they thought) that career for a new and unrelated one?

https://pa2.freeshell.org/pa2/Retirement/Retirement.html

h/t to @pa2 for sharing :)

.

tallship, to random

05:44hrs, I haven't even had breakfast yet, and already, I'm thinking about this - Supper for breakfast, anyone?

.

RE: https://pixelfed.social/p/tallship/671500052801714699

@tallship

forsaken, to random

What do you think the future of XMPP will be like? I think it might be the protocol I enjoy using the most

tallship,

@forsaken

> What do you think the future of XMPP will be like? I think it might be the protocol I enjoy using the most

Interesting, and refreshing, to see optimistic XMPP thoughts on, I guess, adoption? After 25 years?

People have been proclaiming the death of Jabber/XMPP for many a moon, yet its utility and existence just below the surface of mainstream awareness remains healthy. Yes, it is sometimes thought of as long forgotten, and no, it's not losing any um, ... Market share, so to speak.

For most things, and especially as a chat/communications platform between people, I migrated away and onto other solutions, leaving it alone and largely dormant for nearly two decades; yet it has always been part of my infra - mostly just between me and machines I've managed (notifications mostly).

I think part of the reason for it being so summarily dismissed was due to the rise of things like AIM, YIM, etc., and its perceived 'death knells', following Google's choice to (at least publicly) migrate away from it in the course of killing some of their public services.

More significantly however, IMO, were the abhorrently ugly and unintuitive UIs most chat clients sported - I'll call that era the time when XMPP clients mostly appeared like something you'd see on Angelfire or GeoCities web pages - before the MySpace and subsequent early Faceplant years following the breakage of the Pimp my Myspace page phenomina.

Like Samuel Clemens, once stated, ... "The report of my death was an exaggeration." If XMPP were itself able to express such sentiment, I believe it certainly would, lolz.

XMPP is simple to use, fast, secure (not by default), and by creating a situation where the user is transparently ignoring the JID + "/resource" and numerical priority that served to constantly confuse laypersons with multiple devices, the neo-adoption of XMPP and the introduction of 'pretty' clients has to a large degree, made it seem as if XMPP is something that is rather novel in the communications (chat) sector.

Clients like Conversations, at least on the #Android platform, have enabled this renaissance. There's also more desktop clients that sport a good look (pretty), offering an intuitive UX.

Is it going to be the next great thang? Doubtful. As @silverpill stated:

> I think It will remain a small network, unless something really bad happens to matrix (its main competitor).

... There's that elephant in the room.

On the other hand, for those of us who were early adopters of the hopeful #Matrix protocol, the promise hasn't quite been realized as expected, and further, it's been rife with disappointments - How many times have I myself integrated Matrix into system monitoring infrastructure only to feel that dissapointment?

XMPP doesn't offer me that - it works, every fucking time, fast, and I need it fast. I need to be able to call my customers and tell them that there's a problem and that I'm working on a fix before they even know there's a problem. I can plugin Zabbix, Observium, Nagios, Cacti, #NetFlow, etc., and when I hear that cacaphony of an alarm in the middle of the night, know that I need to get out of bed and start putting out fires.

I use Matrix - daily, all the time. But when people close to me ask which one of my non-email contact methods is best (besides actually calling me on the phone), I let them in on a little secret - "If you really need to get a hold of me, like, right now, and want my undivided attention when some IM pings me, then use my Jabber address". It's the first thing I check when I wake up, and I don't even usually check Matrix (it's mostly just for discussions and private chats nowadays anyway in my work flow).

Do I care if it's going to be the next great thing? Well, I prolly, when thinking about it, would prefer that it not be - Here's why:

  • Mass adoption by my friends and colleagues who I converse with would only serve to dilute the priority to which I assign my #XMPP communications
  • Migrating from Matrix (or something else) to XMPP for my virtual social interactions would prolly spur me towards wishing I had a dumb beeper again on my belt, lolz.
  • Sure, I can take advantage of different JIDs/resources, and even install separate XMPP clients if I wished, but managing different alert sounds, etc., and, ... Basically just complicating something that is so simple and effective the way I use it now kinda defeats the purpose of having a (mostly) dedicated interface between me and my boxes :p

Well, that's my 2 cents ;) and of course, my XMPP addy is in my profile if someone wants a priority chan to rattle my cage - but please do use #OMEMO as a matter of practice, even untrusted e2ee is better than clear text and I believe that we should, whenever practical, use encryption by default....... because. Just because :)

#tallship #FOSS #chat

.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • Leos
  • tacticalgear
  • magazineikmin
  • thenastyranch
  • Youngstown
  • slotface
  • everett
  • InstantRegret
  • vwfavf
  • kavyap
  • tsrsr
  • mdbf
  • PowerRangers
  • DreamBathrooms
  • cubers
  • khanakhh
  • hgfsjryuu7
  • ngwrru68w68
  • Durango
  • cisconetworking
  • rosin
  • osvaldo12
  • tester
  • GTA5RPClips
  • ethstaker
  • modclub
  • normalnudes
  • anitta
  • All magazines