3
submitted 2 months ago by techwooded@lemmy.ca to c/privacy@lemmy.ml
[-] techwooded@lemmy.ca 25 points 4 months ago

I don't think that schools (at least in America) teach enough about Eugene V. Debs. Despite his failed presidential runs, this guy was one of the most popular politicians of his day. His imprisonment for sedition caused literal riots across the country. His release from prison was attended by over a million people. He founded the Industrial Workers of the World. Some of my favourite quotes of his that stick with me:

I am not a Labor Leader; I do not want you to follow me or anyone else; if you are looking for a Moses to lead you out of this capitalist wilderness, you will stay right where you are. I would not lead you into the promised land if I could, because if I led you in, someone else would lead you out. You must use your heads as well as your hands, and get yourself out of your present condition.

While there is a lower class, I am in it, and while there is a criminal element, I am of it, and while there is a soul in prison, I am not free

11
submitted 6 months ago by techwooded@lemmy.ca to c/privacy@lemmy.ml

Hey everyone, I'm considering moving my cell phone number over to being a VoIP number with JMP.chat. Unfortunately, a lot of my family members are not the most privacy focused people in the world (they're the "they already have my data so it doesn't matter" types). Over the past few years, I've been fighting the good fight and managed to get a few of them over to using Signal and some even on Matrix, but for the vast majority of them, they still only text. They almost all use Apple products, so because I still use iPhone (switching to Graphene with my next phone), most of our conversations are via iMessage. My question is which would be more private/secure? Leaving my number as is with the cell carrier and texting via iMessage or switching my number to JMP and texting via SMS?

[-] techwooded@lemmy.ca 49 points 7 months ago

I'm not some big technical guy, but there is a pretty fundamental difference in how the protocols work. Mastodon uses ActivityPub, Bluesky uses the AT Protocol.

ActivityPub is like email, it's an exchange protocol. So basically you create a link between two accounts by "following" and that says "whenever A posts something, deliver it in this format to B".

ATProto is a bit more complex. It's based around the idea of nodes. A node in this sense is basically a pile of letters. If I decide to post something, that letter gets thrown into the pile with some info like user tags, etc. Another user somewhere else who follows me is in essence just telling their client "pull out all the letters that A has thrown into this pile and shown them to me". And then you have a front facing client that displays the result of that filter in a convenient way. On the one hand, this is why topic lists (I think called collections?) are much easier/better in Bluesky because at the end of the day it's just another filter onto the pile, whereas with an ActivityPub based collection would be a bit more complicated.

In practice what this basically means is that Bluesky is federated in name only. If the Bluesky board decided one day that you couldn't post about cats, but I really wanted to post about cats, I would have to then host the node, the filtering apparatus, and (potentially) the front end. The node hosting specifically is the most technically onerous. If I wanted the Catsky node to federate with the Bluesky node, I would need to set up a tunnel between the two, then posts from Bluesky that the Catsky users would want to see would also be deposited into my node meaning my storage requirements would go up quickly. Conversely, you can run a stable Mastodon instance on a raspberry pi because you only need to be able to store what you want to see, not the entirety of the platform. I personally have only heard of one other successfully hosted node (Blacksky for Black Twitter refugees) and I'm not sure it federates with Bluesky.

In the end, Bluesky works a lot like OG Twitter, which was just a lump of storage and the actual product was the API, but with a couple ropes dangling out the sides with a sign saying "go ahead, hook up, and federate, we don't mind". This is unsurprising as Bluesky and the ATProto were made in essence by the OG Twitter people

[-] techwooded@lemmy.ca 52 points 7 months ago

As someone still begrudgingly living in America as a US Citizen, fuck us up Canada

8
submitted 9 months ago by techwooded@lemmy.ca to c/fedora@lemmy.ml

Hey everyone, I'm running into a weird problem with Fedora Workstation. Basically whenever my computer starts up, GRUB freezes (sometimes with the menu displaying, sometimes without it). It works fine when, while starting up, I go into the select bootloader menu (for me by pressing F9), select Fedora, and then GRUB works great. I don't have another OS installed, but I think the windows bootloader is still on the device, though Fedora and GRUB are the default bootloader. I do have secure boot on if that changes anything. Any advice on how to fix?

17
submitted 10 months ago by techwooded@lemmy.ca to c/privacy@lemmy.ml

I’ve been thinking of using Murena Monile for my cell carrier (USA) because they appear to have good privacy terms, though I’m a little on the fence using a T-Mobile MVNO due to political reasons. Does anyone know of a similar style carrier that uses Verizon’s or AT&T’s network?

1
submitted 11 months ago* (last edited 11 months ago) by techwooded@lemmy.ca to c/baseball@lemmy.ca

Went through a thought experiment for potential MLB expansion to 32 teams. I tried to think outside the box in terms of where to go, and I settled on Mexico City and San Juan, Puerto Rico.

This would be the divisions I would make, only flipping the league of two teams. Only the winner of each division makes it to the Postseason:

