@giddy@aussie.zone avatar

giddy

@giddy@aussie.zone

My son is trans which makes me… transparent

This profile is from a federated server and may be incomplete. Browse more on the original instance.

giddy,
@giddy@aussie.zone avatar

That’s the closest thing I’ve found to my dear departed Pebble

giddy,
@giddy@aussie.zone avatar

nice work! I had given up on getting FF sync running. I used xBrowserSync for a while but that has no iOS support so am currently using Linkding. I will give this a shot :-)

giddy,
@giddy@aussie.zone avatar

Every browser extension and mobile app keeps a copy. Between 2 PC’s, 1 Macbook, 1 iPad and 1 iPhone I think I will survive a server crash

What's the consensus here regarding Babylon Five?

I have the series on DVD but I’ve never seriously cracked it, only seen a few episodes. Was wondering what people here think, is it as good as the internet often says it is? I know it was an inspiration for one of my favorite franchises (Mass Effect) and The Orville had a cute reference to it by making its main actor the...

giddy,
@giddy@aussie.zone avatar

Definitely worth getting into. Seasons 2-4 are some of the best sci-fi ever produced

giddy,
@giddy@aussie.zone avatar

Yeah i tried setting my subnet to 192.168.3.0/24 (the one used by my intranet) but they still show up

giddy,
@giddy@aussie.zone avatar

After adding about 20 MAC addresses I gave up and just moved pi.alert to my secondary dns server (a pi zero) which has no docker

giddy,
@giddy@aussie.zone avatar

Has anyone tried the docker variant of pi.alert? I presume that one must be smart enough to filter out docker ‘devices’

giddy,
@giddy@aussie.zone avatar

I loved the recruitment videos they played in the early days. They really played up the idea that The Dark Order was hiding in plain sight. Anyone could be a member of The Dark Order.

Still waiting for a reply to my signup submission. They shouldn’t have ditched #5

giddy,
@giddy@aussie.zone avatar

I seriously suggest you give Nextcloud another go, this time under Docker. Very simple to do.

Save the following in a new folder as docker-compose.yml


<span style="color:#323232;">version: '3'
</span><span style="color:#323232;">
</span><span style="color:#323232;">volumes:
</span><span style="color:#323232;">  db:
</span><span style="color:#323232;">
</span><span style="color:#323232;">services:
</span><span style="color:#323232;">
</span><span style="color:#323232;">  nextcloud-app:
</span><span style="color:#323232;">    image: nextcloud
</span><span style="color:#323232;">    container_name: nextcloud-app
</span><span style="color:#323232;">    restart: always
</span><span style="color:#323232;">    volumes:
</span><span style="color:#323232;">      - ./data:/var/www/html
</span><span style="color:#323232;">    environment:
</span><span style="color:#323232;">      - MYSQL_PASSWORD=changeme
</span><span style="color:#323232;">      - MYSQL_DATABASE=nextcloud
</span><span style="color:#323232;">      - MYSQL_USER=nextcloud
</span><span style="color:#323232;">      - MYSQL_HOST=nextcloud-db
</span><span style="color:#323232;">    ports:
</span><span style="color:#323232;">      - "80:80"
</span><span style="color:#323232;">    links:
</span><span style="color:#323232;">      - nextcloud-db
</span><span style="color:#323232;">
</span><span style="color:#323232;">  nextcloud-db:
</span><span style="color:#323232;">    image: mariadb
</span><span style="color:#323232;">    container_name: nextcloud-db
</span><span style="color:#323232;">    restart: always
</span><span style="color:#323232;">    command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
</span><span style="color:#323232;">    volumes:
</span><span style="color:#323232;">      - db:/var/lib/mysql
</span><span style="color:#323232;">    environment:
</span><span style="color:#323232;">      - MYSQL_ROOT_PASSWORD=changeme
</span><span style="color:#323232;">      - MYSQL_PASSWORD=changeme
</span><span style="color:#323232;">      - MYSQL_DATABASE=nextcloud
</span><span style="color:#323232;">      - MYSQL_USER=nextcloud
</span>

run this command in the folder -

docker-compose up -d

open localhost

giddy,
@giddy@aussie.zone avatar

No you can use other databases. It is separate here

giddy,
@giddy@aussie.zone avatar

Can I ask why the separate NC container for cron? Also, I presume the mysqldump container is for easy db backups?

giddy,
@giddy@aussie.zone avatar

How is NC using redis? I can’t see any links from the NC container

giddy,
@giddy@aussie.zone avatar

That is better than my NUC and I have no performance issues

giddy,
@giddy@aussie.zone avatar

Thanks!

giddy,
@giddy@aussie.zone avatar

+1 for Vaultwarden. Much simpler to set up

giddy,
@giddy@aussie.zone avatar

Plenty of free hostname providers. I use Dynu

giddy,
@giddy@aussie.zone avatar

Yup Vaultwarden (the self host server) is easy to run in Docker and works well with the Bitwarden apps

giddy,
@giddy@aussie.zone avatar

What are you running for Netflix and Prime Video?

giddy,
@giddy@aussie.zone avatar

ditto Gmail?

giddy,
@giddy@aussie.zone avatar

I use Nginx Proxy Manager to reverse proxy all my services including Vaultwarden -

