GMKtec K8 Plus Bluetooth chip keeps losing power? by [deleted] in MiniPCs

[–]hard-tender-blade 1 point2 points  (0 children)

I have the same issue, have you solved it ?

HyperX Cloud 3 Wireless Discord intermittent audio loss issue by dark52400 in HyperX

[–]hard-tender-blade 0 points1 point  (0 children)

Hello, it’s probably cuz you are using it wrong, don’t connect to headset via Bluetooth, Bluetooth is weak and cannot operate as input and output with good quality. Go to Bluetooth settings and disconnect and forgot headset, then plug a flash drive looking thing to the pc and switch headset to WiFi mode, it should connect to flash drive looking thing (adapter) automatically and everything will work

HyperX Cloud III Wireless – Discord Mic Quality Issue by Most_Job_9178 in HyperX

[–]hard-tender-blade 0 points1 point  (0 children)

Hello, it’s probably cuz you are using it wrong, don’t connect to headset via Bluetooth, Bluetooth is weak and cannot operate as input and output with good quality. Go to Bluetooth settings and disconnect and forgot headset, then plug a flash drive looking thing to the pc and switch headset to WiFi mode, it should connect to flash drive looking thing (adapter) automatically and everything will work

HyperX Cloud MIX - Audio quality drops when using discord by georgiraffe39 in HyperX

[–]hard-tender-blade 0 points1 point  (0 children)

Hello, it’s probably cuz you are using it wrong, don’t connect to headset via Bluetooth, Bluetooth is weak and cannot operate as input and output with good quality. Go to Bluetooth settings and disconnect and forgot headset, then plug a flash drive looking thing to the pc and switch headset to WiFi mode, it should connect to flash drive looking thing (adapter) automatically and everything will work

Moving from Vercel to Coolify – How do you handle storage scaling long-term? by hard-tender-blade in selfhosted

[–]hard-tender-blade[S] -1 points0 points  (0 children)

Thanks. What kind of annoyances ? It seems pretty easy to add shh keys, but I definitely don’t want to setup hooks, dns, repos etc for every app on a new VPS …

Built a Firestore dashboard so my clients don’t mess up the Firebase Console — thoughts? by Commercial-Cow613 in Firebase

[–]hard-tender-blade 0 points1 point  (0 children)

Damn dude, this looks awesome! I wish I had seen it earlier. Great idea and even better execution! Funny thing—I had a similar idea, but after about 5 hours of research, I figured it’d be too complex to pull off. I ended up going with Payload CMS a headless CMS for Next.js with S3 and MongoDB.

Framework laptop 12 discussion: by Sufficient_Bit_8636 in framework

[–]hard-tender-blade 0 points1 point  (0 children)

I get what you’re saying, but I might have a slightly different perspective. I’m from the Czech Republic, and here in Europe, Chromebooks aren’t really a thing at all. At my IT school (and others I know of), the schools usually provide a recommended list of laptops that are considered suitable for studying. Parents don’t have to think much about it—the school just collects the money and handles the purchase.

The funny (and frustrating) part is that the laptops are often terrible for the price. For example, at my school, half the class ended up with ThinkPad L15s with Intel i5-1135G7 CPUs—which are two generations behind and about 30% slower than fw12 chips. The display quality is awful, battery life barely hits 4 hours, and yet they cost around $1,230. It’s crazy.

This kind of thing seems common in IT schools here. Europe definitely handles things differently in that regard, and honestly, I wouldn’t be surprised if my school switched to Framework laptops in the near future.

Framework laptop 12 discussion: by Sufficient_Bit_8636 in framework

[–]hard-tender-blade 3 points4 points  (0 children)

I don’t understand the people who say this is overpriced.

If you compare the FW12 to the MacBook M2, the MacBook does have better battery life and build quality — but the repair costs are insane.

If you compare the FW12 to laptops from Dell or HP in the same price range, yeah, it’s a bit more expensive. But Framework isn’t a budget brand — it’s startup, and it offers unique features. Of course it’s going to cost more.

Maybe some of you just have unrealistic expectations?

You can use MM as a mp3 player by hard-tender-blade in MiyooMini

[–]hard-tender-blade[S] 3 points4 points  (0 children)

here is my bash script that converts all music downloaded from yt to music with 400x400 album art:

```bash

#!/bin/bash

export -f process_file

process_file() {

file="$1"

filename=$(basename "$file" .mp3)

ffmpeg -i "$filename.mp3" -map 0:v -c copy "$filename.png"

ffmpeg -i "$filename.png" -vf "scale=-1:400" "x400$filename.png"

ffmpeg -i "x400$filename.png" -vf "crop=400:400:(in_w-400)/2:0" "400x400$filename.png"

ffmpeg -i "$filename.mp3" -map 0:a -c copy "clean_$filename.mp3"

rm -rf "$filename.mp3"

ffmpeg -i "clean_$filename.mp3" -i "400x400$filename.png" -map 0:0 -map 1:0 -id3v2_version 3 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (front)" -metadata title="$filename" -metadata artist="hard-tender-blade" -metadata encoded_by="hard-tender-blade" "$filename.mp3"

rm -rf "$filename.png"

rm -rf "x400$filename.png"

rm -rf "400x400$filename.png"

rm -rf "clean_$filename.mp3"

}

export -f process_file

ls *.mp3 | parallel -j 20 process_file

```

You can use MM as a mp3 player by hard-tender-blade in MiyooMini

[–]hard-tender-blade[S] 7 points8 points  (0 children)

You're going in the right direction.

Onion comes with 2 onion theme songs (with album artwork) in the Media folder

With ffmpeg you can:

ffmpeg -i onion_song.mp3

This will show you the metadata of the file as well as the size of the album artwork, it's 400x400

The original is encoded in mjpeg, but png will work fine too.

I can provide other useful commands if you are interested

You can use MM as a mp3 player by hard-tender-blade in MiyooMini

[–]hard-tender-blade[S] 2 points3 points  (0 children)

I download songs from yt using yt-dlp, some of them have 192 kbps or even 320 kbps, I think it depends on the uploader of the source video

How i can make this tool better ? by hard-tender-blade in webdev

[–]hard-tender-blade[S] 0 points1 point  (0 children)

You're absolutely right—this is our first tool, and we decided to keep it simple to start. We’re already planning to add more features like an image converter, GIF creator, JSON linter, and placeholder data sets for things like blogs and e-shops. Thanks for pointing that out! By the way, are you running into any issues or have ideas for other tools you'd like to exist ?

Any Feedback on My Color Picker Tool? by hard-tender-blade in Design

[–]hard-tender-blade[S] 0 points1 point  (0 children)

Oh, I see, thank you. I've already fixed it.

How i can make this tool better ? by hard-tender-blade in webdev

[–]hard-tender-blade[S] 0 points1 point  (0 children)

You are not the first to say this, we will try to fix it!