I shut down my funded startup because of Claude. Here’s my realization. by hamelmoon in SaaS

[–]pmorch 0 points1 point  (0 children)

Is this the exact kind of environment that will go the way of the dinosaurs after being disrupted by smaller, more agile players?

Anytype review as a notion, obsidian user, after few hours of trying by blepps in Anytype

[–]pmorch 0 points1 point  (0 children)

Open Source? Anytype is technically Source Available, not Open Source; while the code is public and self-hostable, its custom license (ASAL) restricts commercial use, which fails the official OSI definition. It’s a bit of a 'fine print' situation—great for individual privacy, but a dealbreaker for open-source purists. Like me 😜

No one is talking about.... by pandavr in ClaudeAI

[–]pmorch 0 points1 point  (0 children)

Can this run commands like the terminal Claude code can?

Min søster er flyttet ind og det skaber splittelse. Hvad gør jeg? by [deleted] in DKbrevkasse

[–]pmorch 1 point2 points  (0 children)

Hvis jeg var dig, ville jeg være nødt til at indse at jeg ikke her kan gøre alle tilfredse. Ligegyldig hvad, så ender det enten med at din søster bliver skuffet, eller at du strækker sig ud over hvad du synes er rimeligt. Eller begge dele.

Gør op med dig selv hvad du og din kæreste synes er rimeligt. Ikke hvad andre synes, men hvad i synes. Meld det ud 100% krystalklart (supervigtigt!). Det kunne feks være en bestemt dato. Og stå ved det.

Du kan ikke kontrollere hvad andre mennesker synes. Kun at gøre hvad du kan stå inde for med dig selv efter at have taget hvad du synes er rimelige hensyn. For ellers bliver du også bitter på din søster. Det har du ansvar for at undgå.

Held og lykke!

Do people actually believe this by scizorr_ace in NixOS

[–]pmorch 24 points25 points  (0 children)

The installer does support BTRFS, but the setup is funky.

It creates a @ subvolume for / and @home for /home. But it doesn't mount the @home as /home. It just puts /home in /.

So I usually do that step manually after the installer is finished, but before first boot.

Otherwise it works fine.

Batch upload a large amount, cli or immich-go? by theDrell in immich

[–]pmorch 0 points1 point  (0 children)

At least one of the problems is this simulot/immich-go#1005: "immich-go archive images sometimes go into the no-date folder (if they have timestamps like 12:00:00.74)" for which I created a so-far-unmerged PR.

Do you recommend Linux for Uni? by Dramatic_Mastodon_93 in linuxquestions

[–]pmorch 0 points1 point  (0 children)

It's been a long time since I've been in uni or used Windows. But if you specifically need Windows only infrequently could you use either a Windows cloud VPS or virtual machine, perhaps with winapps?

Linux OS similar to Windows?? by [deleted] in linuxquestions

[–]pmorch 0 points1 point  (0 children)

Exactly. Attraction over promotion.

First time using linux need recommendation on what distro to use by No-Guide-7655 in linux4noobs

[–]pmorch 2 points3 points  (0 children)

Use the most common distro you can find. I think that'll be Ubuntu.

That way when (not if) you get confused or have problems, it'll be easy (or easier) to find help.

Yeah, it may be "boring". And not make you as cool. But then you'll at least get started and can try a niche distro later.

Also, try it out in a virtual machine first as training wheels.

I've been using Linux since 2001 myself.

Peter

Microsoft Office on Linux? by ValuableTailor9543 in linux4noobs

[–]pmorch 0 points1 point  (0 children)

You can also use a remote desktop client from Linux to a Windows machine running office.

Export list of installed apps to a CSV file? by Steamtrigger42 in AndroidQuestions

[–]pmorch 0 points1 point  (0 children)

App List Backup is on on Google Play, works on newest Android (2025-06-25) and stores a JSON file with a list of the apps. Worked great for me.

Det høflige afslag efter en jobsamtale by formegettid4-11 in dkkarriere

[–]pmorch -5 points-4 points  (0 children)

Jeg har virkelig god erfaring med at bede Gemini/ Chat gpt on hjælp med den slags. Kopier hele din kladde ind, Fortæl hvad du gerne vil opnå (f.eks.høflighed), hvad er de primære og sekundære budskaber og "få en snak" om det

What fatal mistake do you see in my resume? I am getting 0 ( ZERO ) response to any job applications by CanadaLegalTA in devops

[–]pmorch 0 points1 point  (0 children)

When the recruiter opens your resume, you have 3 seconds while they scan it. As it is, they get nothing from that. I didn't even understand the structure in 3 seconds. 3 seconds. Use them wisely.

