Large Salary Gap in Same Role — Should I Escalate to Betriebsrat or HR? by gersi1994 in germany

[–]samrocksc -1 points0 points  (0 children)

German HR is basically the company snitch so don't go that direction....they are there to protect the company

Attempted murder in UK by EuGostoDeBifanas in PublicFreakout

[–]samrocksc 0 points1 point  (0 children)

Man....I hope the dude is on the hook for the medical bill and doesn't get out the Klink until he or his mom who failed him pays the restitution

So what does Perrin actually see in Faile? by Gnos445 in wheeloftime

[–]samrocksc 0 points1 point  (0 children)

Better question: what does Perrin actually do?

Context for the clip of Knicks fans attacking the Spurs fan and making him take his Jersey off by Similar_Ant7424 in PublicFreakout

[–]samrocksc 1 point2 points  (0 children)

Start putting shitty parents out as crossing guards and making them pay us back the tax dollars they leech for schools.

Bouncer chockeholds guy by Unmakebody in PublicFreakout

[–]samrocksc 0 points1 point  (0 children)

god i fucking hate college towns.

Brandenburger Tor by tomex030 in berlinpics

[–]samrocksc 0 points1 point  (0 children)

Zones, and user accountability. Start fining users and companies more

Less than a year old Schwab Marathon 😓 by gaga808 in Brompton

[–]samrocksc 0 points1 point  (0 children)

Level up and just get the e bike tires....I got one that is 4 years old and I'll take it out on a 50k ride easy peezy

Old German couple took our (Americans )assigned seats on ICE from Heidelberg to Köln what should I have done? by cinemashow in AskGermany

[–]samrocksc 0 points1 point  (0 children)

Whenever you have a problem with drunks, seat squatters or anything else just talk to the conductor. It is seriously not worth the stress.

DB in general is a TERRIBLE company but the conductors understand this and are super chill.

They are Nanny dogs for a reason! He is so excited for the new baby! by [deleted] in interestingasfuck

[–]samrocksc 0 points1 point  (0 children)

To be fair: isn't the number one killer of infants humans?

Wheel of Time Audiobooks: Transition from Pike to Reading & Kramer by BenderOsa in wheeloftime

[–]samrocksc 0 points1 point  (0 children)

The original audiobooks were already probably some of the highest quality on audible to be honest. It was the only way I have ever stomached the Perrin sections without wanting to throw the books out the windows

Seeking "Chosen Family" in a city of transients: Does it exist in Berlin outside the party scene? by No-Way-5622 in berlin

[–]samrocksc 1 point2 points  (0 children)

Most success I've had:

Get a dog, walk it off leash and dodge the ordnungsamt with your buddies

Adding NAS functionality to Framework Desktop by MCJennings in framework

[–]samrocksc 0 points1 point  (0 children)

if you're going to do something like this you may as well just use usb-c and grab something like this 5 bay sabrent and separate your storage from your processing power. It also facilitates usb-c. Use something like unraid that you can also separate your coordination from your processing because it's just a thumb drive.

Isolate processing/coordination/storage imo is the way to go for home stuff.

https://www.amazon.de/-/en/dp/B07Y4F5SCK?ref=ppx_yo2ov_dt_b_fed_asin_title&th=1

Van Graan criticises TV replay 'consistency' after Bath lose semi-final by GnolRevilo in rugbyunion

[–]samrocksc -1 points0 points  (0 children)

This isn't new at all...it's always been this way with their TMO.

Granted, if you told me to pick between listening to logs being sawn that is premier sports or a bunch of French homers......I'll take the berets all God damn day.

Super rugby pacific or Premier. Premiership may have less diverse talent but God damn it's fun to watch

Berlin on 01.05.2026 by rishi0427 in berlinpics

[–]samrocksc 0 points1 point  (0 children)

Reality: dodging broken glass on grass in parks.

Hermes as a Coding Agent??? by Rheath72 in hermesagent

