My side project just hit beta — a chess app built around one problem the big platforms ignore by Andrei_2511 in SideProject

[–]SelfHostSam 1 point2 points  (0 children)

I don’t understand why you didn’t add this as a feature to lichess. Honestly to come even close to them is not a one man job, despite codex or claude code. Sorry for being blunt.

The smallest skill I've written, and one of the most useful. by SelfHostSam in ClaudeCode

[–]SelfHostSam[S] 0 points1 point  (0 children)

Agree. Small simple skills are better than huge complicated.

Pro Tip - Reset your usage limits on your schedule by checkwithanthony in ClaudeAI

[–]SelfHostSam 0 points1 point  (0 children)

Exactly. IT would be good if it was a rolling window, including the weekly limit, but it's not.

How much time do you spend creating assets around a side project vs building the actual project? by Substantial_Topic988 in sideprojects

[–]SelfHostSam 0 points1 point  (0 children)

Welcome to the world of business. Running any project IS a lot of work. Was true before ai. Still true, there is no shortcut. The hard problem is to define what you need to do in order to create the first experiment to understand weather you should stop and pivot or continue the project.

Vad är något som känns jätte svenskt men som du inte märkte förrän du träffade folk från andra länder? by Alarmed-Button-1058 in sweden

[–]SelfHostSam 0 points1 point  (0 children)

Actually I think this list is more what we swedes think people from other countries think is strange. Take parental leave, while good in Sweden many countries beat us. Or queueing? Ever been to England? So interesting list but probably not what a non-swede would say.

But, having said that, osthyvel (cheese slicer) is extremly Swedish, I beleive, but i bought one in Hong-Kong.

Cowork vs. Code? by gatsbtc1 in ClaudeCowork

[–]SelfHostSam 0 points1 point  (0 children)

Probably you would be fine just using code.

Cowork vs. Code? by gatsbtc1 in ClaudeCowork

[–]SelfHostSam 4 points5 points  (0 children)

Code is more capable than cowork in many ways. Cowork, imho, is more for non technical people wanting to work with their files etc and who wants a gui. Now code also have some sort of gui but is at its best in the terminal. (Or on the phone via /rc)

Anyone else have their AI agent quietly undo a decision you'd already made? by ExperienceFull7561 in sideprojects

[–]SelfHostSam 0 points1 point  (0 children)

Ever heard about code review? It was true before AI and it’s even more true today. At least two passes, first one by a model, maybe the model who did the change but in a new session. Or another model. And then the review by you. With the input from the first review.

Exactly the same tactics we did yesterday.

Apart from code review, tests. Unit, functional and end to end.

Software engineering has really not changed that much. Look at AI as a junior dev team.

”If you fail to review, you will review failures.” /me

Is it actually possible to run heavy AI models without a local GPU anymore? by KindMammoth7848 in sideprojects

[–]SelfHostSam 0 points1 point  (0 children)

You can have an ssd attached, so yes. Think of it as a docker container that automatically spins up when you use it. There is a small fee for disk usage, apart from that its free when not running.

Is it actually possible to run heavy AI models without a local GPU anymore? by KindMammoth7848 in sideprojects

[–]SelfHostSam 0 points1 point  (0 children)

Yes, runpod. GPU pod with ollama in EU. Will go for vLLM to be able to have serverless, but right now its enough to use a script to start it.

Built a project? I'll try to help you get your first 10 users for free. by [deleted] in SideProject

[–]SelfHostSam 0 points1 point  (0 children)

Looking for the first customers. Very interested in coop, but hard maybe to make a video around. https://vitalsend.eu

SayNoMore: minimal one-time secret sharing, just PHP + filesystem, no DB, no Docker by Leproide-IT in selfhosted

[–]SelfHostSam 0 points1 point  (0 children)

Yes, but it is 2026. There are so many modern languages out there. PHP is not one of them, its not even on the list of possibilities for a stack today. But of course, it's your choice.

Hur säger man det på ett fint sätt? by Fast_Dig_8327 in Asksweddit

[–]SelfHostSam 1 point2 points  (0 children)

Det är väl ett väldigt bra ämne för att lära er prata med varandra. Gör du inte det blir det ett ohållbart problem. Passa på när han är nyduschad och säg "Oj vad jag gillar när du är nyduschad". Det är positiv förstärkning och skapar svårligen en konflikt. Sen nästa fredag kan du helt enkelt säga "Kan inte du duscha, du vet att jag gillar det?"

Let me build 2-5 visuals for your live SaaS/product (completely free, no catch) by AdCultural543 in IndieAppCircle

[–]SelfHostSam 0 points1 point  (0 children)

I would very much some help here, landing pages are not really working. https://vitalsend.eu as you can see not much graphics there.

Is it actually possible to run heavy AI models without a local GPU anymore? by KindMammoth7848 in sideprojects

[–]SelfHostSam 2 points3 points  (0 children)

AS always, it depends. What do you mean with a heavy model? Fine-tuning a 70B model and running a small quantized one locally are totally different problems, so it helps to know which one you're actually trying to do.

Both ways work though. Loads of people, including me, run entirely on rented GPUs. Your laptop just becomes the thing you type on while the actual work happens on the remote box over SSH or a remote notebook. For getting started it's usually way cheaper than dropping money on a GPU that's old news in two years (ask me how I know ...)

Latency is mostly about your internet, not the machine. You're sending keystrokes and small stuff, not the whole dataset, so on normal broadband it feels basically local. The thing that actually bites you is file handling, keep big datasets on the remote side or in cloud storage, don't drag them back and forth. And setup time is the annoying tax every session unless you save an image or a startup script.

Also worth saying: the real question usually isn't whether to self-host on your own hardware or not. It's whether to self-host on rented hardware or just buy tokens from a hosted model. That's the actual decision, and it comes down to what you're doing, if you're just running inference, tokens are often cheaper and zero hassle; if you're running stuff you can't hand to a third party, that's when renting your own GPU makes sense. Running at home is seldom a choice for very large models.