HackerTrans
トップ新着トレンドコメント過去質問紹介求人

nikodunk

no profile record

投稿

Can a $1,500 Battery Replace a Powerwall? [video]

youtube.com
5 ポイント·投稿者 nikodunk·18 日前·3 コメント

Duranium: A More Reliable PostmarketOS

postmarketos.org
23 ポイント·投稿者 nikodunk·4 か月前·4 コメント

Microsoft brings new "Xbox mode" to Windows 11 PCs next month

windowscentral.com
4 ポイント·投稿者 nikodunk·4 か月前·0 コメント

Pocketblue – Fedora Atomic for mobile devices

github.com
149 ポイント·投稿者 nikodunk·5 か月前·51 コメント

Simple to Ornate and Back Again (2024)

josem.co
10 ポイント·投稿者 nikodunk·6 か月前·1 コメント

Bazzite Fall Update: Fedora 43, Xbox Allies, Legion Go 2, Nvidia GTX

universal-blue.discourse.group
6 ポイント·投稿者 nikodunk·9 か月前·2 コメント

$912 energy independence without red tape

sunboxlabs.com
209 ポイント·投稿者 nikodunk·9 か月前·163 コメント

Bluefin LTS Is Released

docs.projectbluefin.io
92 ポイント·投稿者 nikodunk·10 か月前·49 コメント

Built to Outlast: Designing Products for the Long Haul

pilaenergy.com
4 ポイント·投稿者 nikodunk·10 か月前·0 コメント

Show HN: A budget app so simple it's 1 chart

4keynumbers.com
3 ポイント·投稿者 nikodunk·10 か月前·0 コメント

コメント

nikodunk
·18 日前·議論
The Home Assistant integration mentioned in the video: https://github.com/PilaEnergy/pila-home-assistant

The product: https://pilaenergy.com
nikodunk
·3 か月前·議論
Having read above article, I just gave llama.cpp a shot. It is as easy as the author says now, though definitely not documented quite as well. My quickstart:

brew install llama.cpp

llama-server -hf ggml-org/gemma-4-E4B-it-GGUF --port 8000

Go to localhost:8000 for the Web UI. On Linux it accelerates correctly on my AMD GPU, which Ollama failed to do, though of course everyone's mileage seems to vary on this.
nikodunk
·5 か月前·議論
It's a new-ish project FYI. But to answer your questions:

- Apps: It's Linux (like desktop or server), but "image-based" so you install apps in containers like iOS or Android do (and therefore OS updates basically-never break). https://flathub.org is generally the main app store for Linux containerized phone apps.

- Screenshots: It'll look the same as other Linux-on-phones, so like https://en.wikipedia.org/wiki/PostmarketOS for instance. It's just built differently.
nikodunk
·5 か月前·議論
I'm sure PRs would be welcomed if you have those devices to test on.
nikodunk
·5 か月前·議論
Updating without worries has made it much more daily-drivable for me on a Oneplus 6 (ie. it has rollbacks and image-based updates), despite being so new. It's fun that image-based OSs - which were arguably popularlized by phones - are now coming back to phones on the Linux side too.
nikodunk
·5 か月前·議論
This is based on bootc (bootable containers), so note that the OS build is described in a normal Dockerfile: https://github.com/pocketblue/pocketblue/blob/main/Container... which is then run by the Github action (or locally).

Very similar to how Universal Blue, Bazzite, Bluefin etc. build at https://github.com/ublue-os/bazzite (see their Containerfile), but for mobile.

Has a similar mission to https://postmarketos.org, but with a different build system AFAICT
nikodunk
·5 か月前·議論
I really hope _this_ quote is not fabricated - because what a fantastic quote!!
nikodunk
·8 か月前·議論
https://chrisgiven.com/2025/06/saying-goodbye/
nikodunk
·8 か月前·議論
Fascinating repo, thank you for sharing!
nikodunk
·8 か月前·議論
Hot take from an AI skeptic: between this, Nano Banana and generative AI integrated into Gmail for repetitive emails, I’m starting to actually use Google’s AI for tasks I hate most.

Google appears to have their AI product game together!
nikodunk
·9 か月前·議論
Agreed! It's my default recommendation now for a "just works" Linux system nowadays.

It's also really great for development btw - been doing all of my development on it with Homebrew and Flatpaks for over a year now.
nikodunk
·9 か月前·議論
Boeing?
nikodunk
·9 か月前·議論
If you’re big, invest in this. If you’re small, slap Dokploy/Coolify on it.
nikodunk
·9 か月前·議論
You’d need a bigger kit. WIll Prowse has many guides on these. https://youtube.com/watch?v=rRqV8BHE8lY
nikodunk
·10 か月前·議論
I'm working on a super-simple budgeting app called https://4keynumbers.com, which is based on Ramit Sethi's Conscious Spending Plan. It currently syncs my expenses from Plaid and cooks it down into a single chart, with only savings, investments, bills/fixed, and "safe to spend" as categories.
nikodunk
·10 か月前·議論
As soon as Fedora/Centos updates their images (pretty much immediately usually as it's upstream of EL), and the CI runs to re-layer the Bluefin changes. They also have Dependabot set up. https://github.com/ublue-os/bluefin/actions

It's just OCI images, like any web-scale project.
nikodunk
·10 か月前·議論
Yes! I used to use Silverblue too. Things like Tailscale, Docker, Davinci Resolve, nvidia drivers, and all codecs are a button-click away or already properly set up for you out of the box on the universal blue projects.
nikodunk
·10 か月前·議論
Same here! Been developing embedded, server and frontend stuff all fron Bluefin/Bazzite for 2 years now. Having Homebrew and Tailscale all set up for me is super clean, and the system is just set-and-forget. Gaming works great too.
nikodunk
·10 か月前·議論
Great article. Loved the bit where they decided to split off their desktop OS from their phone OS.
nikodunk
·10 か月前·議論
Very well written and reasoned article. I’ve struggled with a lot of the same issues with SQLite prod deployments. They appear simple, but then after you’ve ensured your file is on non-ephemeral storage, sorted out backups, and thought about vertical scaling or having separate dbs for jobs and models, a lot of the benefits over psql disappear IMO.

The main benefit over psql of course being that you don’t need to pay for a hosted db like RDS, or have a separate database server.

I’ve found a happy middle ground in simply self-hosting psql and my apps on the same VPS with something like dokploy. Local development is still easy enough, and remote deployment in containers is 1-click with Dokploy, and ends up being simpler to reason about IMO. My take below, if anyone’s interested.

https://nikodunk.com/2025-06-10-diy-serverless-(coreos-+-dok...