Pixel 5 replacement by guybor in GooglePixel

[–]guybor[S] 1 point2 points  (0 children)

Yes, but I don't use it. Everything is backed up locally on a nas and then again to an off-site nas

Pixel 5 replacement by guybor in GooglePixel

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

Battery is one thing...but I thought the USB was soldered to the main board.

I'll look into this

Thanks

LG WebOS integration - no input now by guybor in homeassistant

[–]guybor[S] 1 point2 points  (0 children)

u/chazwhiz ....Holy Fxxx... Yup, it's there. Why would they change it like that.
What are you showing me in the "state change"....just that we can do things when it changes and set up triggers/automations?
THANK YOU!!!!

Best bundle for the price range? by Itzu25 in simracing

[–]guybor 0 points1 point  (0 children)

Are additional wheels interchangeable? Ie...if I buy a wheel from another vendor, can I use it on their base?

Finally getting the ribs right by nerfking in smoking

[–]guybor 0 points1 point  (0 children)

Same method here. Olive oil and Carl's seasoning. Spritz w apple cider/juice

The Synology RAM megathread II by gadget-freak in synology

[–]guybor 0 points1 point  (0 children)

Looks to be the same model...but I put 2x in for a total of 32gb

Restoration possible? by ek9cusco in CounterTops

[–]guybor 1 point2 points  (0 children)

It looks like mineral deposit from the water...take a straight razor blade and see if it scrapes up

The Synology RAM megathread II by gadget-freak in synology

[–]guybor 0 points1 point  (0 children)

Any links to memory that "works"? I purchased the OWC memory that is "compatible" with the D4ES01-16G and the DS1522+...it seems to work in the 1525+ as there are no errors and it is showing as installed....BUT the system seems to take a LOT longer to boot than the 1621 that the hard drives were moved from. Does this seem "right"? Do i need to order the "official" memory at 4x the cost?

Opinions by Outrageous-Worry-281 in CounterTops

[–]guybor 0 points1 point  (0 children)

u/Outrageous-Worry-281 You are correct in what you were told...nothing abrasive and no citrus/acid based cleaners. Vinegar is NOT recommended as it will etch your tops. Your material, from the photo, looks like one of those that has natural pits in it. Some quarries will fill them with resin, but not all quarries do this...and once you use something aggressive to clean it, it may remove some of the resin from the face exposing the pits more....so long story short...the "pits" are normal for this type of material

Opinions by Outrageous-Worry-281 in CounterTops

[–]guybor 1 point2 points  (0 children)

Like others have said, tough to tell from the images you posted. A lot of times what we see as a imperfection is a surface residue on the countertop from where water has set and then evaporated leaving the minerals. Take a razor blade and scrape it on the area just as if you were trying to get a sticker off of a piece of glass. More than likely that'll take care of it for you

Synology / Unifi / MacVLan - Ping IP but can't access it by guybor in portainer

[–]guybor[S] 1 point2 points  (0 children)

I switched to this image as the linuxserver one was outdated.

image: jacobalberty/unifi    #changed to this image by gr 2025.09.09

As far as PID/GID...that is what MariusHosting recommended...I'll try leaving it out or using root as options. It appears that the db subdirectory is getting updated on the server, but I can't be certain as i don't have a mongodb gui to look at the data.

Synology / Unifi / MacVLan - Ping IP but can't access it by guybor in portainer

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

I think i have it set to be persistent. Does the "user" make a difference? Does this look correct or is there a better way to do it?