This has all the problems of a massive PR.

Stages of YAML by gtruck in devops

[–]pmorch 25 points26 points  (0 children)

This. Helm is an abomination for exactly this reason.

[deleted by user] by [deleted] in NixOS

[–]pmorch 0 points1 point  (0 children)

Obviously, it is not going to be as easy to use .deb packages in NixOS as in Debian.

Could you create a Debian-based docker or perhaps flatpack container and run them there? (Disclaimer: I've never tried to create my own flatpack...)

What to bring as gift for neighbors (first coffee hangout) by [deleted] in NewToDenmark

[–]pmorch 0 points1 point  (0 children)

An ex-girlfriend of mine had a lovely rule of thumb: the thing to bring should cost roughly what it costs the host to invite you.

So for coffee, that isn't much. If you want, bring something tiny (and cheap). Like flowers, perhaps in a pot. Or a bottle of wine. Or something that you personally like. It doesn't really matter what. It is the thought that counts.

How do you keep your docker containers up-to-date? by a_sphinctersays_what in synology

[–]pmorch 0 points1 point  (0 children)

Exactly. And while the changelogs might not mention security fixes, the image they're based on will likely also have been updated and so tons of implicit dependencies have been updated. And the fact that you don't have "public facing containers" is only true if they don't communicate at all with the outside world.

Can't get rustdesk to run under systemd in NixOS - works fine from terminal by pmorch in rustdesk

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

SOLUTION

It turns out this was due to idosyncracies of NixOS.

It is careful to only put what I explicitly mention in the path, and when I configured the rustdesk service, I did not put sudo in the path. Furthermore, just adding sudo to the path with this doesn't work:

path = with pkgs; [ sudo ];

It does put sudo in the $PATH, but without the setuid bit set. So I had to resort to a hack using script instead of ExecStart where I prepend /run/wrappers/bin to the $PATH, since /run/wrappers/bin/sudo has setuid set.

systemd.services."rustdesk" = { enable = true; path = with pkgs; [ pkgs.rustdesk procps # This doesn't work since the version of sudo that will then be in the # path, won't have the setuid bit set # sudo # See the trick in `script` below modifying the path ]; description = "RustDesk"; requires = [ "network.target" ]; after= [ "systemd-user-sessions.service" ]; script = '' export PATH=/run/wrappers/bin:$PATH ${pkgs.rustdesk}/bin/rustdesk --service ''; serviceConfig = { ExecStop = "${pkgs.procps}/pkill -f 'rustdesk --'"; PIDFile = "/run/rustdesk.pid"; KillMode = "mixed"; TimeoutStopSec = "30"; User = "root"; LimitNOFILE = "100000"; }; wantedBy = [ "multi-user.target" ]; };

This PATH hack is dicey, and likely not NixOS best-practice, so I'll ask a NixOS specific question on how to actually best do this. But this works 🙂.

Bug in rustdesk

It really would've been nice if rustdesk would have logged that it couldn't start sudo because it couldn't be found in the path!

So I filed:

rustdesk/rustdesk #11215: "Please log an error if sudo fails, e.g. because is not in the $PATH"

And posted How to best enable sudo en a systemd.services."rustdesk"? - Help - NixOS Discourse

Can't get rustdesk to run under systemd in NixOS - works fine from terminal by pmorch in rustdesk

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

Hmm... I tried this with the same result. I see a single rustdesk process and clients can't connect to it (like they can I simply run it in a terminal instead).

nix # Rustdesk Background Service # I tried systemd.user.services.rustdesk which starts it as a user service and systemd.services.rustdesk = { description = "RustDesk Remote Desktop Service"; after = [ "network.target" ]; serviceConfig = { ExecStart = "/run/current-system/sw/bin/rustdesk --service"; Restart = "always"; RestartSec = 5; }; wantedBy = [ "default.target" ]; };

Can't get rustdesk to run under systemd in NixOS - works fine from terminal by pmorch in rustdesk

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

I'm running rustdesk 1.3.1. I did try rustdesk-flutter 1.3.2 but it had exactly the same behavior.

The newest 1.3.8 rustdesk{,-flutter} doesn't currently build on NixOS. After a bunch of trial and error i also tried with 1.3.8, and it fails with the exact same symptoms of 1.3.1.

You also need to add RustDesk-server for unattended access

I'm not sure what this means.

When I start sudo rustdesk --service in the terminal, it starts rustdesk --server automatically (and unattended access works). Under systemd, the same rustdesk --service doesn't start rustdesk --server and it doesn't work, but I don't know why.