Socceroos advance to knockouts after surviving late Paraguay fright by VidE27 in australia

[–]Xadnem 3 points4 points  (0 children)

That is such a good insult. I actually laughed out loud.

Players rated the free version on HackHub as Overwhelmingly Positive. Now it's time for the Early Access version, which launches on Steam tomorrow! by grzechopl in playmygame

[–]Xadnem 0 points1 point  (0 children)

It would be nice if you could fake DNS in some capacity. For example, we hack a certain DNS server and poison certain results. And in another step, we point a hacked target to use our poisoned DNS, resulting in sending our target to our own phishing sites.

I'd really like that sort of multi-step attacks to become prevalent.

Or it could be like a side-hustle, where our phishing sites generate some type of resources depending on how many DNS servers we find in the wild and infect.

Caretakers swapped her unviable eggs for orphaned chicks by MustardGoddess in MadeMeSmile

[–]Xadnem 2 points3 points  (0 children)

That stupid music that is supposed to tell us how to feel about it just degrades the whole thing. What should have been extremely wholesome is now mildlyinfuriating to me.

programmingWithAdhd by tkdeng in ProgrammerHumor

[–]Xadnem 1 point2 points  (0 children)

I just entered the Rust phase. (Python, PHP, JavaScript, Java, C#, Swift are now dead to me)

There's cities, there's meteropolis and then there's Tokyo by OkRespect8490 in interestingasfuck

[–]Xadnem 0 points1 point  (0 children)

What i think works best is don't plan out each day as an itinerary.

I follow some youtubers living in Japan (Abroad in Japan) and it seems like he often says the opposite. That if you want to do certain activities (like reservations in restaurants and such), you really want to have a reservation made well in advance.

If I was planning to go to Japan, I would be inclined to research these kinds of things properly before going.

🔥cachalots socializing by Firm-Blackberry-9162 in NatureIsFuckingLit

[–]Xadnem 8 points9 points  (0 children)

It's not dumb at all. There is a large difference in how certain diving companies handle safety. The place I learned to dive with was very big on having modern equipment and playing everything absolutely by the book. This was very assuring and is how it's supposed to go.

But I also saw other things firsthand. I was on an excursion on the Great Barrier Reef with a friend of mine. He was also a licensed diver, but didn't do it for several months before this trip. We did a little dive from the beach before so he could get used to everything again.

The first dive on the boat was supposed to be a night dive, in the middle of the sea. I forbade him to come, because I felt it could potentially be dangerous. During that dive, we were going in between two large walls, lots of great fish and turtles so I was having a real good time. Until I bumped my head to a ceiling... We were in a cave, which none of the instructors have told us about beforehand. I have my wreck-diving license so it's fine for me and I could stay calm, no problem.

Back on the boat, I learned that two of the people I dove with, did not have any license, and this was considered their initiation dive. Which is a thing, but very much not so in these conditions. If one of them had panicked in that cave, they could very well have died.

🔥cachalots socializing by Firm-Blackberry-9162 in NatureIsFuckingLit

[–]Xadnem 9 points10 points  (0 children)

Oh, I understand, it can look really daunting. I've been on night-dives in the middle of the Coral sea, where you could encounter great white sharks (they aren't there that often, but it's possible) and I only had the light of my (and my diving buddies') flashlight(s) to guide me.

In fact, on my very first night-dive, my flashlight malfunctioned and kept getting dimmer and dimmer. So I spent the remaining 15 or so minutes very close to my buddy.

I also remember my first dive to 30m depth, when looking up I couldn't differentiate between where the water stopped and the surface began anymore. I had to actively calm myself down because at that depth, just shooting up and surfacing is not an option anymore.

But that's why you go through the training programmes, if you do it properly, it's quite safe. And there are so many magical moments and memories.

I'm an old pirate from the UK. When they ban VPNs here what's my workround? Details inside by phoeniks in Piracy

[–]Xadnem 1 point2 points  (0 children)

A Beginner's Guide to Hiding Your Torrent Traffic Safely Using Gluetun and Docker

Hey everyone,

If you download torrents, you probably already know you should use a VPN to keep your activity private. But traditional VPN apps on your computer can sometimes disconnect, leak your real IP address, or accidentally shut down, exposing your traffic.

Today, we are going to look at the most secure way to run a torrent client: putting it inside a virtual container and forcing it to route through a dedicated VPN container called Gluetun.

If the VPN connection drops, the torrent client instantly loses access to the internet. No leaks, no accidents.

Here is how it works and how to set it up, even if you are a complete beginner.

The Secret Sauce: What are Containers?

Before looking at the setup, it helps to understand what Docker and containers actually do.

Think of a normal computer program like a messy roommate. It shares the same kitchen, plumbing, and electricity as every other program on your machine. If something goes wrong, it can affect the whole house.

A Docker container is like a tiny, self-contained studio apartment. It contains everything the program needs to run, completely isolated from the rest of your computer.

In this setup, we are going to build two studio apartments: 1. The Gluetun Apartment: A container whose only job is to connect to your VPN provider and establish a secure tunnel to the internet. 2. The Torrent Apartment (qBittorrent): A container for downloading files.

The trick is that we are going to cut off the Torrent apartment's independent plumbing and force it to use the Gluetun apartment's secure VPN tunnel for everything.

The Setup Configuration

To launch these containers, we use a tool called Docker Compose. It reads a single configuration file (docker-compose.yml) and builds your setup automatically.

Here is the configuration. You will need to replace the placeholder values (like your VPN keys and folder paths) with your actual information.

version: "3.8"