American League: North:

  • Toronto
  • Detroit
  • Minnesota
  • Chicago White Sox

East:

  • New York Yankees
  • Boston
  • Baltimore
  • Cleveland

South:

  • Texas
  • Mexico City
  • Kansas City
  • Tampa

West:

  • Seattle
  • Las Vegas
  • Anaheim
  • Colorado

National League: North:

  • Milwaukee
  • Chicago Cubs
  • St Louis
  • Cincinnati

East:

  • New York Mets
  • Philadelphia
  • Pittsburgh
  • Washington

South:

  • San Juan
  • Miami
  • Houston
  • Atlanta

West:

  • Los Angeles
  • San Diego
  • San Francisco
  • Diamondbacks
27
submitted 11 months ago by techwooded@lemmy.ca to c/music@beehaw.org
4
submitted 1 year ago* (last edited 1 year ago) by techwooded@lemmy.ca to c/selfhost@lemmy.ml

Hey everyone, I'm currently trying to run Jellyfin with Tailscale using docker compose and a reverse proxy through Caddy. I'm using this guide to do this. After configuring the yaml, I tried to start things up and Tailscale and Jellyfin started, but Caddy wouldn't start and it gave the following error:

Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error mounting "/root/Jellyfin/jellyfin-tailscale/caddy/conf/Caddyfile" to rootfs at "/etc/caddy/Caddyfile": create mountpoint for /etc/caddy/Caddyfile mount: cannot create subdirectories in "/var/lib/docker/overlay2/325e35ec5a4c8d8bac5d7576e2deeb4b8365af027486e232ad78b458708b639b/merged/etc/caddy/Caddyfile": not a directory: unknown: Are you trying to mount a directory onto a file (or vice-versa)? Check if the specified host path exists and is the expected type

I checked the Caddy Image information here, and modified the yaml to mount the Caddyfile directory instead.

New code looks like this ~/Jellyfin/jellyfin-tailscale/caddy/conf:/etc/caddy

Now when I restart the services with Docker Compose, all three start, however Caddy (and therefore Jellyfin) won't run, they continually try restarting. By looking at it with docker logs caddy, I see that it throws out this error over and over:

Error: reading config from file: read /etc/caddy/Caddyfile: is a directory

I've inspected both the Caddyfile in /etc/caddy and in ~/Jellyfin/jellyfin-tailscale/caddy/conf using file Caddyfile, and both say they're Caddyfile: ASCII text.

What am I missing and how do I fix it?

EDIT: Forgot to put in links

[-] techwooded@lemmy.ca 185 points 1 year ago

Telling too that the Democratic leadership said after the fact that one of the reasons they lost was that they relied too much on small donators instead of billionaire donators. Disgusting

[-] techwooded@lemmy.ca 22 points 2 years ago

The problem with exit polling, as with the problem with polling in general (exacerbated by the modern age), is that they’re voluntary. The simplest explanation is that a higher percentage of women answered the exit poll than men. Or that women who voted for Trump were less likely to answer the poll. Or the people lied when they answered the poll.

There can also be statistics reasons for it too. Not knowing the methodology behind how this was collected, but you can also have selection effects. If I’m trying to run a statistical analysis on a population, I want as many respondents as possible to reduce the error and deviation, but I also have to operate with limited funds. Be much more efficient to post a few people up in higher density places like cities that tend to vote more blue anyways than having pollsters scour the backroads of Wyoming, for example, where I would wager a higher percentage of women voted for Trump.

In the end, don’t put too much stock in pre-election polls, and definitely don’t put too much stock in exit polls. Think about it like this, if you got a phone call from a random number, would you pick up and answer questions about how you vote in such a controversial election? If the answer is no, then you know why polls aren’t accurate

[-] techwooded@lemmy.ca 24 points 2 years ago

I may be one of these people. At least for the more obscure places, the highway pullouts and national forests and things, if I see another person parked there, I’ll typically park next to them. Safety in numbers, the more people parked in a turnout, the more legitimate it looks to park there

15
Thorium Browser? (thorium.rocks)
submitted 2 years ago* (last edited 2 years ago) by techwooded@lemmy.ca to c/privacy@lemmy.ml

Curious on how good this fork of chromium is for privacy. Same person does the Mercury browser too I think

22
submitted 2 years ago* (last edited 2 years ago) by techwooded@lemmy.ca to c/vexillology@lemmy.world

Designed by deafblind artist Arnaud Balard in 2013, it was adopted by the National Federation of the Deaf of France (Fédération nationale des sourds de France) in 2014 and by the Word Federation of the Deaf in 2023. It's official symbolism is:

  • Hand: The signing deaf community and sign languages

  • Fingers: Use of sign languages around the world (over 200 languages) and the 5 continents (in order from top to bottom Europe, the Americas, Asia, Oceania and Africa)

  • Turquoise: World color of sign language, deaf culture, and the signing deaf community

  • Yellow: Light, life, the awakened mind, and coexistence

  • Navy Blue: Planet Earth, humanity, and the color adopted to represent deafness

