Items tagged with: raspberry

Search

Items tagged with: raspberry


Jeff Geerling got the brunt of YouTube wrath when he showed people how to host their own media {media that they legally own, which means that they either have the originals, or have paid for whatever digital version they have} with the power of Open Source tools
Jeff explicitly made sure that he never ever told people how to circumvent subscriptions or worse. Nothing that could harm YouTube bottomline was ever discussed in this video.

Yet for reasons obvious to Open Source people like me YouTube gave him his second strike.

3rd Strike and you're gone. This is how Google / this is how Alphabet is treating their Golden Geeze.

Creators like Jeff are very valuable both to the people who follow them and to YouTube. However Google seems to be at Super odds with Open Source, needing it to run their data centers but hating it because they have to share the code again that they've worked upon.

Google is a paradoxical Company which is being controlled by Alphabet, a schizophrenic Entity drunk on power Ads and control

To me you're a star @geerlingguy keep Shining

jeffgeerling.com/blog/2025/sel…

#Media #Hosting #OpenSource #programming #POSIX #Pie #Raspberry #4K #Video #4KVideo


Friendica Installation

Ich versuche gerade die #Fediverse Anwendung #Friendica auf meinem #Raspberry Pi 5 in einem #Podman #Container zu installieren. Aber bei der Datenbank ist Schluss. da bleibt es hängen. Weiß jemand Rat? @Friendica Support zum Beispiel?

Hardcopy Friendica Installation

Hardcopy Friendica Installation

version: "3.7"

services:

  mariadb:
    image: docker.io/library/mariadb:latest
    restart: always
    volumes:
      - mydb:/var/lib/mysql
    ports:
      - "6033:3306"
    environment:
      MYSQL_ROOT_PASSWORD: *****
      MYSQL_DATABASE: friendica
      MYSQL_USER: friendica
      MYSQL_PASSWORD: *****

  phpmyadmin:
    container_name: phpmyadmin_9092
    image: docker.io/library/phpmyadmin:latest
    restart: always
    ports:
      - "9092:80"
    environment:
      - PMA_ARBITRARY=1
      - PMA_HOST=mariadb
    depends_on:
      - mariadb

  app:
    image: docker.io/library/friendica
    container_name: friendica_9093
    restart: always
    volumes:
      - friendica:/var/www/html    
    ports:
      - "9093:80"
    environment:
      - MYSQL_HOST=mydb
      - MYSQL_USER=friendica
      - MYSQL_PASSWORD=*****
      - MYSQL_DATABASE=friendica
      - FRIENDICA_ADMIN_MAIL=*****
    depends_on:
      - mariadb

volumes:
  mydb:
  friendica:

networks:
  proxy-tier:


#WhereIsMySurprisedFace The engineers at the #Raspberry foundation "invented" a new non-standard 5V/5A USB PD mode for the #RPi5.

Will these people ever learn?

Here's the relevant part from the current USB PD standard, Release 3.1, Version 1.8, page 76. A 5V/5A mode simply does not exist. If you need 25W, you have the option to use 9V with 3A.That gives you 27W. So instead of adding that option to the board, they opted for developing their own non-standard power brick. Le sigh.