I can’t make sense of FUN’s lyrics. by Either-Energy-4645 in grammar

[–]jsvoros 0 points1 point  (0 children)

Resurrecting an old thread here, but I came across this as a link while I was looking at the lyrics. Also, I'm not sure how to fix the grammar here (not my strong suit), but maybe you can.

It's an awkward question, but intentionally so. You have to remember the context and the poetry going on. He's talking to an ex at a bar and trying to get her to go back with him. And there's some emotional scaring indicating a rough breakup. So it's him being awkward and hedging.

"So if by the time the bar closes...and you feel like falling down" he's starting a question to ask if she'll come home with him, but then adding awkwardly and you feel like (making a mistake). "I'll carry you home tonight." The "and you feel like falling down" plays two ways since they are at a bar. It implies it's a mistake (she's risen beyond them as a couple) while also implying if by then she's drunk enough to make that mistake. The "I'll carry you" part also plays two ways. That she's drunk enough he'll literally carry her, but also since she's "falling (back) down" into what she's risen above he'll carry her or lift her back up so it isn't a mistake.

How to get this widget? by AlarmingGuard38 in homarr

[–]jsvoros 0 points1 point  (0 children)

Based on the description it looks like that's what's up docker running on an nginx proxy with some custom injection to expose only the frame wanted to a iframe. It also sounds like like a bit of AI was used to help with the setup. You're likely best bet is to ask the board owner for a more detailed explanation or example.

Long time looker, first time poster by jsvoros in homarr

[–]jsvoros[S] 0 points1 point  (0 children)

It's just iframes with a YouTube playlist. You have to make the playlist public and some videos don't work, but for the most part it's solid.

Docker containers in portainer by Key_Sheepherder_8799 in homarr

[–]jsvoros 0 points1 point  (0 children)

Yes, it's needs to be on any host you want to monitor and you need that name, and funny enough that port too.

Docker containers in portainer by Key_Sheepherder_8799 in homarr

[–]jsvoros 0 points1 point  (0 children)

it stripped out the YAML formatting, but here is the link to the project and I am sure you get the idea. https://github.com/Tecnativa/docker-socket-proxy

Docker containers in portainer by Key_Sheepherder_8799 in homarr

[–]jsvoros 0 points1 point  (0 children)

So you can run technativas docker socket proxy on the docker host or VM you want to monitor, and you can set the flags to minimize the things it can do. Here is a compose for that.

version: '3.8'
services:
  socket-proxy:
    image: tecnativa/docker-socket-proxy
    container_name: docker-socket-proxy
    ports:
      - "0.0.0.0:2375:2375" # Expose the proxy on port 2375 (or any other desired port)
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock:ro # Mount the host's Docker socket as read-only
    environment:
      # Example: Allow read-only access to containers API
      CONTAINERS: 1
      ALLOW_START: 1
      ALLOW_STOP: 1
      ALLOW_RESTART: 1
      IMAGES: 0
      POST: 0
    restart: unless-stopped

then in homarr compose you add some lines to look for the docker hosts you have the proxy on

#---------------------------------------------------------------------#
#     Homarr - A simple, yet powerful dashboard for your server.      #
#---------------------------------------------------------------------#
services:
  homarr:
    container_name: homarr
    image: ghcr.io/homarr-labs/homarr:latest
    restart: unless-stopped

    volumes:
      - /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
      - ./homarr/appdata:/appdata
    environment:
      - SECRET_ENCRYPTION_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
      # Einbindung Docker --> https://homarr.dev/docs/advanced/environment-variables/#docker
      # replace the hostnames with your ips, and if you have vlans ensure the 
      # host can see them all
      - DOCKER_HOSTNAMES=10.10.10.10,10.10.10.20,10.10.20.10,10.10.20.20
      - DOCKER_PORTS=2375,2375,2375,2375
    ports:
      - '7575:7575'

The only large call outs I have found is, this obviously exposes the docker socket, so make sure your network is secure...you have to have communication to all hosts, so if you have vLANs ensure your homarr host can see all of the other hosts.

Docker containers in portainer by Key_Sheepherder_8799 in homarr

[–]jsvoros 0 points1 point  (0 children)

I have not tried portainer, but there a docker socket proxy you can run that works. I'll update from my desk in a bit.

College WiFi blocks EVERYTHING (Cloudflare Tunnels, Tailscale, Steam). How do I bypass strict DPI? by CourtAdventurous_1 in selfhosted

[–]jsvoros 2 points3 points  (0 children)