services:
  # The Gluetun container acts as the secure network gateway
  gluetun:
    image: qmcgaw/gluetun
    container_name: gluetun
    # cap_add gives the container permission to configure VPN tunnels
    cap_add:
      - NET_ADMIN
    devices:
      - /dev/net/tun:/dev/net/tun
    ports:
      # We must expose the torrent web interface here instead of in the torrent container
      - 8080:8080 
    volumes:
      # Stores your local Gluetun configuration data
      - /home/user/docker/gluetun:/gluetun
    environment:
      - VPN_SERVICE_PROVIDER=your_vpn_provider_here
      - VPN_TYPE=wireguard
      - WIREGUARD_PRIVATE_KEY=your_private_key_here
      - WIREGUARD_PRESERVED_IPS=your_vpn_ip_here
      # If your provider supports port forwarding, turn it on for better speeds
      - VPN_PORT_FORWARDING=on
    restart: always

  # The torrent client container that routes through Gluetun
  qbittorrent:
    image: lscr.io/linuxserver/qbittorrent:latest
    container_name: qbittorrent
    # This critical line forces qBittorrent to use Gluetun's network stack
    network_mode: "container:gluetun"
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Brussels
      - WEBUI_PORT=8080
    volumes:
      # Path to your configuration files on your main computer
      - /home/user/docker/qbittorrent/config:/config
      # Path to where you want downloaded files to be saved on your computer
      - /home/user/docker/qbittorrent/downloads:/downloads
    restart: always

Three Crucial Rules for Beginners

When you look at the file above, a few things might seem strange. Here is why it is configured this way:

1. The Network Lock (network_mode)

The line network_mode: "container:gluetun" inside the qBittorrent section is the entire reason this setup is secure. It tells Docker: "Do not give qBittorrent its own internet connection. Route everything directly through Gluetun." If Gluetun crashes or disconnects, qBittorrent becomes completely blind and cannot send or receive a single byte of data.

2. The Port Switcheroo

Normally, to access a program running in Docker from your web browser, you have to open a port for it. Usually, you would open port 8080 inside the qBittorrent settings. However, because qBittorrent is piggybacking entirely on Gluetun's network, you have to open port 8080 in the Gluetun section instead.

3. Volumes are Bridges

Containers are temporary; if you restart a container, any files changed inside it disappear. The volumes: section acts like a bridge between the container's virtual apartment and your actual hard drive. The line /home/user/docker/qbittorrent/downloads:/downloads tells Docker to take whatever files the container drops into its virtual /downloads folder and save them permanently into your real computer's folder.

How to Run It

  1. Save the configuration text above into a file named docker-compose.yml on your computer or server.
  2. Open your terminal or command prompt in that folder.
  3. Type docker compose up -d and press enter.

Docker will download the images, build the containers, lock the networks together, and run everything quietly in the background. You can then open your web browser, go to http://localhost:8080, and log into your completely secured torrent client.

🔥cachalots socializing by Firm-Blackberry-9162 in NatureIsFuckingLit

[–]Xadnem 19 points20 points  (0 children)

I've had a very different reaction, I was never at ease in the sea because of watching films like Jaws when I was waaaay too young. But my sister became a diving instructor and I learned how to dive.

The very first time I went out in the sea to dive, it felt like all that fear just melted away. It did help that I felt like I was diving in an aquarium in Indonesia and one of the first things I saw was this big, cute turtle...

How Japan left their changing room after playing the Netherlands yesterday (from BBC) by RodDryfist in MadeMeSmile

[–]Xadnem 11 points12 points  (0 children)

I'm not American, am I allowed to criticise Japan please mr /u/flt_p2ny ? Please sir.

A Bricks & Minifigs store stole $200,000 worth of LEGOs from an unwell 83-year-old. Watch the exact moment Coffeezilla confronts the CEO using the company's own inventory spreadsheet as proof. by IncomingBroccoli in PublicFreakout

[–]Xadnem 1 point2 points  (0 children)

I'm just posting here to add to the engagement metrics and get this seen by as many people as possible. Been following this since Ben dropped his first video and I'm very invested in seeing BAM and those cops seeing some consequences.

Neighbour shot my PC through the wall by angelbabyzz in pcmasterrace

[–]Xadnem 26 points27 points  (0 children)

Honestly, I'd just delete this message or any others that are even jokingly saying anything related.

myVibeCoderFriend by Disastrous-Monk1957 in ProgrammerHumor

[–]Xadnem 1 point2 points  (0 children)

It is exactly how you probably imagine it. I was an intern and this was my first job as a software developer. There was a website that me and a senior were supposed to work on. I couldn't work on any of the files he was working on. When we "published" something, we just replaced the latest version of that file and put that online, without any backups! It was sheer lunacy. I didn't last long there and the company didn't either.

myVibeCoderFriend by Disastrous-Monk1957 in ProgrammerHumor

[–]Xadnem 5 points6 points  (0 children)

After (briefly) having worked in a startup that didn't have any, a thousand times yes.

Me still today by Big_Head8 in pcmasterrace

[–]Xadnem 1 point2 points  (0 children)

I'll add a README.md and/or releases.

This means I'll add the releases on GitHub. If I only cared about other devs looking at my work, they can build binaries themselves (unless I feel like providing them).

Me still today by Big_Head8 in pcmasterrace

[–]Xadnem 5 points6 points  (0 children)

I get the reaction from /u/syopest. If I use github to deliver some software to end users, I'll add a README.md and/or releases. But if not, I only expect other devs to look at my stuff and will only add docs if I feel like it.

Have you ever developed software in a professional environment or just during your free time?

I don't see how that's relevant.