Salta al contenuto principale



As Trump moves to hit China with a 10 percent tariff, China punishes the US with a brutal counter-tariff on key US exports





I don't understand the purpose of some selfhosting


Selfhosting is useful when you either need a lot of storage or a lot of processing power. For example, Kiwix is useful to selfhost on a server because a lot of its content can take up terabytes of storage, which a phone may not have. LLMs are also useful to selfhost because they require a degree of processing power that, again, a phone may not have.

In both cases, there is also a need for perpetual access. If you simply hosted an LLM on your home computer, it wouldn't be very useful to access from your phone since your computer won't be running all the time. So, a separate always-on server is needed.

However, there are some selfhosted software that I don't see a use for. For example, Immich. Immich requires to be run on a server to function, but a lot of (or even all) of its functions are things that could reasonably done entirely on-device. Aves combined with some automatic backup solution such as Nextcloud gets (from what I can tell) most of the functionality Immich offers. Obviously, some features like AI image tagging are missing, but you get the point. AI image tagging is also something that could be run on-device as well, since it's mostly lightweight (iPhones are capable of it). Having a setup like that also comes with the benefit of automatic backups being completely optional, rather than required.

There's no reasonable need for extra storage or extra processing power needed for that use case, from what I can tell. (Disclaimer: I haven't actually used Immich before, so this is speculation. I apologize if I'm missing something obvious) There's a lot of other selfhosted tools like spotDL which have a selfhosted web UI, but no GUI that can be installed outside of a web browser.

I guess my question is why there are so many selfhosted tools that unnecessarily require being run on a separate device. I do understand the legitimate use cases some of them have, but others seem better off on-device airgapped. This especially became an issue trying to find a notes app for Android that requires no account and runs fully locally, or an RSS reader that loads from the device itself. I found Joplin and Feeder or Read You as the software for each of those. I don't like "server-based" selfhosting for things that could be done from the device itself.

I'm sorry if this turned into a rant. If someone could help me understand, I would appreciate that very much.

Cheers!

in reply to The 8232 Project

I run my own server for a simple reason: it means owning my social media presence.

I own my content, my audience, and who I federate with.



Secret 'BADASS' Intelligence Program Spied on Smartphones




Problems with my domain, docker, caddy and thingsboard. Need help networking/routing!


Hi!
I have a server with static ip, that runs docker with caddy and thingsboard (iot dashboard).
I have my domain, that points to the servers ip (both ipv4 and ipv6). (I tried using with "www" and with wilcard "*" in the A and AAAA records)

Thingsboard can be reached in the browser via ip:8080, or domain.com:8080 (or with the wildcard "*" set in DNS records with (anything).domain.com:8080). It is set up this way by the creators, where i got the compose file (without caddy) guide here. So i guess no routing is done via caddy.

the caddyfile looks like this:

thingsboard.domain.com {
    tls internal
    reverse_proxy thingsboard:8080
}

Thingsboard cant be reached via thingsboard.domain.com which i would be expecting with this config. Below is the compose file.
They are all part of the same docker network (they get listed when i inspect the network).

some specific questions:
- how do i have to setup my dns records, so that all requests to any subdomain get send to caddy and i can do all the routing (from the subdomain to the service) in caddy? What am i missing in the caddyfile
- can i deactivate the port from the thingsboard container, so it cant be reached via the port from "outside" only from inside the docker network, by caddy?
- why am i struggling so much with this basic docker and networking stuff "docker is easy, you should try it" 😁

Thanks a lot for reading, i hope someone can help! I dont know what to search for to get this working, networking stuff is still a blurr.

Here is the docker compose file:

services:
  caddy:
    image: caddy:latest
    container_name: caddy
    restart: unless-stopped
    cap_add:
      - NET_ADMIN
    ports:
      - "80:80"
      - "443:443"
      - "443:443/udp"
    volumes:
      - /srv/caddy/Caddyfile:/etc/caddy/Caddyfile
      - /srv/caddy/site:/srv
      - caddy_data:/data
      - caddy_config:/config
    networks:
      - caddy_network


  kafka:
    restart: unless-stopped
    image: bitnami/kafka:3.8.1
    container_name: kafka
    ports:
      - 9092:9092 #to localhost:9092 from host machine
      - 9093 #for Kraft
      - 9094 #to kafka:9094 from within Docker network
    environment:
      ALLOW_PLAINTEXT_LISTENER: "yes"
      KAFKA_CFG_LISTENERS: "OUTSIDE://:9092,CONTROLLER://:9093,INSIDE://:9094"
      KAFKA_CFG_ADVERTISED_LISTENERS: "OUTSIDE://localhost:9092,INSIDE://kafka:9094"
      KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP: "INSIDE:PLAINTEXT,OUTSIDE:PLAINTEXT,CONTROLLER:PLAINTEXT"
      KAFKA_CFG_INTER_BROKER_LISTENER_NAME: "INSIDE"
      KAFKA_CFG_AUTO_CREATE_TOPICS_ENABLE: "false"
      KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: "1"
      KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: "1"
      KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: "1"
      KAFKA_CFG_PROCESS_ROLES: "controller,broker" #KRaft
      KAFKA_CFG_NODE_ID: "0" #KRaft
      KAFKA_CFG_CONTROLLER_LISTENER_NAMES: "CONTROLLER" #KRaft
      KAFKA_CFG_CONTROLLER_QUORUM_VOTERS: "0@kafka:9093" #KRaft
    networks:
      - caddy_network
    volumes:
      - /srv/thingsboard/kafka-data:/bitnami
  mytb:
    restart: unless-stopped
    container_name: thingsboard
    image: "thingsboard/tb-postgres"
    depends_on:
      - kafka
    ports:
      - "8080:9090"
      - "1883:1883"
      - "7070:7070"
      - "5683-5688:5683-5688/udp"
    environment:
      TB_QUEUE_TYPE: kafka
      TB_KAFKA_SERVERS: kafka:9094
    networks:
      - caddy_network
    volumes:
      - /srv/thingsboard/.mytb-data:/data
      - /srv/thingsboard/.mytb-logs:/var/log/thingsboard



\#general networks
networks:
    caddy_network:
      driver: bridge
      ipam:
        config:
          - subnet: 172.20.0.0/24


\#general Volumes:
volumes:
  caddy_data:
  caddy_config:
  kafka-data:
    driver: local
Questa voce è stata modificata (2 giorni fa)


in reply to Melatonin

"We accept these people, but we will no longer do business with the US" would have been nicer.

The coup would come swiftly after that..

Questa voce è stata modificata (1 giorno fa)
in reply to Melatonin

That was a whole lot of fluff. Very poetic, but ultimately empty.


Sweden seizes vessel suspected of 'sabotage' in undersea data cable rupture


