Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)RR
Posts
7
Comments
372
Joined
2 yr. ago

  • I'm starting to root for Microsoft's failure these days, because they haven't done anything useful or innovative since the pandemic.

    That is the most insanely generous thing I've read in years. What the — pardon my French — fucking fuck have they done that was useful or innovative in the last 20 years?! 🤯

  • Very nice, thanks for sharing!

    Is this something that a prose linter like Vale could do? Haven't managed to get Vale working, and doesn't work in Obsidian, where I do my writing, but still intrigued by what I could do with a working prose linter 🤔

    Does anyone have experience with Vale, or a similar linter?

  • Asked cgpt to compare lasers to microwave for data transmission; take with a grain of salt, but seems transfer rate especially isn't comparable.


    🔄 Comparison: Laser vs Microwave Data Transmission

    📋 Comparison Table

    FeatureLaser Transmission (e.g., Taara)Microwave Transmission
    MediumFree-space optical (light, like a fiber-optic cable without fiber)Radio/microwave frequencies (GHz range)
    Wavelength~780–1600 nm (near-infrared)~1–100 GHz
    Typical Data Rate10–100 Gbps (Taara targets ~20 Gbps and higher)100 Mbps – 1 Gbps (modern line-of-sight microwave)
    Max Practical Range~10–20 km, highly sensitive to weather~30–50 km, more tolerant of weather
    Line-of-Sight RequirementYes, with tight beam alignment neededYes, but more forgiving alignment
    Weather SensitivityHigh — fog, rain, dust degrade performanceModerate — heavy rain can attenuate signal
    LatencyLowLow
    Power UsageLower power for same data rateSlightly higher power use
    SecurityHigh — narrow beam, hard to interceptModerate — wider beam, easier to jam or intercept
    DeploymentHarder — requires precision mounting and stabilityEasier — flexible mounting, ruggedized equipment
    CostHigher upfront (optical gear, alignment systems)Lower per-unit, mature market
    Use CasesHigh-throughput backhaul (rural, terrain-constrained areas)Medium-throughput links, often as telco backbone

    📌 Key Insights

    • Bandwidth: Lasers have a much higher data capacity, similar to fiber optics. Microwave is far more limited in throughput.
    • Range: Microwave wins in raw distance, particularly in less-than-ideal weather. Lasers struggle with any visibility obstruction.
    • Stability: Lasers require precision alignment and environmental stability (wind, vibration can disrupt link). Microwaves are more forgiving.
    • Security: Lasers are harder to intercept due to their tight beams. Microwaves, being broader, are more vulnerable to eavesdropping and interference.

    🧠 When to Use What

    Use Laser Links (e.g., Taara) when:

    • You need fiber-like throughput without laying fiber
    • The link is short to medium range (under 20 km)
    • You can ensure clear line-of-sight and good weather conditions
    • You prioritize security and low interference

    Use Microwave Transmission when:

    • You need a reliable, moderate-speed link over 30–50 km
    • Operating in all weather conditions is a must
    • You want easier setup with more flexibility in alignment
    • Budget constraints are tighter
  • I fucking love the thought of paying Big Corporate in 'exposure' 😂

    Also my basic experience — nobody lost anything (Linux ISOs, obviously), because the alternative was not me buying something.

    Edit: As an adult, I've spent more money on vinyl records in the last decade than I have buying music for the first three quarters of my life. And much of the music in the first three quarters was also on vinyl.

    And then Spotify subscription fees since launch. What is that, 20 years? 😳 And now I'm trying to move to self-hosted because all of Spotify's buying stock in weapon manufacturers and giving head to Dumbph & Friends is making me retch 🤢

  • Denmark, so ... none? 🤔

    If we're counting foraging for plants, there's ramsons, garlic mustard, dandelions and ground elder. Probably also a bunch of edible flowers. Ground ivy springs to mind, but don't know much about the others.

  • Permanently Deleted

    Jump
  •  
        
    ### GLUETUN
    
    services:
      gluetun:
        image: qmcgaw/gluetun
        container_name: gluetun
        cap_add:
          - NET_ADMIN
        devices:
          - /dev/net/tun:/dev/net/tun
        ports:
          - 8888:8888/tcp # HTTP proxy
          # - 8388:8388/tcp # Shadowsocks
          # - 8388:8388/udp # Shadowsocks
          - 8090:8090/tcp # qbittorrent
          - xxxx:xxxx/tcp
          - 3423:3000/tcp # librewolf
        volumes:
          - /volumex/docker/gluetun:/gluetun
        environment:
          - PUID=xxxx #CHANGE_TO_YOUR_UID
          - PGID=xxxx #CHANGE_TO_YOUR_GID
          - TZ=Europe/xxxx #CHANGE_TO_YOUR_TZ
          - VPN_SERVICE_PROVIDER=airvpn
          - VPN_TYPE=wireguard
          - WIREGUARD_PRIVATE_KEY=xxxx
          - WIREGUARD_PRESHARED_KEY=xxxx
          - WIREGUARD_ADDRESSES=xxx.xxx.xxx.xxx
          - SERVER_REGIONS=Europe
          - HTTPPROXY=off #change to on if you wish to enable
          - SHADOWSOCKS=off #change to on if you wish to enable
          - FIREWALL_OUTBOUND_SUBNETS=172.20.0.0/16,192.168.0.0/24 #change this in line with your subnet see note on guide.
          - FIREWALL_VPN_INPUT_PORTS=xxxx #uncomment this line and change the port as per the note on the guide
          - UPDATER_PERIOD=24h
        network_mode: bridge-xxxx
        labels:
          - com.centurylinklabs.watchtower.enable=false
        security_opt:
          - no-new-privileges:true
        restart: always
    
    
    ### QBITTORRENT
    
      qbittorrent:
        image: linuxserver/qbittorrent:5.0.1
        container_name: qbittorrent
        environment:
          - PUID=xxxx #CHANGE_TO_YOUR_UID
          - PGID=xxxx #CHANGE_TO_YOUR_GID
          - TZ=Europe/xxxx #CHANGE_TO_YOUR_TZ
          - WEBUI_PORT=8090
          - UMASK=022
        volumes:
          - /volumex/docker/qbittorrent:/config
    
          - /volumex/linux-isos/:/data
        network_mode: service:gluetun # run on the vpn network
        depends_on:
          gluetun:
            condition: service_healthy
        security_opt:
          - no-new-privileges:true
        restart: always
    
    ### LIBREWOLF
    
      librewolf:
        container_name: LibreWolf
        image: ghcr.io/linuxserver/librewolf:latest
        security_opt:
          - no-new-privileges:false
          - seccomp:unconfined
        #healthcheck:
         # test: timeout 10s bash -c ':> /dev/tcp/127.0.0.1/3000' || exit 1
          #interval: 10s
          #timeout: 5s
          #retries: 3
          #start_period: 90s
        environment:
          CUSTOM_USER: xxxx
          PASSWORD: xxxx
          TZ: Europe/xxxx
          PUID: xxxx #CHANGE_TO_YOUR_UID
          PGID: xxxx #CHANGE_TO_YOUR_GID
        volumes:
          - /volumex/docker/librewolf:/config:rw
        network_mode: service:gluetun # run on the vpn network
        restart: no 
        depends_on:
          gluetun:
            condition: service_healthy
        shm_size: "5gb"
    
      
  • Writing @beehaw.org

    Probably an oldie, but thought some of you might get a laugh out of this one...

    Music @beehaw.org

    Aphex Twin — Windowlicker

    Music @beehaw.org

    The Hives — 'Bogus Operandi' (2023)

    Music @beehaw.org

    The Genius Of Radiohead’s "Ok Computer" | Classic Album Under Review | Amplified

    Creative @beehaw.org

    J is for Journey

    Free and Open Source Software @beehaw.org

    A FOSS ebook reader for Android with Google Text-to-Speech support?

    Free and Open Source Software @beehaw.org

    ReVanced Android playback speed shortcut?