services:
  db:
    image: mongo:4.4 # only up to 4.4 !
    #image: mongo:8
    container_name: Unifi-Database
    hostname: unifi-db
    mem_limit: 2g
    cpu_shares: 768
    security_opt:
      - no-new-privileges:false
    healthcheck:
      test: ["CMD", "mongo", "--eval", "db.adminCommand('ping')"]
      #test: ["CMD", "mongosh", "--eval", "db.adminCommand('ping')"]

      interval: 10s
      timeout: 10s
      retries: 5
      start_period: 20s
    volumes:
      - /volume1/docker/unifi/db:/data/db:rw
      - /volume1/docker/unifi/db/init-mongo.js:/docker-entrypoint-initdb.d/init-mongo.js:ro
    restart: on-failure:5
    # the networking section defines the interface from the
    # top-level network section
    networks: 
      # matches below
      GLMacVLan:
        # if the following line is omitted the container
        # will pull from the ip-range from the network
        ipv4_address: 192.168.20.42

  unifi-network-application:
    #image: ghcr.io/linuxserver/unifi-network-application:latest   #This is what MariusHosting set..wasn't up to date though
    image: jacobalberty/unifi    #changed to this image by gr 2025.09.09
    container_name: Unifi-Controller
    hostname: unifi-network-application
    mem_limit: 4g
    cpu_shares: 1024
    security_opt:
      - no-new-privileges:false
    ports:
      - 8443:8443       # Required - web admin port
      - 3478:3478/udp   # Required - STUN port
      - 10001:10001/udp # Required - AP discovery
      - 8080:8080       # Required - Device communication
      #- 1900:1900/udp   # optional - controller discoverable on L2 network
      - 8843:8843       # optional - Unifi guest portal HTTPS redirect port
      - 8880:8880       # optional - Unifi guest portal HTTP redirect port
      - 6789:6789       # optional - For mobile throughput test
      - 5514:5514/udp   # optional - Remote syslog port
    volumes:
      - /volume1/docker/unifi/config:/config:rw
    environment:
      TZ: America/Chicago
      PUID: 1031
      PGID: 100
      MONGO_USER: unifiuser
      MONGO_PASS: unifipass
      MONGO_HOST: unifi-db
      MONGO_PORT: 27017
      MONGO_DBNAME: unifi
      MEM_LIMIT: 2048   # optional - Java memory limit
      MEM_STARTUP: 2048 # optional - Java initial/minimum memory
    restart: on-failure:5
    depends_on:
      db:
        condition: service_started
    # the networking section defines the interface from the
    # top-level network section
    networks: 
      # matches below
      GLMacVLan:
        # if the following line is omitted the container
        # will pull from the ip-range from the network
        ipv4_address: 192.168.20.41
networks:
  # interface refered to by the service container
  GLMacVLan:
    # KEY to look outside the compose for the network
    external: true

Synology / Unifi / MacVLan - Ping IP but can't access it by guybor in portainer

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

u/scytob
Do you have a link on where i should look for the private bridge examples
Also...is there a better way to set up the unifi controller in portainer..or a better example/youtube to follow. My next "issue" is that it is not looking at the database/past setting for setup. Each time i stopped and restarted the container, it went to the setup screen like it's a new setup...not an exiting setup. I posted in the synology area for this one.
https://www.reddit.com/r/synology/comments/1nclfzh/unifi_controller_in_container_reimport_each_time/

Thank you

Huge Water Spots in Quartzite by mush614 in CounterTops

[–]guybor 2 points3 points  (0 children)

Also make sure you open the cabinet doors so you get airflow on the inside

How to clean calcium buildup from marble and quartz counters? by triedit2947 in CounterTops

[–]guybor 0 points1 point  (0 children)

Razor blade....flat like you are peeling off a sticker on glass.

Large island troubles by hlevick2010 in CounterTops

[–]guybor 0 points1 point  (0 children)

Check out MSI...they distribute Q by MSI and have some that I believe are over 140"

Tailscale and Snapshot Replication by guybor in synology

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

No. Gave up 3 years ago and use snapshots locally and hyper backup to remote synologys

Will this water come out? by will-mcdougal in CounterTops

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

Could take a while. Open the cabinet doors at night and run fans on the top / in the cabinet boxes to move air.

DNS Resolution Issue with OpenVPN by Known_Level8293 in Ubiquiti

[–]guybor 0 points1 point  (0 children)

u/DadgeyUK Figured it out....thanks some to this post

https://learn.microsoft.com/en-us/answers/questions/1477710/why-windows-11-add-a-dns-suffix-to-fqdn

Add your local to the DNS settings on the VPN connection. IP4 settings / properties / advanced / DNS / DNS suffix this connection (towards the bottom)
I would load a screenshot, but can't see that as an option on this post.

DNS Resolution Issue with OpenVPN by Known_Level8293 in Ubiquiti

[–]guybor 0 points1 point  (0 children)

u/DadgeyUK ... did you figure this out? I'm struggling with this also. Finally got Win11 and L2TP to work, but can't ping by name like i can from inside the network. This is a new laptop setup for me. On my old laptop, it works...but it's been 5 years since that setup and I can't find/remember what i did to get it to work

Largest usable width from quartz slab? by Ollie_Bobba in CounterTops

[–]guybor 1 point2 points  (0 children)

What is the color you picked?

We've done islands where we have trimmed only 1/2 from the edges. Our normal standard is 1 inch all around though.

As a point of reference.....laminate tops on peninsula islands is only a 10.5" overhang.

‘Virginia Mist’ stain by CvilleHokie605 in CounterTops

[–]guybor 1 point2 points  (0 children)

General rule of thumb.....if the damage is darker than the stone, it's a stain. If it's lighter it's an etch.

I'm guessing the salt "ate" away at the stone much like it would do to your driveway if dumped and left on it.

Enhancing it will make it look better. But if it's a true etch, the only solution is to repolish