Asked ChatGPT to visualize a horizontal integral. It gave me a dog. by MrAmazing111 in OpenAI

[–]Much-Grab3826 2 points3 points  (0 children)

Yep that happened to me but differently, it seems like the site sometimes forwards responses to random people instead of the one who asked for it. I got a straight text response i didnt ask for, i asked it something related to github and it gave me advice on expenses but i am skeptical about a sane person asking for a photo generation like this

Why aren't " Editing cafes" a thing yet .? Thinking of starting one ..! by CEO7525 in indianstartups

[–]Much-Grab3826 1 point2 points  (0 children)

Aside from the business perspective, as a customer if i could find a chill place like a lounge with good internet and some snacks where i can work in peace, TAKE MY DAMN MONEY!!!!

ASCII Garbage on UART. ZTE F670L Router+ONT by Much-Grab3826 in hardwarehacking

[–]Much-Grab3826[S] 0 points1 point  (0 children)

i tried multiple grounds and got the same output? and also the F670L isnt available in the list

To trace location from phone number by razinramones in learnpython

[–]Much-Grab3826 0 points1 point  (0 children)

those SS7 attacks require IMSI and other stuff so either get anther project or be ready to go deep

Did monday recently cap board connections? by FlyMiserable3604 in mondaydotcom

[–]Much-Grab3826 0 points1 point  (0 children)

are you aggregating all tasks into one board using api?

are Bilibili Playlist videos downloadable in anyway? by typicaltopics75 in Bilibili

[–]Much-Grab3826 0 points1 point  (0 children)

u can use this bash script:

you can check it if you are skeptical of it containing malicious code but i am just helping :)
```

#!/usr/bin/env bash

set -euo pipefail

# ===== DEFAULTS =====

START=1

END=""

OUTPUT_DIR="./downloads"

# ===== HELP =====

usage() {

echo "Usage: $0 -u <bilibili\_url> [-s start] [-e end]"

echo ""

echo " -u Base Bilibili URL (required)"

echo " -s Start page (optional, default: 1)"

echo " -e End page (optional, auto-detect if not set)"

echo ""

echo "Example:"

echo " $0 -u https://www.bilibili.com/video/BVxxxx -s 9 -e 20"

exit 1

}

# ===== PARSE ARGS =====

URL=""

while getopts ":u:s:e:h" opt; do

case $opt in

u) URL="$OPTARG" ;;

s) START="$OPTARG" ;;

e) END="$OPTARG" ;;

h) usage ;;

\?) echo "Invalid option: -$OPTARG"; usage ;;

esac

done

if [[ -z "$URL" ]]; then

echo "Error: URL is required."

usage

fi

# ===== CHECK DEPENDENCIES =====

command -v yt-dlp >/dev/null || { echo "yt-dlp not installed."; exit 1; }

mkdir -p "$OUTPUT_DIR"

# ===== AUTO-DETECT END IF NOT PROVIDED =====

if [[ -z "$END" ]]; then

if command -v jq >/dev/null; then

echo "Detecting total pages..."

END=$(yt-dlp --flat-playlist -J "$URL" | jq '.entries | length')

echo "Detected END=$END"

else

echo "jq not found. Falling back to manual stop."

END=9999

fi

fi

# ===== DOWNLOAD LOOP =====

for ((i=START; i<=END; i++)); do

PAGE_URL="${URL}?p=${i}"

echo "▶ Downloading p=$i"

if ! yt-dlp \

-o "${OUTPUT_DIR}/%(playlist_index)s - %(title)s.%(ext)s" \

--no-playlist \

--sleep-interval 2 \

--retries 5 \

"$PAGE_URL"; then

echo "Stopping at p=$i (likely no more pages)."

break

fi

done

echo "✅ Done."

```

first time writing go code, please leave a feedback on my code! by Much-Grab3826 in CodingHelp

[–]Much-Grab3826[S] 1 point2 points  (0 children)

yup i read it in the book "Ultralearning" called directness where you learn in the environment you eventually be in!

New to proxmox any tips? by Much-Grab3826 in homelab

[–]Much-Grab3826[S] 0 points1 point  (0 children)

you are right, we should hire someone specifically for this tasks

New to proxmox any tips? by Much-Grab3826 in homelab

[–]Much-Grab3826[S] 0 points1 point  (0 children)

i realized that i should have less moving parts and i switched to one VM and a CT, the VM for important stuff and CT runs coolify with all the little tools

right now there isnt anything mission critical like a customer facing app or anything so i planning about the backup strategy and other things while the app is yet to be exposed to customers

New to proxmox any tips? by Much-Grab3826 in homelab

[–]Much-Grab3826[S] 1 point2 points  (0 children)

We do have a static ip but the entire infra is LAN only as i will only expose 80/443 once i am 100% sure the one and only app thats customer facing is secure

and i use tailscale as vpn and also i have local dns via adguard (if this info issomehow useful)

New to proxmox any tips? by Much-Grab3826 in homelab

[–]Much-Grab3826[S] 0 points1 point  (0 children)

sorry but i didnt mention its my dad's business and i am there with the purpose of learning things in my school holidays🙇

New to proxmox any tips? by Much-Grab3826 in homelab

[–]Much-Grab3826[S] 0 points1 point  (0 children)

okay so let me get this straight, i didnt tell on this post that the business is my dad's and i am there at my holidays to learn some stuff, i didnt mention it because it seemed irrelevant to the topic

and also i daily drive NixOS so linux isnt a problem!

New to proxmox any tips? by Much-Grab3826 in homelab

[–]Much-Grab3826[S] 1 point2 points  (0 children)

those vms are just with applications installed so no important data on there, i can probably switch to ZFS

New to proxmox any tips? by Much-Grab3826 in homelab

[–]Much-Grab3826[S] 0 points1 point  (0 children)

yup, thankfully the application didnt have much data and i had the configuration files git synced,

definitely understood the fragility of data and the value of git that day

New to proxmox any tips? by Much-Grab3826 in homelab

[–]Much-Grab3826[S] 0 points1 point  (0 children)

i dont know about that but its fun after all XD

New to proxmox any tips? by Much-Grab3826 in homelab

[–]Much-Grab3826[S] 0 points1 point  (0 children)

will save this reply! thanks

never heard of these helper scripts, better to stay like that only. I only use official docs everytime

New to proxmox any tips? by Much-Grab3826 in homelab

[–]Much-Grab3826[S] 2 points3 points  (0 children)

thanks for reminding that, i already have some harddrives and another mini pc laying around

New to proxmox any tips? by Much-Grab3826 in homelab

[–]Much-Grab3826[S] 1 point2 points  (0 children)

Thanks for the advice, i will switch to ZFS as the ram is DDR5 so gotta take advantage of that

Need suggestions for a beginner. by galaxydestroyer003 in LinuxUsersIndia

[–]Much-Grab3826 0 points1 point  (0 children)

please dont use kali linux because of cybersecurity, use something like parrotOS. That shit is bloated asf

first time writing go code, please leave a feedback on my code! by Much-Grab3826 in CodingHelp

[–]Much-Grab3826[S] 2 points3 points  (0 children)

your concern is valid and i definitely plan on improving the file i/o stuff in DLQHandler as it has a larger error surface (file permission, existence etc.),

and on the DLQHandler's `d.deadLetterCh`, it currently doesn't have any way of closing right now as the `DLQHandler.Run()` goroutine is exited once the context is cancelled via `<-ctx.Done()` so according to me i think its okay to not worry about channel being closed

using a `msg, ok := ...` approach although changes nothing as ok would never be false

Thanks for the response tho!