1

Just thought I'd post this in the new space

cross-posted from: https://discuss.tchncs.de/post/11732557

Signal Group for Vegans

If you're a vegan, or willing to go vegan, you may join this Signal group.

https://signal.group/#CjQKIEL2AAqK0gGc3Q3MKdzY3yJzuzTg49ZOKuyMKHHkci6yEhDingsMPcJOH7bqsC7esBFg

To prevent spam, I have turned on "Approve new members" option.


If you want a much more active group, you can join the Matrix group.

To join Matrix, visit https://joinmatrix.org/.

To look at all the rooms in Vegan space, visit https://matrix.to/#/#vegan.en:tedomum.net. We have rooms for all types of things, discussing tech, debating etc.

General Room - https://matrix.to/#/#vegan.en.general:tedomum.net

[-] techwooded@lemmy.ca 22 points 2 years ago

While it is true that most early astronauts were aviators, specifically test pilots, it's also important to consider that it was the case then as it is now that the US Navy operates more planes and has more pilots than the US Air Force. Just percentage wise, that would edge towards more Navy pilots who use the naval terminology in their ranks (the Mercury 7 were 4 Navy pilots, 2 Air Force, and 1 Marine I think, though I could be wrong). I would assume that the culture would skew even more Naval as space flight progresses as early spaceflight was a couple of guys in a tin can to larger scale craft.

Another weird quirk too is that common military rank terms like "captain" and "lieutenant" don't line up between the Navy and the others (at least in the US). So the OG Star Trek guys would be Colonel Kirk and Captain Uhura under Air Force terminology, and that just sounds weird

3

What's everyone's favorite standalone fantasy novels? No sequels, no trilogies, just a rare gem in the fantasy landscape.

To start things off, I would say that one of my favorites is "Talion: Revenant" by Michael Stackpole. Really intriguing world and a good storyline, primarily character driven I would say.

[-] techwooded@lemmy.ca 58 points 2 years ago* (last edited 2 years ago)

Would just like to pop in here and say that terms like “millionaires” and “billionaires” typically refer to net worth/wealth, not income. This is why Jeff Bezos was able to claim some of the federal COVID aide because, despite being a multi-billionaire, his income in that year was below the threshold (I think it was sub-$100k) as income from investments didn’t qualify under the structure of the plan.

While I don’t necessarily disagree with the sentiment of people whose net worths are upwards of a million being able to claim unemployment, actually calculating net worth is extremely difficult to do, especially among the wealthy. That would put an unreasonable burden on the unemployment benefit system that would probably end up costing more in administrative costs than the money saved by not including to the ultra-wealthy in the benefit. Preventing the latter is the main benefit of universal programs

29
submitted 2 years ago by techwooded@lemmy.ca to c/degoogle@lemmy.ml

Hey everyone. Does anyone know of a good alternative to Google Flights other than like Expedia, Kayak, etc? Bonus points if they have an API too

[-] techwooded@lemmy.ca 25 points 3 years ago

No in the strictest definition of SAD, where the winter and fall depress you. I have reverse seasonal affective disorder, where the same happens to me but in the spring and summer. The sun saps all my energy away and I thrive in the cold and the dark. All of my positive emotions dull from April until around mid-October every single year. Give me snow and clouds any day over shorts and sunlight

[-] techwooded@lemmy.ca 32 points 3 years ago

Firewatch is a very beautiful game

[-] techwooded@lemmy.ca 25 points 3 years ago

Swiss Army knife, bottle opener, pocket pen, and most important of all: one of those wavy keys to open toilet paper and paper towel dispensers

[-] techwooded@lemmy.ca 26 points 3 years ago

Depends a lot on your interests! Some good ones I've aggregated over the years:

  • Pluralistic by Cory Doctorow: Daily links for reading by a very pro-decentralization and free web person
  • A Collection of Unmitigated Pedantry: History and Pop Culture, usually one post per week on Friday
  • Pedestrian Observations: Public transportation and urban design
  • People's Policy Project: RSS feed for articles from the only crowd funded think tank (Lefty if you're interested)
  • Bartosz Ciechanowski: Great blog with interesting animations, all very well researched. Only downside is that you usually have to use the RSS feed as a method of knowing when the article is posted and following the link to the website, plus he usually only posts one every 3 months or so
  • xkcd: Old guard web comics, always fun to read

There are a lot of great RSS feeds out there though! I encourage you to see if your favorite blogs or news sites or things like that also have RSS feeds and suggest consuming them on there (for example I read CBC and Radio Canada exclusively through RSS) as it usually streamlines the whole reading experience.

If you use Apple's Ecosystem, I would also suggest using MacStories' Find RSS Feed Shortcut which will grab any available feeds from any website you feed it and let you copy the link to your clipboard to add to your favorite app. Enjoy!

view more: next ›

techwooded

0 post score
0 comment score
joined 3 years ago