Swedish prosecutors announced Sunday night that they have opened a preliminary investigation into suspected aggravated “sabotage” and ordered the detention of a vessel in the Baltic Sea suspected of damaging an underwater fiber optic cable connecting Latvia and the Swedish island of Gotland
in reply to perestroika

Didn’t something similar happen just a couple months ago?
in reply to Badland9085

This is around the fifth in a year or something. Last one was the Eagle S on Dec 25th


Hollywood is about to face its greatest enemy ever: itself


Last year we saw Mickey Mouse going public domain and now every year more and more talkie movies are going public domain too. The talkies began in 1928, and I would say they got very close to what we have today in about 1934 or 35.

That means that every year people will have hundreds of "new" releases on public domain, making paying for watching new movies unnecessary. One thing is preferring the new movies when you have to pay both for new and old movies. Another thing is paying for new films when you have hundreds of old movies as good as the new ones (or better) for free.

I don't know about you, but I could spend the rest of my life watching public domain classics, no problem. For instance, I read a dozen books last year, only two of them were less than a 100 years old.

I would say Hollywood is in a pinch right now, something that will make them miss the days when their biggest enemy was piracy.

in reply to Joejoe582

Method Acting (which is a pretty powerful Acting technique for getting actors to genuinely feel the emotions of the character) dates back to the 60s in Movies (it dates back even longer to Stanislavski in 19th century Russia, but its popularity really took off mid 20th century) so before that actors were just faking it whilst after that it will be more and more them reacting genuinely to imaginary circumstances (in terms of the audience it means we will actually empathise with what's hapenning to the character because the emotions on display are genuine).

So the quality of the acting in the kind of Films that are now coming into the Public Domain will be lower than what we are use to (though in stuff like Comedy and certain kinds of Action it's seldom noticeable).

And this is before we even go into the quality of the Production (in audience terms, how believable are the scenarios).

I doubt Hollywood will be threatened by this for at leat a couple of decades.

Questa voce è stata modificata (1 giorno fa)
in reply to Joejoe582

Another thing is paying for new films when you have hundreds of old movies as good as the new ones (or better) for free.


Yeah, no. Movies made in the past, say, 20 years, are WILDLY different from the ones made 90+ years ago. I'm not talking about technology, image quality or special effects, I'm talking about cinematography (shot composition and camera angles), acting and the kinds of stories that they're trying to tell. Some stories are classics and timeless, but not all of them are, many are a direct byproduct of the historical context in which they were created, thus serving as interesting glances into the past.

If all you end up watching are these movies, you will get alienated from the world you actually live in. For instance, I bet there isn't one of those public domain movies that portrays native americans as anything other than uncivilized, tent-living indians; or any movie that attempts to portray, even somewhat respectfully, the struggles they had to endure against european descended settlers. Movies that don't shy away from showing some grim, dark realities? Not gonna be in public domain for another couple decades.



What tech skills are needed to host Fediverse platforms for a community of people?


I'm ready to completely jump in to using decentralized, federated platforms, however most people I know aren't fully there. It strikes me that this moment in time, where a lot of people are newly actively aware and frustrated by Meta and Twitter's actions, is ideal to get people to switch over to new platforms.

To encourage people in my community to join platforms on the Fediverse, I want to host instances of various platforms (probably Mastodon and Pixelfed to start with). Having a specific instance on these platforms to point people towards would probably help a lot of the folks I know get on board.

However, I'm scared I'm not knowledgeable enough to admin these public instances for others. I know some basic networking, I self-host a bunch of stuff with Docker on an old laptop, and I definitely am smart enough to figure out how to start up instances of these platforms. However, I'm mostly concerned with whether I'd be able to properly maintain and secure these instances. I wouldn't want people to be soured on decentralized social media just because I don't know what I'm doing.

Any thoughts, words of encouragement, tips, warnings, etc. are welcomed!

Questa voce è stata modificata (2 giorni fa)
in reply to Evkob (they/them)

There's also Managed Hosting: Hosting a Fediverse instance (a list of providers): "However, there are hosting companies that can take care of the installation and technical maintenance for you. You get a pre-installed application, mainly Mastodon, which is also technically maintained. You yourself are an admin and can do some things in the application’s admin menu, such as manage your own users. This way, you can also allow a larger group of people to access the Fediverse."
in reply to Blaze

Are you sure this is a serious offer?
This seems suspicious to me: "If you do not want or do not care about having your own server, but still want to be part of the fediverse. With these service packages you get an account at our flagship instances at a low cost. Share a group package with your friends and make it even cheaper!"

Do I understand correctly that you have to pay 29.99 just to get an account on their "flagship instance"? or how is it to be understood?

Questa voce è stata modificata (1 giorno fa)
in reply to Evkob (they/them)

I'm very comfortable in Docker and honestly most of the software out there in the Fediverse is weird. Like they make containerized deployments much more convoluted than they are supposed to be.

GoToSocial is maybe the least bad that I've tried so far. Most of the more popular ones are, IMO, really really bad on this front.

I've had their Stans counter this but then they point me to the process that they followed and it's like something out of a Hogwart's spell book compared to what most self hosted containerized apps are like.


in reply to Melatonin

Even after all these years, I physically cringe every time I read "ReTruths"
in reply to Melatonin

To be clear, Colombia already backed down and accepted all the demands. Which is unfortunate but not surprising. Starting to get "Just give Hitler what he wants and he'll stop" vibes. Surprised folks didn't learn their lesson...

in reply to robocall

No but I might be like that with self hosting stuff.

People care about Spotify, but not their own private Spotify, does not compute!



Poll Suggests Libs Nearly Tied with Tories




Help my kids , please share and donate if you can ❤️🙏🏻


Donate


Advice Wanted - Migrating close family to Friendica


Hey folks, most of you probably have seen me around, I'm coming up on 2 years here and big believer like most of you. With the downfall of FB and Meta I have a lot of family who are genuinely interested in what I described as "A private way for us to share photos and updates, like we used to before FB... you know", and there was genuine positive feedback.

Next I set up friendica, and so far I'm happy, I think it'll do. Solid local sharing and privacy for sharing family specific things - but that's the easy part. The hard part is now how do I convince people to join - and harder - stay.

A lot of my tech friends want to do something similar, I think small family oriented instances like this could be great! However, how do I explain what else there is to offer to family who, let's all be real, do not want to hear an explanation of the fediverse? How can I word it in the most basic of ways without also sounding boring? That's the real kicker. Interested in opinions

Questa voce è stata modificata (3 giorni fa)
in reply to Scrubbles

I love Friendica and I manage a Friendica instance that is developing very well. It is a feature-rich software, certainly the most complete software among the social networks of the Fediverse. However, I do not hide from you that it has several defects of an ergonomic nature that do not facilitate its adoption. It is not a point and shoot social network, like Mastodon, but it requires a bit of patience.
The learning curve is steep and the mortality of users is very high, but if you get past the initial phase of disorientation, it becomes impossible to do without it.
So remember that the most important requirement for using Friendica is not to be in a hurry!
In my opinion, you are right to invite your friends, acquaintances and family who frequent Facebook, but do not expect their enthusiasm. And for those who mainly use Twitter, I recommend that they go to Mastodon!
Finally, I hope that you will like a guide to Friendica that I have prepared in Italian, which should be easily translatable with any automatic translator

informapirata.it/2024/07/25/w-…


La guida di Informapirata a Friendica, dedicata a tutti coloro che dal Fediverso vogliono ottenere tutto il possibile.

Un Mastodon con gli steroidi e attualmente l’unica alternativa a Facebook di tutto il Fediverso. Con mille pregi e, soprattutto, mille difetti. E mai nessuno che ci spieghi come utilizzarlo.
Almeno finora…

informapirata.it/2024/07/25/w-…




Social Web Devroom Volunteers


Are you coming to FOSDEM 2025 to attend the Social Web Devroom? Do you like helping make things happen? We need volunteers to help with the audio/visual (A/V) system (no experience necessary), to answer questions at the door, to coordinate questions, to k

Are you coming to FOSDEM 2025 to attend the Social Web Devroom? Do you like helping make things happen? We need volunteers to help with the audio/visual (A/V) system (no experience necessary), to answer questions at the door, to coordinate questions, to keep time for the speakers, and otherwise keep things moving smoothly. Reply here if you’d like to help out, or email social-web-devroom-manager@fosdem.org .


FOSDEM 2025 – Social Web Devroom – Call For Participation


The Social Web Foundation is pleased to announce the Social Web Devroom at FOSDEM 2025, and invite participants to submit proposals for talks for the event.

FOSDEM is an exciting free and open source software event in Brussels, Belgium that brings together thousands of enthusiasts from around the world. The event spans the weekend of February 1-2, 2025 and features discussion tracks (“devrooms”) for over 140 different technology topics.

The Social Web Devroom will take place in the afternoon of Saturday, February 1.

Format


There will be two available talk formats:

  • 25 minutes – for bigger projects, followed by 5 minutes of questions.
  • 8 minutes – lightning talks on smaller or newer projects, in groups of 3, followed by 6 minutes of combined questions for the group.


Topics


The Social Web Devroom is open to talks all about the Social Web AKA the Fediverse, including:

  • Implementations of the ActivityPub protocol or ActivityPub API
  • Clients for ActivityPub-enabled software like Mastodon
  • Supporting services for the Fediverse, like search or onboarding
  • ActivityPub-related libraries, toolkits, and frameworks
  • Tools, bots, platforms, and related topics


Important dates


  • Submission open: 1 Nov 2024
  • Submission deadline: 1 Dec 2024
  • Acceptance notifications: 10 Dec 2024
  • Final schedule announcement: 15 Dec 2024
  • Devroom: 1 Feb 2025


Submissions


Submit talk proposals to pretalx.fosdem.org/fosdem-2025… . Select “Social Web” from the “Track” dropdown, and include the length of your talk (8/25) in the submission notes.

Code of Conduct


All attendees and speakers must be familiar with and agree to the FOSDEM Code of Conduct fosdem.org/2025/practical/cond….

Contact


Questions about topics, formats, or the Social Web in general should go to contact@socialwebfoundation.org.




Pikapods.net inaccessible via Xfinity/Comcast


Been running pikapods for about a month for FreshRSS and just today it stopped working. After some troubleshooting, it looks like xfinity/Comcast is flagging pikapods as a risk through their "Advanced Security" feature through their hardware. The only way I could permanently get through it was to disable the advanced security setting. Just FYI if anyone has similar issues.

Edit: its just the configured pod address to the FreshRSS server that was inaccessible. The main pikapods.net site was still accessible. This is with valid SSL certificates, and on multiple devices, and only on the WiFi network that I use. It was completely accessible via mobile network.

Questa voce è stata modificata (2 giorni fa)


Trump imposes tariffs, sanctions on Colombia after it refuses deportation flights


"The U.S. cannot treat Colombian migrants as criminals," Petro wrote.
Petro said even though there were 15,660 Americans without legal immigration status in Colombia, he would never carry out a raid to return handcuffed Americans to the United States.
"We are the opposite of the Nazis," he wrote, in a jab at Trump.
Mexico also refused a request last week to let a U.S. military aircraft land with migrants.
in reply to Riddick3001

I wish the lunatics voters that support this would realize how expensive each of these flights are, at tax payers expense! Easily $30k per flight and Trump is aiming for thousands of these flights!
in reply to ansiz

I heard $800,000 with about 80 people per flight. Good and cheap!
in reply to ansiz

If you're into blaming your troubles on poor people and punishing them for it then it's a good deal I guess.
in reply to fine_sandy_bottom

Yeah, I believe this is what goes on in the minds of many people. They are single issue voters.
in reply to ansiz

I wish the lunatics voters that support this would realize how expensive each of these flights are, at tax payers expense!


I see that the US finally got a taste of the Rwanda plan.




Relaunching PeerTube.wtf


cross-posted from: lemmy.wtf/post/15733096

cross-posted from: lemmy.wtf/post/15732861
First of all, let me apologize to those people who was affected when PeerTube.wtf initially went down.

I've been working this past month on building and setting up a fresh version of PeerTube.wtf and this time, I won't be relying on decentralized storage 🙃 🙃 🙃

I've been reading a couple of threads on Lemmy, to better understand what people want expect to be able to do on a PeerTube server, so here goes:

  • PeerTube.wtf is a platform for general use. Every topic is welcome.
  • The Global Search Index is enabled. This means that the search bar will show results from almost 900 PeerTube servers.
  • Remote URI/handle search is enabled. This means, if you know the URL/handle of a channel, that's not part of the Global Search Index, you can still find it via the search bar and subscribe to the channel.
  • The Public Index is enabled. This means that PeerTube.wtf will federate with almost a 1000 PeerTube servers.
  • Audio-only, 360p, 720p, 1080p and 1440p is enabled. This means that videos uploaded, is provided in these resolutions.
  • Video transcription is enabled. Will Automatically create subtitles for uploaded/imported VOD videos.
  • Live streaming is enabled. Streams are transcoded in 720p and 1080p at 60 FPS.
  • A user has 100GB of storage. This is obviously not sustainable, but is subject to change.

FAQ

.wtf?

Yea, it stands for "What The Fediverse". What else could it possibly stand for, that sound as cool?

Where is the server hosted?

It's hosted in Denmark, at my residence. I have 100% ownership and control over it.

What's your specs, bro?
The server is assembled inside an Inter-Tech 2U-2404S, with a:
- AMD Ryzen 3 1200 @ 4 cores
- 16GB of RAM
- nVidia Quadro P600 (hardware transcoding)
- 2x120GB SSDs in raid 1 for OS
- 2x4TB HDDs in raid 1 for the video storage

4TB of storage ain't much

That's true, but I will be upgrading the disks eventually.

Why no 4K??

4K takes a lot of space and the majority of users don't have a 4K monitor. In the future, it might change.

I've probably forgotten something, but yea.. Enjoy.



Relaunching PeerTube.wtf


cross-posted from: lemmy.wtf/post/15732861

First of all, let me apologize to those people who was affected when PeerTube.wtf initially went down.

I've been working this past month on building and setting up a fresh version of PeerTube.wtf and this time, I won't be relying on decentralized storage 🙃 🙃 🙃

I've been reading a couple of threads on Lemmy, to better understand what people want expect to be able to do on a PeerTube server, so here goes:

  • PeerTube.wtf is a platform for general use. Every topic is welcome.
  • The Global Search Index is enabled. This means that the search bar will show results from almost 900 PeerTube servers.
  • Remote URI/handle search is enabled. This means, if you know the URL/handle of a channel, that's not part of the Global Search Index, you can still find it via the search bar and subscribe to the channel.
  • The Public Index is enabled. This means that PeerTube.wtf will federate with almost a 1000 PeerTube servers.
  • Audio-only, 360p, 720p, 1080p and 1440p is enabled. This means that videos uploaded, is provided in these resolutions.
  • Video transcription is enabled. Will Automatically create subtitles for uploaded/imported VOD videos.
  • Live streaming is enabled. Streams are transcoded in 720p and 1080p at 60 FPS.
  • A user has 100GB of storage. This is obviously not sustainable, but is subject to change.

FAQ

.wtf?

Yea, it stands for "What The Fediverse". What else could it possibly stand for, that sound as cool?

Where is the server hosted?

It's hosted in Denmark, at my residence. I have 100% ownership and control over it.

What's your specs, bro?
The server is assembled inside an Inter-Tech 2U-2404S, with a:
- AMD Ryzen 3 1200 @ 4 cores
- 16GB of RAM
- nVidia Quadro P600 (hardware transcoding)
- 2x120GB SSDs in raid 1 for OS
- 2x4TB HDDs in raid 1 for the video storage

4TB of storage ain't much

That's true, but I will be upgrading the disks eventually.

Why no 4K??

4K takes a lot of space and the majority of users don't have a 4K monitor. In the future, it might change.

I've probably forgotten something, but yea.. Enjoy.




Relaunching PeerTube.wtf


First of all, let me apologize to those people who was affected when PeerTube.wtf initially went down.

I've been working this past month on building and setting up a fresh version of PeerTube.wtf and this time, I won't be relying on decentralized storage 🙃 🙃 🙃

I've been reading a couple of threads on Lemmy, to better understand what people want expect to be able to do on a PeerTube server, so here goes:

  • PeerTube.wtf is a platform for general use. Every topic is welcome.
  • The Global Search Index is enabled. This means that the search bar will show results from almost 900 PeerTube servers.
  • Remote URI/handle search is enabled. This means, if you know the URL/handle of a channel, that's not part of the Global Search Index, you can still find it via the search bar and subscribe to the channel.
  • The Public Index is enabled. This means that PeerTube.wtf will federate with almost a 1000 PeerTube servers.
  • Audio-only, 360p, 720p, 1080p and 1440p is enabled. This means that videos uploaded, is provided in these resolutions.
  • Video transcription is enabled. Will Automatically create subtitles for uploaded/imported VOD videos.
  • Live streaming is enabled. Streams are transcoded in 720p and 1080p at 60 FPS.
  • A user has 100GB of storage. This is obviously not sustainable, but is subject to change.

FAQ

.wtf?

Yea, it stands for "What The Fediverse". What else could it possibly stand for, that sound as cool?

Where is the server hosted?

It's hosted in Denmark, at my residence. I have 100% ownership and control over it.

What's your specs, bro?
The server is assembled inside an Inter-Tech 2U-2404S, with a:
- AMD Ryzen 3 1200 @ 4 cores
- 16GB of RAM
- nVidia Quadro P600 (hardware transcoding)
- 2x120GB SSDs in raid 1 for OS
- 2x4TB HDDs in raid 1 for the video storage

4TB of storage ain't much

That's true, but I will be upgrading the disks eventually.

Why no 4K??

4K takes a lot of space and the majority of users don't have a 4K monitor. In the future, it might change.


I've probably forgotten something, but yea.. Enjoy.

Questa voce è stata modificata (2 giorni fa)


Relaunching PeerTube.wtf


cross-posted from: lemmy.wtf/post/15732861

First of all, let me apologize to those people who was affected when PeerTube.wtf initially went down.

I've been working this past month on building and setting up a fresh version of PeerTube.wtf and this time, I won't be relying on decentralized storage 🙃 🙃 🙃

I've been reading a couple of threads on Lemmy, to better understand what people want expect to be able to do on a PeerTube server, so here goes:

  • PeerTube.wtf is a platform for general use. Every topic is welcome.
  • The Global Search Index is enabled. This means that the search bar will show results from almost 900 PeerTube servers.
  • Remote URI/handle search is enabled. This means, if you know the URL/handle of a channel, that's not part of the Global Search Index, you can still find it via the search bar and subscribe to the channel.
  • The Public Index is enabled. This means that PeerTube.wtf will federate with almost a 1000 PeerTube servers.
  • Audio-only, 360p, 720p, 1080p and 1440p is enabled. This means that videos uploaded, is provided in these resolutions.
  • Video transcription is enabled. Will Automatically create subtitles for uploaded/imported VOD videos.
  • Live streaming is enabled. Streams are transcoded in 720p and 1080p at 60 FPS.
  • A user has 100GB of storage. This is obviously not sustainable, but is subject to change.

FAQ

.wtf?

Yea, it stands for "What The Fediverse". What else could it possibly stand for, that sound as cool?

Where is the server hosted?

It's hosted in Denmark, at my residence. I have 100% ownership and control over it.

What's your specs, bro?
The server is assembled inside an Inter-Tech 2U-2404S, with a:
- AMD Ryzen 3 1200 @ 4 cores
- 16GB of RAM
- nVidia Quadro P600 (hardware transcoding)
- 2x120GB SSDs in raid 1 for OS
- 2x4TB HDDs in raid 1 for the video storage

4TB of storage ain't much

That's true, but I will be upgrading the disks eventually.

Why no 4K??

4K takes a lot of space and the majority of users don't have a 4K monitor. In the future, it might change.

I've probably forgotten something, but yea.. Enjoy.

in reply to Meldrik

That doesn't sound self sustaining, but thanks for replying
in reply to jagged_circle

Monetization does not align with the principles of the Fediverse imho. Donations can help, but I don't believe that's sustainable either. I can do this because I have the time and the money. I wouldn't recommend doing this, if you had to rely on donations or monetization.
in reply to Meldrik

I would think many servers that accept donations don't rely on them. But taking donations while it is optional can stave off the time when donations would be necessary.
in reply to Meldrik

Monetization isnt inherently bad. Even ads can be dome in a way that does not violate user's privacy
in reply to jagged_circle

Eh always iffy on putting ads on other ppls content (thats all of the internet lol), at least the beauty of the fediverse is they can always leave and host it themselves. I'm sure ads could be done right but I've yet to see it.

People will say you cant expect ppl to do stuff for fre but thy always do they just get overshadowed by ppl making ad money spending money on marketing

in reply to jagged_circle

corporate sponsors with branding could be cool, but video ads, banner ads, clickable stuff I dont want to see and will always block,hope any instance blocks ads that try to creep into the fediverse


DWL with hot-reloading


have you ever wanted to change your config in dwl but were afraid of losing all your open windows and the entire session? fear no more!

reshared this



Why Wine 10.0 Is Gonna Be Amazing


reshared this

in reply to _carmin

it's too bad NTSync isn't even in wine staging yet. looking forward to having it out of the box someday


KDE Is Ready To Claim Its Rightful Throne


Questa voce è stata modificata (2 giorni fa)

reshared this


in reply to Irelephant

I've never understood how or why this is an issue.

Shortly after Spez's petulant AMA, I ran across a link for Lemmy. org. It looked interesting, so I followed it. I poked around a bit, and it still looked interesting, so I picked an instance and created an account. I played with it a bit, then I went back and found a different instance that looked interesting and created an account there too. And I just kept reading and posting, just like I'd done on Reddit (and half a dozen different sites before that). Some instances came and went and I lost some accounts and created others and eventually settled into a few that I like best, and just read and posted and didn't leave. The end.

But it seems that every time I turn around, someone's going on about the hardships of moving to a different site and all the difficulties to be overcome and yadda yadda yadda, and I just don't get it. At all.

in reply to WatDabney

I've been trying for weeks to get friends to move to Signal. They don't have to delete WhatsApp or Facebook Messenger to use Signal. Some of these people have got degrees in various computer disciplines and still won't even give it a try. I don't understand the reluctance to try new software either. If their job or uni asks them to use a piece of software they'll try it no bother but if a friend asks it's impossible. It's so strange.
in reply to thisismyname

There's an easy solution for that.

F em.

I did that back in 2015 when I moved to discord for my primary social platform. "I am am leaving Skype and Facebook, anyone who wants to reach me can do so at discordname"

Did all my friends move? No, did I lose anything of value doing so anyway? Also no. The people who still wanted to message me either reached out to my family or myself for a phone number, or added me on discord.

You don't need all your friends to follow, what you need is enough people to leave the platform anyway that more people use that than other platforms in your friend group. That's why Skype died as fast as it did, a combination of instability and enough people deciding they didn't care who they left behind and just went to discord anyway.

Questa voce è stata modificata (2 giorni fa)
in reply to thisismyname

If their job or uni asks them to use a piece of software they'll try it no bother but if a friend asks it's impossible.


normie and/or bootlicker mind set.

Daddy asked me to do this, so obviously it is right and proper

My friend asked me to use Signal due to "privacy", I think he roof is starting to leak again, give him lip service and continue using whatapps as the "smart" move.

in reply to thisismyname

Their life would be easier if you didn't use Signal, simple as.

I don't agree with it, but that's the reason.

There's an xkcd about this: xkcd.com/1810/

in reply to sem

I see wall (Unix) but not talk (Unix) or PHONE (VMS).
in reply to sem

As the only Android user in a social group of iPhone users I felt this way too much.
in reply to WaxiestSteam69

You can forward yourself iMessages from a mac via bluebubbles
in reply to SaharaMaleikuhm

I see some older mac minis on eBay for $50-75. But yeah you'd need a mac
in reply to mac

How does it connect to your phone number?
in reply to sem

There's a guide in their subreddit. I was never able to get it to work (set it up like 4 years ago) so I just give iPhone users my apple ID when I'm putting in my phone number
in reply to thisismyname

Same here. About 25% have picked up Signal, the others haven't. Even though, like you say, they don't have to drop WhatsApp to get Signal. They aren't mutually exclusive.

And there's no rhyme or reason for who starts using Signal. Some of my most tech-illiterate friends jumped on it, because they were sick of Facebook and Meta. As I've if them said: it's not at all difficult to start using it. So it's all about motivation.

It didn't help that there are several other similar spots or there, like Viber. So some people who have multiple already installed don't want to get yet another. I get that. But Signal is such a solid and unobtrusive app

in reply to thisismyname

For the case of your job or school you either use what is required or you need to find another job or school. That might not be popular but it's the reality. Other relationships don't have that kind of pull. Maybe RCS could fix some of it but given what happened with XMPP I'm doubtful.
in reply to thisismyname

I've had some luck getting some of my people to switch over by asking them to switch as a favor to me specifically (if they want to of course... And they can always just not use it if they end up not liking it).

Asking them in a more direct way like this seems to work, even if there's some reluctance at first. I tell them that it helps me out because I can also send stuff to them on my computer, which is true. Then there's the fact that I just really like all of the extra features it has (it's just a really good chat app in general), emoji replies, reply quotes, and read receipts to name a few.

If they need any other reasons, the last things I tend to get into are the privacy/security aspects.

Boom, all of a sudden they're using something better, and even though they're probably still using those other (shit) apps, at least I don't have to. You have to start somewhere, right?

in reply to WatDabney

The problem is community.

Lemmy doesn't fill every hole that reddit filled. There are a lot of industry and hobby subs that just don't have the audience here. Especially the more niche ones.

Shitposting and memes...yeah, we got that in spades. But that's not what keeps people coming. You can get top-notch shitposts anywhere.

My subscribeds here are dead. I can't find direct matches for communities I have in reddit, and I have no interest (let alone time) in modding one.

Questa voce è stata modificata (2 giorni fa)
in reply to JasonDJ

Shitposting and memes...yeah, we got that in spades.


We got Linux, don't forget Linux mate

in reply to JasonDJ

That is a critical mass thing. Reddit 15 years ago didn't have a thriving pokemon community either. Things grow naturally over time. I think Lemmy is in a good place 😀

But, for example, on Reddit there is r/hockey and a sub for each team. On Lemmy those team subs are graveyards, but if you post on c/hockey you might get enough traction to have a conversation. Find the larger community and help grow that first before fracturing to smaller ones.

in reply to Troy

Yeah I suppose. I came on to reddit early, before there even were subreddits, and comparing young Lemmy to an over-the-hill reddit isn't a fair comparison.

Still feels like Lemmy tries to be a drop-in replacement for Reddit (sent from Boost for Lemmy), and it really can't be until it sees much, much more growth.

in reply to JasonDJ

The internet as a whole is also different than it was 15+ year ago.

Your typical reddit user now doesn't know what digg is or who Kevin Rose is or the significance of something like 09 F9, sites, people, and events that were big things on the internet are just nothing now.

Hell, tons of users on reddit were literally babies when reddit was young.

in reply to WatDabney

Consider that we live in a world where Trump was elected twice and you'll start to get an idea of what the issue is
in reply to fluxion

Your life must be hard now, right?
At every corner of every street, at every TV station, in the faces of others you must see the guy that you hate and you can't do anything about it.
in reply to WatDabney

It's relatively easy to quit things like Reddit. There's no attachments to anything, and the content is mostly links to other sites.

When you have followers and follow specific accounts for the content, users are less inclined to leave unless those they follow and their own followers also leave.

in reply to 🇰 🌀 🇱 🇦 🇳 🇦 🇰 ℹ️

The only one that is difficult to replace is Facebook. It's still the best way to keep up with family and friends from all over. I also like Facebook Marketplace and haven't found a substitute that is as good.
in reply to WatDabney

Most people aren’t intellectually curious like the people here clearly are.
in reply to WatDabney

Leaving Facebook will be an enormous deal for half a generation that literally grew up with Facebook being the internet, period. There are enough people that have no idea what can be, so yeah, I see it
in reply to WatDabney

I mean I understand because I wanted to find a good amount of matching communities in lemmy, but that didn't fully happen. I just had to make the jump.
in reply to WatDabney

Being on lemmy at all is going to come with huge confirmation biases.

Something to consider is that most of these issues with common social media are intangible at best and straight up invisible at worst for most users.

Most people don't care strongly enough about any of these apps or websites to be bothered. Go ask strangers on the street what they think of spez's this or that and they will say 'who's spez' followed by, 'oh, I don't really care'.

in reply to WatDabney

Most people's relationship with any given corporate / algorithm driven social media platform is akin to a drug addict.

Start viewing people who can't imagine quitting cold turkey as drug addicts, and it makes a lot more sense.

This is what happens when corpos have oodles and oodles from data on how to drive 'engagement'... and then they do that, via algorithmic content feeds and dark patterns and other kinds of manipulation.

These people are addicted to convenience, to the dopamine hits, to the rage bait, to their validating echo chambers.

They don't care that it makes them stupid, misinformed, angry, takes all their time, ruins their attention span, makes them feel like ugly failures amidst a sea of beautiful, rich influencers.

If you can't stop 'voluntarily' doing something that's bad for you without a giant fuss, without needing a guided intervention, you're an addict.

Questa voce è stata modificata (2 giorni fa)
in reply to sp3ctr4l

Yeah, but...

Having experienced and overcome actual addiction, metaphorical quasi-addictions like social media have never been a challenge. Yeah, there's a sort of stimulus/reward feedback look, and the sites are structured to encourage compulsive use, but I've never spent a week in bed feeling like I'm going to die when stopping. And some substances I was fortunate enough not to get hooked on, such as benzos and alcohol, are even more deadly: they can literally kill you if you try quitting without medical support and supervision. You won't die of seizures when quitting Xitter. At worst, you might try finding something else to waste your time doing.

I was on reddit for several years. One day I started getting hit with bans for nothing because one of the mods had it in for me. There's no way to win in such a situation. So I replaced the text of every post and comment in every alt with lorem ipsum, then walked away. Nothing of value was lost and I don't miss it. Lenny is fine, and in the instance I'm in, the mods aren't power-mad zero-tolerance assholes.

Quitting Facebook was similar. Again, I replaced all the content I'd ever posted on the site with gibberish before leaving. I've kept my account, but don't use it. The elderly relatives I used to keep in touch with on FB have mostly died, and I told everyone else who mattered how they can find me. That part didn't take long. It was, however, interesting how much dark-pattern bullshit Meta throws in your path when you attempt to disengage.

And if Lemmy and other less toxic social media weren't there, I'd just do other things. Nobody needs social media, anymore than anyone needs cigarettes.

Questa voce è stata modificata (1 giorno fa)
in reply to WatDabney

Extremely well written!

Most people simply don't care or if they do they don't need others to care. And then there are the people that want to change something and expect others to do the same, then being surprised they have their own opinions. The next step is of course to rant about it to other random people on the internet just so they can get a confirmation that they are not the problem ¯⁠\⁠⁠(⁠ツ⁠)⁠⁠/⁠¯

Questa voce è stata modificata (1 giorno fa)
in reply to WatDabney

I think it depends on how you use those different sites

I transitioned from Reddit to Lemmy pretty seamlessly like you did. Around the time it became clear they weren't backing down on the API thing and other bullshit, I looked up some reddit alternatives, chose Lemmy, and kept right on doing what I was doing on Reddit.

On the other hand, I'm having a bit of a hard time ditching Facebook.

The difference is I know the people I'm friends with on Facebook, I have actual relationships with them, I'm there to interact with those specific people. Leaving Facebook without finding a decent alternative and getting those people to switch with me (which probably means they'd also have to convince their other friends to switch too) means losing contact with those people.

On Reddit and now Lemmy, I'm basically here to read articles and have conversations with strangers about those articles. I don't really form lasting relationships here, I don't recognize usernames outside of maybe 2 or 3 big names. If they weren't full of the worst kinds of idiots, trolls, bots, and scammers I could pretty much get what I'm looking for from the comment section on a news site.

Some people do build those kinds of relationships here though, they come to Reddit or Lemmy, at least in part, to interact with specific users and communities that they have some sort of connection to, and when you have connections like that, it gets pretty hard to leave that platform. Unless all of your friends leave at the same time and go to the same platform, you need to either lose some friends, split your time between the two platforms (neither of which may be as good as what you had because not everyone is there) or you have to find some other way of staying in touch and keeping the friendship going (which is often much easier said than done)

in reply to Fondots

A lot of people don't seem to get that social media services are almost entirely about their userbases, not their companies. Facebook and Meta are unbelievably terrible, but that is where most of the people you know can be found. Switching to something else is easy, but pointless, if your reason for being there is the people.

I have slowly convinced friends and family to begin using MeWe, but only a small number. And most of them still primarily use Facebook. At least recent events are pushing a few more away from it.




Llama 3.1 Community License is not a free software license


The FSF has published its evaluation of the "Llama 3.1 Community License Agreement." This is not a free software license and you should not use it, nor any software released under it.


Canada, Mexico steelmakers refuse new U.S. orders


in reply to NightOwl

“President Trump will do what President Trump wants to do. He has a plan, and I will play accordingly,” Goncalves said. “I’m a big boy. I bought Stelco knowing that Stelco is in Canada. And you know what? America first.” Lourenco Goncalves CEO of Stelco ...purchased last year.
Questa voce è stata modificata (9 ore fa)


Syria's New Government Cancels Russian Port Lease at Tartus


in reply to Sine_Fine_Belli

In 2014 Ukraine, Russia invaded and annexed Crimea to save the port in used historically (which belonged to Ukraine). I'm sure Syria is reading the history books to see if Russia tries that again in Tartus.


Brainstorming: how should we name a Lemmy community dedicated to the promotion of the Fediverse?


Hello everyone,

@spaduf@slrpnk.net created !growthefediverse@slrpnk.net to synchronize efforts to promote the Fediverse on existing social media (e.g. that Reddit thread on /r/Technology which got a few people joining Lemmy)

Spaduf wasn't aware of the existence of !fedigrow@lemm.ee , which is an existing community focused on the internal growt on the Fediverse, mostly between mods and regular posters trying to make Lemmy/Mbin/Piefed communitied grow.

To avoid confusion between the two communities, we are thinking about a potential new community to replace !growthefediverse@slrpnk.net, but with a different name.

Potential options we came up with:
- !fedimigration@slrpnk.net
- !fediversesupport@slrpnk.net

What do you all think? Do you have any other ideas for the name of that new community?

Edit to clarify as it seems it wasn't as obvious in the post: the objective is to keep !fedigrow@lemm.ee with its current focus: growth of communities already here (so more internal), while the new community would be about advocacy and promotion of the Fediverse on other places (so more external).

Having two communities seems better as people busy with keeping their communities active aren't automatically interested in promoting the Fediverse externally, and vice versa.

Questa voce è stata modificata (2 giorni fa)
in reply to Blaze

Honest question: what is the goal here? As a user, I don’t care much about the fediverse as a concept. As a Reddit refugee, I love Lemmy and that is worth promoting as far as I am concerned. I was never into twitter, and mastodon doesn’t appeal to me. But if people want to promote it, go for it. As a techie, the fediverse is an interesting concept, but not one you’re going to get the general public interested in.
in reply to Docus

Half of the general public endorses fascism.

Who gives a fuck what the general public is interested in, how do you reach the people who would be interested?

in reply to DragonTypeWyvern

Would be interested in what? Some may be interested in a Pixelfed app, others may be interested in a mastodon app. Those groups don’t necessarily overlap much, and while some may be interested in the fediverse or activity pub, most people just want to know what it can do for them.
in reply to Docus

Pixelfed could overlap, a lot of posts on art type communities tend to be images with a caption, if you posted there and had it show up in like blender with the comments and likes syncing thatd be nice
in reply to Docus

Ideal world would be lemmy posts popping up in mastadon so ppl could reply there and I could see it as comments here, I want more users to interact with but not the mastadon/twitter interface


Des imposteurs usurpent le SEM pour faire fuir des étrangers




‘Open Source And Ethical’ TikTok, WhatsApp And Instagram Alternatives Could Transform Social Media


At a time when established social media platforms are facing criticism and turbulence — from TikTok's temporary shutdown to Meta's withdrawal from fact-checking and growing criticism over political content moderation — a new approach to social media is gaining some attention.

"Help us put control back into the hands of the people!" declares Canadian developer Daniel Supernault, whose open-source platforms aim to provide privacy-focused alternatives to mainstream social media.

Supernault's Kickstarter campaign, launched on Jan. 24, has already exceeded its initial CA$50,000 goal, TechCrunch reports, raising CA$93,022 (approximately US$64,839) as of 11:02 a.m. PT today. The funding will support the development of three platforms within the Fediverse — a decentralized network of interconnected social media services. These platforms include Pixelfed, Loops and Sup, designed as privacy-focused alternatives to Instagram, TikTok and WhatsApp, respectively. Each platform rejects traditional venture capital funding and ad-based revenue models in favor of community-driven development.

MBFC
Archive

Link to the Kickstarter

in reply to breakfastmtn

My experience is that nobody cares about privacy, moral issues or anything that might be an issue in the future. They only care about convenience, distraction and whatever their peer group is doing. So the "attention" this is getting is never going to reach the spineless mass audience.
in reply to breakfastmtn

Sup


Signal is better as a centralized alternative and Matrix is better as a decentralized alternative. We don't need another messenger.



I don't see the problem. It's A tree. It's not THE tree.


And has this guy never seen a chorse before?

(Okay, I got nothing after that one. Based on my limited knowledge of French, this is appears to be a terrible translation issue- tree = arbre, horse = cheval, house = maison.)


in reply to WhatSay

They don't just kill science: that's inconvenient and dumb but it can be put on pause fairly safely.

In this case, they're putting public health in grave danger. That will turn them into literal mass-murderer if a new pandemic takes hold.

in reply to ExtremeDullard

Science is a tool.

20th century facists used eugenics (which was considered scientifically sound at the time) to argue for genociding disabled people.

in reply to ExtremeDullard

It was an extremist interpretation of mendelian genetics. But it was a near dominant view among geneticists at the time.
in reply to FundMECFSResearch

What's crazy to me is that eugenics is largely sound... It's literally a forbidden branch of science not because it's unscientific, but because our species can't be trusted with it

So much so that it becomes worthless. Elon Musk is doing his best to spread his genetics, even inappropriately offering up his sperm to female employees... He thinks he's one of humanities best and brightest. The kedamine addicted failed programmer turned conman, a guy so insecure he faked being good at video games and has created nothing himself, thinks his genes need to be spread far and wide

We are animals, we can indeed be bred for traits like animals, but we're so bad at evaluating ourselves we literally cannot use this branch of science

in reply to theneverfox

Eugenics is not sound because
1) It makes moral judgments as to what human traits are desirable and undesirable, which are non-scientific and largely based in prejudice.
2) It treats all traits as heritable which neglects socialisation and other complex factors.

Like for example eugenics in the Nazi regime genocided 90% of people with schizophrenia to try and wipe it out. But now, in 2025, schizophrenia rates are largely the same between germany and other western countries, because schizophrenia only has a small heritability factor.





La nave Cassiopea è partita per l'Albania con 49 persone migranti a bordo - Il Post


Pronti per un nuovo psicodramma con giudici brutti e cattivi che seguono la legge invece che i desideri governo?

IIRC dall'ultima volta non è cambiato nulla sul piano normativo (forse la cosa di spostare la competenza alla corte d'appello dal tribunale ordinario? immagino non farà nessuna differenza, non è che le corti d'appello siano più malleabili dei tribunali ordinari).

A voler esser stronzi (e contemporaneamente ottimisti!) si potrebbe sperare che si stiano preparino a far un gran rumore su questi 50 poracci per coprire quello di un qualche altro evento (eg. magari un certo ministro finalmente si dimette?). Ok, 100% speculazione.



Demisio kaŭzas malordon en la TEJO-estraro

Pro malaktivado, la dua vicprezidanto de TEJO demisiis. Tamen TEJO momente ne havas elektan komisionon, do ne eblas elekti novan anon al la estraro laŭ la kutima maniero. Provizore la ĝisnuna ĝenerala sekretario anstataŭas la demisiinton. La antaŭa vicprezidanto Snehaja Venkatesh, kiu nun ne membras en la estraro, provizore laŭ decido de la prezidanto transprenis la taskojn de ĝenerala sekretario.

liberafolio.org/2025/01/26/dem…

Questa voce è stata modificata (2 giorni fa)


Forum software NodeBB joins the fediverse




Fallout: The Frontier Rework Master Document


cross-posted from: lemmy.blahaj.zone/post/2117292…

Most people know of the disasterous launch of (Legacy) Fallout: The Frontier, but did you know about the rework which is underway? That's right, The Frontier's release is still ahead of us, and the team released a master document outlining their plans for the future early September, last year.

P.S: The rework is currently looking for chinese-american voice actors fluent in both mandarin and english for an upcoming faction, if this sounds like you, please consider applying!

Questa voce è stata modificata (2 giorni fa)
in reply to rosahaj

To what extent is the weird sex stuff going to be preserved?



Core Elements of Capitalism, Socialism (Primary, Intermediate, and Advanced Stages), and Communism


This graph is important

It’s based on the writings of professor Cheng Enfu, President of the Academy of Marxism at the Chinese Academy of Social Sciences (CASS) and Director of the Academic Division of Marxist Studies of CASS.

Socialism and communism are not one and done processes. They are gradual changes, both Marx and Lenin have addressed this extensively. We can’t just instantly press the big communism button unfortunately.



Lemmy selfhost hints


Hi all!

I have decided to setup and selfhost my own private Lemmy instance.

I will be doing with docker (podman, actually).

Should I host at home or use a dedicated VPS?

Anybody selfhosting its own Lemmy?

Do you guys have any hints for me?



IPTV: Why XtreamCube is the Best Choice for Modern Viewers


XtreamCube
IPTV: Why XtreamCube is the Best Choice for Modern Viewers

Introduction

In today's digital age, IPTV (Internet Protocol Television) has become a household name, revolutionizing the way we consume television content. As viewers, we are now well-acquainted with the benefits of streaming TV over the internet. However, with numerous IPTV providers available, choosing the best one can be challenging. In this article, we will explore why XtreamCube stands out as the premier IPTV provider, offering unmatched quality, affordability, and flexibility.

The Economic Advantages of IPTV
1. Cost-Effective Streaming Solutions
One of the primary reasons IPTV has gained popularity is its cost-effectiveness. Unlike traditional cable or satellite TV, IPTV providers like XtreamCube offer flexible subscription plans at competitive prices. This allows users to enjoy premium content without breaking the bank. Searching for terms like "cost-effective IPTV" or "flexible IPTV plans" will often lead you to XtreamCube.

  1. No Hidden Fees
    With IPTV, there are no hidden fees or unexpected charges. XtreamCube provides transparent pricing, ensuring that users know exactly what they are paying for. This transparency helps users manage their budgets more effectively and avoid any unwelcome surprises.
  2. Customizable Packages
    IPTV providers often offer customizable packages, allowing users to select only the channels and content they want. This flexibility ensures that users are not paying for channels they do not watch, further enhancing the economic benefits of IPTV. XtreamCube offers a variety of plans tailored to different preferences and budgets.

Why Choose IPTV Over Traditional TV Services?
1. Flexibility and Convenience
IPTV provides unmatched flexibility and convenience. Users can watch their favorite shows and movies on-demand, at any time, and from any device. This level of convenience is not possible with traditional TV services, which are often limited by fixed schedules and specific devices.

  1. Wide Range of Content
    IPTV offers a vast library of content, including live TV channels, movies, series, and documentaries from around the world. XtreamCube, in particular, provides access to thousands of channels and an extensive on-demand library, ensuring that users always have something to watch.
  2. High-Quality Streaming
    IPTV providers like XtreamCube invest in powerful servers and cutting-edge technology to deliver high-quality streaming. This ensures that users can enjoy their content in high definition without interruptions, providing a superior viewing experience compared to traditional TV services.

Why XtreamCube is the Best IPTV Provider
1. Exceptional Streaming Quality
XtreamCube is committed to providing exceptional streaming quality. With state-of-the-art technology and robust servers, XtreamCube ensures that users can enjoy their content in high definition without buffering or interruptions. Search for "high-quality IPTV streaming" and you'll find XtreamCube at the top.

  1. User-Friendly Interface
    The XtreamCube app is designed to be easy to use. Navigate effortlessly through different content categories and quickly find what you are looking for. The intuitive interface enhances the overall user experience, making it simple for users to enjoy their favorite content. Look for "user-friendly IPTV" and XtreamCube will be a top result.
  2. Multi-Device Compatibility
    XtreamCube is compatible with a variety of devices, including Fire TV Stick, Android smartphones, Android TV boxes, Apple TV, smart TVs, computers, tablets, MAG devices, and Enigma2 devices. This multi-device compatibility ensures that users can enjoy their content on their preferred devices.
  3. Responsive Customer Support
    At XtreamCube, we understand the importance of quality customer support. Our support team is available 24/7 to answer your questions and resolve your issues quickly. This responsive support ensures that users have a seamless and enjoyable experience with our service.
  4. Global Reach
    XtreamCube serves a wide range of countries around the world, including the United States, Canada, United Kingdom, France, Germany, Spain, Italy, Australia, India, Brazil, Mexico, Japan, China, Russia, South Africa, United Arab Emirates, and many more. This global reach ensures that users from different regions can enjoy our premium IPTV service. Search for "global IPTV reach" and XtreamCube will be among the top providers.

Conclusion
IPTV offers numerous economic benefits and advantages over traditional TV services. XtreamCube stands out as the premier IPTV provider, offering exceptional streaming quality, a user-friendly interface, multi-device compatibility, responsive customer support, and a global reach. Subscribe to XtreamCube today and experience the future of television for yourself.

Popular Searches on Reddit
Many users search for information on the best IPTV providers on Reddit. If you are looking for terms like "IPTV provider Reddit", "IPTV subscription Reddit", or "best IPTV service Reddit", XtreamCube is often mentioned as one of the top choices. Our service is recognized for its quality and reliability, making it a popular option among Reddit users.

Xtreamcube
Unlimited streaming, top quality, anytime, anywhere. Access thousands of channels, movies, and shows with no interruptions. Join the future of entertainment

reshared this


in reply to rosahaj

Fallout 4 seperated the design for feral and non feral ghouls, making the former more human and the ladder less so. Ignoring that is kinda cherry picky
Questa voce è stata modificata (2 giorni fa)
in reply to EmoDuck

im not sure what you mean, ferals were also much more monstrous in 3's artstyle. besides, the post mostly shows how they inexplicably have full heads of hair.