Setup in NPM -


<span style="color:#323232;">Open Nginx Proxy Manager Admin Portal
</span><span style="color:#323232;">Click Proxy Hosts
</span><span style="color:#323232;">Click Add Proxy Host
</span><span style="color:#323232;">Fill in the details
</span><span style="color:#323232;">    Details tab
</span><span style="color:#323232;">        Domain Names - vault.your.domain
</span><span style="color:#323232;">        Scheme - http
</span><span style="color:#323232;">        Forward Hostname/IP - vaultwarden (this should be the name of your vw container)
</span><span style="color:#323232;">        Forward Port - 80
</span><span style="color:#323232;">        Tick Block Common Exploits
</span><span style="color:#323232;">        Tick Websockets Support
</span><span style="color:#323232;">        Access List - Publicly Accessible
</span><span style="color:#323232;">    Custom locations tab
</span><span style="color:#323232;">        Add the following locations
</span><span style="color:#323232;">            location 1
</span><span style="color:#323232;">                location - /notifications/hub
</span><span style="color:#323232;">                Scheme - http
</span><span style="color:#323232;">                Forward Hostname/IP - vaultwarden
</span><span style="color:#323232;">                Forward Port - 3012
</span><span style="color:#323232;">                Click the cog symbol and add the following to the textbox that appears
</span><span style="color:#323232;">                    proxy_set_header Upgrade $http_upgrade;
</span><span style="color:#323232;">                    proxy_set_header Connection "upgrade";
</span><span style="color:#323232;">                    proxy_set_header X-Real-IP $remote_addr;
</span><span style="color:#323232;">            location 2
</span><span style="color:#323232;">                location - /notifications/hub/negotiate
</span><span style="color:#323232;">                Scheme - http
</span><span style="color:#323232;">                Forward Hostname/IP - vaultwarden
</span><span style="color:#323232;">                Forward Port - 80
</span><span style="color:#323232;">                Click the cog symbol and add the following to the textbox that appears
</span><span style="color:#323232;">                    proxy_set_header Host $host;
</span><span style="color:#323232;">                    proxy_set_header X-Real-IP $remote_addr;
</span><span style="color:#323232;">                    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
</span><span style="color:#323232;">                    proxy_set_header X-Forwarded-Proto $scheme;
</span><span style="color:#323232;">            location 3
</span><span style="color:#323232;">                location - /
</span><span style="color:#323232;">                Scheme - http
</span><span style="color:#323232;">                Forward Hostname/IP - vaultwarden
</span><span style="color:#323232;">                Forward Port - 80
</span><span style="color:#323232;">                Click the cog symbol and add the following to the textbox that appears
</span><span style="color:#323232;">                    proxy_set_header Host $host;
</span><span style="color:#323232;">                    proxy_set_header X-Real-IP $remote_addr;
</span><span style="color:#323232;">                    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
</span><span style="color:#323232;">                    proxy_set_header X-Forwarded-Proto $scheme;
</span><span style="color:#323232;">    SSL tab
</span><span style="color:#323232;">        SSL Certificate - Request a new SSL Certificate
</span><span style="color:#323232;">        tick Use a DNS Challenge (or just expose port 80 if you accept the risk)
</span><span style="color:#323232;">        DNS Provider - Dynu (this is my dyndns provider)
</span><span style="color:#323232;">        Credentials File Content - replace YOUR_DYNU_AUTH_TOKEN with the API key from https://www.dynu.com/en-US/ControlPanel/APICredentials
</span><span style="color:#323232;">        Email Address for Let's Encrypt - your email
</span><span style="color:#323232;">        Tick I Agree to the Let's Encrypt Terms of Service
</span><span style="color:#323232;">Click Save
</span><span style="color:#323232;">Vaultwarden should now be accessible via https://vault.your.domain
</span>

How to make an MP3 player work in 2023?

If I wanted an MP3 player again, in 2023, and wanted to rip cds to it and put digitally purchased albums on it, as actual owned files (not inside an proprietary ecosystem where I pay to only listen to that track within that service) could I still do that? What would I need? I don’t own, and can’t afford, a “real...

giddy,
@giddy@aussie.zone avatar

I like to self host my stuff and have an Airsonic server with all my music. I can connect to it via web or a number of compatible apps available in the Play and App Stores. All the convenience of streaming and none of the subscription fees

giddy,
@giddy@aussie.zone avatar

The note about Pence refusing to get in the Secret Service car for fear of being prevented from filling his role worries me the most. The idea of Secret Service personnel participating in an attempted coup is terrifying.

giddy,
@giddy@aussie.zone avatar

If Scotty from marketing thinks it is a bad idea…

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • kavyap
  • DreamBathrooms
  • thenastyranch
  • magazineikmin
  • tacticalgear
  • khanakhh
  • Youngstown
  • mdbf
  • slotface
  • rosin
  • everett
  • ngwrru68w68
  • Durango
  • megavids
  • InstantRegret
  • cubers
  • GTA5RPClips
  • cisconetworking
  • ethstaker
  • osvaldo12
  • modclub
  • normalnudes
  • provamag3
  • tester
  • anitta
  • Leos
  • lostlight
  • All magazines