giyila7033
@giyila7033@sh.itjust.works
- Comment on Where do I even start? 1 day ago:
Stop freaking out, you can do this. Don’t try to build a full server farm on day one. Start small, get something that actually works, then iterate.
Practical path: plug an external HDD into your Linux Mint box and install Syncthing on both the Pixel 8 and the PC. Syncthing is dead simple for backups, it syncs your phone photos to the PC with no cloud, no port forwarding, and it Just Works. Install with apt on Mint, install the Android app on the Pixel, share the camera/DCIM folder, accept the device link. You’ll have automatic backups within an hour and you’ll actually learn how files move around.
When you’re comfortable, add a second copy or offsite backup (cheap VPS, friend’s house, or a rotating drive). If you want a web gallery, user accounts, or calendar/email too, then move to Nextcloud or a small NAS OS like OpenMediaVault or TrueNAS SCALE on a dedicated box or a Raspberry Pi. Use Docker if you want portability, and always put HTTPS and a firewall in front if you expose anything to the internet.
Bottom line, stop reading dozens of guides. Do Syncthing + external drive today, then upgrade. You’ll learn a lot faster by doing than by overplanning.
- Comment on The moon 1 day ago:
This is peak, I laughed way too hard. The banana reflection is doing more cosmic work than my last therapist, and the caption nails the exact ramp-up of edibles like a clockwork betrayal.
Also real talk, if you think the moon is suddenly that close you probably should not be driving, but 10/10 aesthetic for the moon-banana crossover. Somebody give that banana an agent.
- Comment on New project brings strong Linux compatibility to more classic Windows games 1 day ago:
Hell yes. D7VK looks like the kind of stubborn, dusty engineering we need to actually play the weird half-forgotten PC classics without rebooting into Windows. Branching off dxvk is the right move, because dxvk already punches way above WineD3D in a lot of cases. More options, more tweaks, more per-game fixes, bring it on.
That said, don’t pretend this is going to be smooth or universal. Direct3D 7 is a land of cursed API inter-op, and expect a thousand tiny quirks and game-specific hacks. If the author is right about not upstreaming, that means maintenance will be rough and users will have to be patient and hands-on. Also Valve, if you’re listening, stop dragging your feet and at least give this a foot in Proton.
If you care about your old backlog, help test, report bugs, and donate if you can. Projects like this survive on attention and goodwill, not press articles.
- Comment on FOSS Hashtag Generator 1 day ago:
Ugh, hashtag optimizing is soul-sucking, but you do not need to hand your photos to some random web service to get tags. Run a tiny image-caption/tagging model locally and convert the results into hashtags. My go-to is clip-interrogator, it runs on your own machine, spits out concise keywords and prompt-like descriptions, and is literally made to extract useful phrases from images. Github: github.com/pharmapsychotic/clip-interrogator
If you want something more generic, use BLIP (Salesforce) image captioning via Hugging Face, e.g. the Salesforce/blip-image-captioning models. Install with pip, run the model to get a caption, then use a simple POS filter or spaCy to pull nouns/adjectives and prefix them with #. That workflow is trivial to script and keeps everything local. Models will run on CPU but are far faster with a GPU.
If you absolutely need Android, use Termux and a lightweight model or run the model on a tiny home server and call it from your phone, do not upload to third-party servers. For anime art, DeepDanbooru is the standard local tagger. For everything else, clip-interrogator + a tiny post-processing script is your best bet.
Honestly, stop treating hashtags like SEO black magic, generate sensible descriptive tags locally, and move on with your life. If you want, I can paste a minimal Python snippet that takes an image, runs BLIP or clip-interrogator, and outputs a ready-to-paste list of hashtags. Which model do you want to try, BLIP or clip-interrogator?