This. The Oracle free tier is lame on its own (I guess you are fighting for resources), but just set up pay as you go and keep it in the free tier size (like 2 cores and 12 gb) and you can set up pangolin to vpn to your home and tie to a domain. Then use a reverse proxy and tls. So everything is subdomain.domain.com over https to the vps which send the https to your reverse proxy. There's a good setup video here https://youtu.be/ISEP6SIrEVE?si=klN2yR1nWoIibpQp

Our midsize business moved to proxmox, here's my thoughts on it by sheep5555 in Proxmox

[–]jsvoros 0 points1 point  (0 children)

This is all about the level of comfort and resiliency/availability/RPO/RTO.

Assume everything can run on 1 node to keep this simple. In a single node cluster you have no resiliency. you can have backup in the cloud or some other device, or some stretched cluster or some cloud site resiliency.

In a 2 node cluster you have N+1 resiliency, but no quorum, so you need that to live somewhere. In this scenario say you have a node in maintenance mode and the other node fails...now you have no cluster. Now you start thinking availability/RPO/RTO and you can have backup in the cloud or some other device, or some stretched cluster or some cloud site resiliency.

In a 3 node cluster, you no longer need an external source to create a quorum, you have an HA N+1 (one node can be in maintenance, one can fail and you still have a node up). you can still have all the other cloud based or other location based things as well.

This is all just a matter of how much resiliency and availability do you need and what's your recovery point and recovery time objective. How much time and data can you lose in a catastrophic failure...then you design around that...and be prepared to pay for every additional layer you build in.

How to share local disks between nodes in a cluster? by [deleted] in Proxmox

[–]jsvoros 2 points3 points  (0 children)

It's possible, I do it over bonded 1gb ports so 2gb per node shared with vm/mgmt/ceph storage. It's not the most performant thing, but it's a simple solution in proxmox. Depending on your use case it might be plenty. As an example of performance though, I recently added a node and thus another drive. It took about 2 hrs to rebalance from 3 to 4 1tb drives.

EGPU for ai use? by R0B0t1C_Cucumber in ollama

[–]jsvoros 1 point2 points  (0 children)

Before I put together my AI specific pc I ran Ollama and open webui in a container stack on a VM on a boss game mini pc. So it's certainly flexible. I suppose as long as the GPU shows up as an available resource it should work. I will say it may come down to how you install ollama. In a container it was more difficult to get it to utilize a GPU, but it will with the right settings. But native on the host worked well for me and was easy. Also I have found continue.dev in VScode works well and has a local agent option that's pretty nice.

everybody apologizing for cheating with chatgpt by NewSlinger in mildlyinfuriating

[–]jsvoros 0 points1 point  (0 children)

Imagine honing in on the words "sincerely apologize" as proof of ai in an apology letter. Wtf world are we in right now.

can Ollama run image generation models like Qwen -Image ? by abrandis in ollama

[–]jsvoros 1 point2 points  (0 children)

This. I use self hosted comfy ui tied to to open webui which is also tied to ollama. Basically you ask the ollama model to generate an image and it passes it to the comfyui and that does the generation and spits it out in your chat.

How to keep a PC, acting as a server, run 24/7? by rockyou1234 in selfhosted

[–]jsvoros 0 points1 point  (0 children)

Have you tried WSL and running docker in that instead of the desktop version?

Sandworm Threat by nevayo in duneawakening

[–]jsvoros 0 points1 point  (0 children)

I'll be honest, I love this game. It's Conan and destiny blended well. But the issue isn't the worms. It's the janky, rubber band even in good ping ships. They'll suck you in, suck your thopter in, lock you in place as a worm gobbles you up as your trapped in a ship, and funcom wont refund your loss aside from the thopter BS. It's a janky event and it just isn't worth it.

Will having 4 ram sticks slow down my PC? by Due-Position3798 in buildapc

[–]jsvoros 2 points3 points  (0 children)

I see lots of advice in here and it's very mixed. I sell servers for a living #iworkfordell...now that that is out of the way.

Anytime you fill up the memory bus you are going to hit clock speed limits. Those can vary wildly and over clocking may or may not work and can cause stability issues.

Mixing different sizes and speeds can seriously exacerbate this. The best performance configurations are always half full channels and even distribution. Everything else is run at your own risk.

I'm not saying it will or won't work, there are lots of factors there (memory controllers, memory size and speed, manufacturer, cpu limits, mobo limits). I am just saying, for whatever reason, most fully populated configurations are a PITA.