u/StarchyStarky
New Lakers Owner Bob Iger: “I’m a Clippers fan. Having moved from New York to Los Angles back in 2000 and being a big NBA fan, I needed a team to root for... Lakers were a big rival of the Knicks, the team I grew up rooting for. So I couldn’t root for the Lakers very easily; just was not in my DNA"
streamable.comHow to calibrate SV06 Plus after 5015 fan upgrade.
Hello! I just installed SavageLau’s Hurricane Fan Duct for the 5015 blower fan. I was wondering how I can recalibrate my fan speeds to take the full benefit? Is there like a test print I can use? What did you guys do? Thanks!
Good cheap table for SV06 Plus? (Non ACE)
Hey all! I'm getting a used SV06 Plus soon and I need a table to put it on, as id rather keep it off the floor. I've seen conflicting information about its minimum table size, as my room is a bit size limited. Would the IKEA Lack side table work? Thanks.
Accepted Transfer Students: I'm Applying this Fall for UCSD and I'll likely be missing 1-2 Engineering Transfer Prerequisites. Am I screwed?
Hello all, I currently attend a CCC and have about a 3.7 GPA (probably be a bit higher by the time of my application, hopefully around a 3.8-3.85). However, currently my classes were mostly tuned for UCLA, but I'm also a big fan of SD. I see that SD has more engineering related classes on Assist, and I dont have the time to take them all (unless I take like 5 classes in my fall and spring semesters, which are already difficult classes.)
The classes in particular that I'm missing are ENGR 30 and ENGR 80, which combine into Statics & Introduction to Dynamics. I'm wondering, am I fine missing these classes? Or do I just suck it up and take the probable GPA hit by taking 5 classes in my Fall and Spring Semesters.
Thank you!
New Naturehike Cloud Up/Mongar vs Used Northface Storm Break 1
Hey guys! Tried out an overnight with a Walmart tent, and liked it well enough to invest a bit more in a nicer tent. These tents are in a similar price range, so I was wondering which is better? Mostly concerned about long term durability
Hello all! Im trying to set up grafana to ultimately integrate into my homepage. I got prometheus and grafana installed and everything works perfectly fine internally (check screenshot). However, when I share it externally, it shows as "No Data". Any help? Thanks
grafana:
image: grafana/grafana-oss:latest
container_name: grafana
restart: unless-stopped
user: "472:472"
ports:
- "3002:3000"
volumes:
- ./grafana-config/grafana:/var/lib/grafana
environment:
- GF_SECURITY_ADMIN_USER=${GF_SECURITY_ADMIN_USER}
- GF_SECURITY_ADMIN_PASSWORD=${GF_SECURITY_ADMIN_PASSWORD}
- GF_SECURITY_ALLOW_EMBEDDING=${GF_SECURITY_ALLOW_EMBEDDING}
- GF_AUTH_ANONYMOUS_ENABLED=${GF_AUTH_ANONYMOUS_ENABLED}
- GF_AUTH_ANONYMOUS_ORG_ROLE=${GF_AUTH_ANONYMOUS_ORG_ROLE}
- GF_SECURITY_COOKIE_SAMESITE=${GF_SECURITY_COOKIE_SAMESITE}
- GF_SECURITY_COOKIE_SECURE=${GF_SECURITY_COOKIE_SECURE}
- GF_AUTH_ANONYMOUS_ORG_NAME=${GF_AUTH_ANONYMOUS_ORG_NAME}
- GF_SERVER_ROOT_URL=${GF_SERVER_ROOT_URL}
prometheus:
image: prom/prometheus:latest
container_name: prometheus
restart: unless-stopped
ports:
- "9090:9090"
volumes:
- ./grafana-config/prometheus/config:/etc/prometheus
- ./grafana-config/prometheus/data:/prometheus
command:
- "--config.file=/etc/prometheus/prometheus.yml"
node-exporter:
image: prom/node-exporter:latest
container_name: node-exporter
restart: unless-stopped
pid: host
network_mode: host
volumes:
- /proc:/host/proc:ro
- /sys:/host/sys:ro
- /:/rootfs:ro
command:
- "--path.procfs=/host/proc"
- "--path.sysfs=/host/sys"
- "--path.rootfs=/rootfs"
- "--collector.filesystem.mount-points-exclude=^/(sys|proc|dev|host|etc)($$|/)"
GF_SECURITY_ADMIN_USER=---
GF_SECURITY_ADMIN_PASSWORD=---
GF_SERVER_ROOT_URL=https://xxx.xxx.com
GF_SECURITY_ALLOW_EMBEDDING=true
GF_SECURITY_COOKIE_SAMESITE=disabled
GF_SECURITY_COOKIE_SECURE=false
GF_AUTH_ANONYMOUS_ENABLED=true
GF_AUTH_ANONYMOUS_ORG_NAME="Main Org."
GF_AUTH_ANONYMOUS_ORG_ROLE="Viewer"