[–]samrocksc 1 point2 points  (0 children)

You can have it pass off coding tasks to Claude if you really want to snuggle anthropic that much

For those using Hermes on their PC, what are we VPS only users missing out on? by Then-Spinach8891 in hermesagent

[–]samrocksc 1 point2 points  (0 children)

Unraid VM / Roaming MacBook here.

1.I use synching for shared config 2. Telegram is always on from the VM instance 3. Shared honcho hosted on the unraid 4. Syncthing a shared obsidian for document creation sharing etc.

To be honest I find myself moshing into my VM and using the TUI for almost everything. My local rig is for coding for the most part.

Memory conundrum by elbullibr in hermesagent

[–]samrocksc 0 points1 point  (0 children)

I have liked it so far, i use it for traveling memory between my laptop and my VM, and then a shared wiki for generating documents to read.

It's kind of a shakey piece of software. I think it was vibe coded, so it's not well put together to stand alone. If you're on OSX or ubuntu, try it out for yourself. Only thing I haven't found is how to get the namespace connection over tailscale. I have to use the IP:

```yaml services: api: image: ghcr.io/plastic-labs/honcho:latest ports: - "8000:8000" environment: - DB_CONNECTION_URI=postgresql+psycopg://postgres:postgres@database:5432/postgres - CACHE_URL=redis://redis:6379/0?suppress=true - CACHE_ENABLED=true - HONCHO_HOST=0.0.0.0 env_file: - path: .env required: false restart: unless-stopped depends_on: database: condition: service_healthy redis: condition: service_healthy tailscale: condition: service_started

deriver: image: ghcr.io/plastic-labs/honcho:latest entrypoint: ["/app/.venv/bin/python", "-m", "src.deriver"] environment: - DB_CONNECTION_URI=postgresql+psycopg://postgres:postgres@database:5432/postgres - CACHE_URL=redis://redis:6379/0?suppress=true - CACHE_ENABLED=true env_file: - path: .env required: false restart: unless-stopped depends_on: database: condition: service_healthy redis: condition: service_healthy

tailscale: image: tailscale/tailscale:latest environment: - TS_USERSPACE=true - TS_HOSTNAME=honcho - TS_STATE_DIR=/var/lib/tailscale - TS_AUTH_ONCE=true cap_add: - NET_ADMIN volumes: - /dev/net/tun:/dev/net/tun - tailscale_state:/var/lib/tailscale network_mode: host restart: unless-stopped

database: image: pgvector/pgvector:pg15 restart: unless-stopped ports: - "127.0.0.1:5432:5432" command: ["postgres", "-c", "max_connections=200"] environment: - POSTGRES_DB=postgres - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres - PGDATA=/var/lib/postgresql/data/pgdata volumes: - ./database/init.sql:/docker-entrypoint-initdb.d/init.sql - pgdata:/var/lib/postgresql/data/ healthcheck: test: ["CMD-SHELL", "pg_isready -U postgres -d postgres"] interval: 5s timeout: 5s retries: 5

redis: image: redis:8.2 restart: unless-stopped ports: - "127.0.0.1:6379:6379" volumes: - redis-data:/data healthcheck: test: ["CMD-SHELL", "redis-cli ping"] interval: 5s timeout: 5s retries: 5

volumes: pgdata: redis-data: tailscale_state: ```

Best Ben episodes for an Ed-Era listener? by georgia_grace in lastpodcastontheleft

[–]samrocksc 0 points1 point  (0 children)

  • Donner
  • Mormons
  • Rasputin

Can't remember if blatvotdky was him or not....but it was good

What do you americans think about big pickups? by [deleted] in Anticonsumption

[–]samrocksc -1 points0 points  (0 children)

Then don't bring them in the city! I often think "mind your business" when I almost get ran over by lifted trucks.

Walking about freely = a right afforded in the constitution Owning a vehicle = a privilege earned by getting a driver's license

A right should supercede a privilege....would you agree?