Some time ago I created a chat that uses the same principles, it's funny to have some ideas validated by something that has been around for over 20 years and that I didn't know existed.
Because your mom and your grandma went and got Facebook accounts, since it was easier to share baby photos that way. And then everyone just used that to chat with mom and we neglected the old systems.
There is an implicit assumption that average mom and grandma were out there using message groups. Either that or you are gate keeping moms and grandmas out of the internet. I am going to assume the former.
Myspace proved social networking worked. Facebook made it easy for non-techies and kicked off the status game. Instagram locked in the dopamine loop. TikTok perfected it.
The internet grew because it got commercialized, which also meant dumbing it down for non-technical people. Funny how that same growth created most of the wealth enjoyed by people posting on YC. Always makes me chuckle when I see good old days of the internet nostalgia here.
Facebook made it easy for non-techies and kicked off the status game.
That's all I was trying to say. trn was a bit of a learning curve for moms and grandmas. And they pulled the rest of us along into using Facebook and other social media and leaving USENET behind. No gatekeeping or whatever you're going on about here.
Over 40 more like. USENET was quite mature in the early 1980's.
Indecently, the decline in the popularity of USENET makes it much less useful for anonymous messages; it's much easier to conduct traffic analysis amongst relatively few users/nodes [1] than it was back in the mid-to-late 1990's when USENET was at its peak and every ISP provided a feed. These days you will stand out if you have (or request) a USENET feed. Back then, it was the norm to have one.
[1] Yes, traffic volumes have increased (primarily due to sharing binaries rather than text), but the number of active users/nodes has certainly declined.
Those flying the Jolly Rodger. Filter out the binary newsgroups (leaving only the text discussion groups) and the resulting load is a tiny fraction of that.
If you control the Usenet servers then you control what gets synchronized to your servers. If you filter out the binary groups they will never traverse your network connections to your servers.
I run a text-only Usenet server. As a sibling commenter says, you work out with your peers what you want to receive. I carry most of the text newsgroups, and according to my daily report I got about 3000 new messages yesterday totaling a bit over 9 MB.
To overcome the hoarding I use Simple Tab Groups[1], that has auto backup, combined with Auto Tab Discard[2], to completely inactivate open, but unused, tabs.
Is useful to do code generation/transformation, for example in this utility[1] it uses the information provided on the declaration of the class to generate the methods required by the base class.
The user of the utility write this:
class Book(objects.Object):
title: Optional[str]
And the generated class code is:
class Book(Base):
__slots__ = ('title', )
title: typing.Optional[str]
def __init__(self, title=None):
self.title = title
@classmethod
def from_data(cls, data):
title = data.get('title', None)
return cls(title=title)
def to_data(self):
data = {}
if self.title is not None:
data['title'] = self.title
return data
@classmethod
def from_oracle_object(cls, obj):
return cls(title=obj.title)
def to_oracle_object(self, connection):
obj = connection.gettype('Book').newobject()
obj.title = self.title
return obj
C++ Is NOT 9.4 Times Faster Than Python in Prime Number Test
I added 3 lines to the Python code and got it 10x faster:
(venv) $ python prime.py
Number of primes between 0 to 1000000 = 78498
Elapsed time: 6.502481937408447
(venv) $ python prime.py
Number of primes between 0 to 1000000 = 78498
Elapsed time: 0.6258630752563477
Actually some time ago I found some piece of alien PHP code (a backdoor) in my server, and I couldn't understand it! I did't know the $($); syntax.
After searching for that and not finding anything I discovery that exist one special Unicode character that is invisible.
https://github.com/domingues/vortex/