[-] gomp@lemmy.ml 28 points 1 month ago

I can't wait for chatGPT to learn it should answer every disjunctive question with "por que no los dos?"

[-] gomp@lemmy.ml 24 points 2 months ago

Makes perfect sense to me (not a lawyer, not a US person)... what doesn't make sense is how many people still think biometric is high security (maybe because of how cool they make it look in the movies?)

[-] gomp@lemmy.ml 21 points 3 months ago

linux rules because it's the only os built for its users rather than some company stocks

[-] gomp@lemmy.ml 24 points 9 months ago

Move to the EU :)

[-] gomp@lemmy.ml 26 points 9 months ago

The really important sosftware gets ported to all the platforms

[-] gomp@lemmy.ml 24 points 10 months ago

I use firefox on arch, btw

[-] gomp@lemmy.ml 26 points 10 months ago

I'm shocked! ...that so far they were using whatsapp.

[-] gomp@lemmy.ml 25 points 10 months ago

Absolutely! /s

TBH, the mods should change the sidebar from "News from around the world!" to something like "News that have international relevance".... otherwise we can't really scold people who post curiosity stories.

4
submitted 10 months ago by gomp@lemmy.ml to c/nixos@lemmy.ml

I need to generate a number of scripts in my configuration and make them into a single package (for ease of reference, because there are a lot of them).

So far, I'm creating the scripts via writeShellApplication, making them into packages via an overlay, merging them with buildEnv and then adding the resulting package to `systemPackages.

Something like:

nixpkgs.overlays = [ (final: prev: {
  my-hello-1 = final.writeShellApplication {
    name = "my-hello-1-script";
    text = "echo my hello wolrd 1";
  };
  my-hello-2 = final.writeShellApplication {
    name = "my-hello-2-script";
    text = "echo my hello wolrd 1";
  };
  my-hello-scripts = final.buildEnv {
    name = "my-hello-scripts";
    paths = [ final.my-hello-1 final.my-hello-2 ];
  };
}) ];

environment.systemPackages = [ pkgs.my-hello-scripts ];

This works, but I don't really need the my-hello-1 and my-hello-2 packages... can you think of a way to make do without needing them?

5
submitted 10 months ago by gomp@lemmy.ml to c/nixos@lemmy.ml

I'm migrating my NAS to nixos, and I got to the point of setting up my restic backups.

services.restic.backups is great, but -- on top of the systemd timers/services -- I also want some helper scripts (eg. one to easily mount the backups, stuff that with ansible I currently generate into /usr/local/sbin).

These scripts would be entirely generated from the services.restic.backups config and would reference sops secrets also from configuration.nix, so... I don't think it would make sense to make a package out of them?

What should I use to make these scripts? Should I use nixpkgs.writeShellApplication and then alter the PATH?

[-] gomp@lemmy.ml 24 points 10 months ago

Don't you mean a markdown editor?

Chances are, your favorite text editor can handle markdown well enough... unless you want WYSIWYG, in which case your text editor would still be good enough for the job and you would be wrong :-)

25
submitted 10 months ago by gomp@lemmy.ml to c/privacy@lemmy.ml

Since I need to run a few apps that won't work on LineageOS (because dumb developer security stance), I need to buy a "regular" android device that includes all the google "services".

Ideally, it should be a cheap second-hand phone that will still receive security updates for a long time.

Are there bands that are better (well, "less worse") than others from a privacy perspective?

[-] gomp@lemmy.ml 34 points 1 year ago

Its funny how podcasters and commenters seem to have taken Redhat's spin about "contributing value to the community" seriously, while to the rest of us the whole thing was obviously only about money (same as all the follow-ups from other parties... I would say "including Alma" but that would probably deserve its separate debate).

[-] gomp@lemmy.ml 23 points 1 year ago

The US have not signed the 2008 Convention on Cluster Munitions, while Canada and most (all?) other western states have (Russia has not, BTW).

The peculiar stance of the US on this matter should not surprise since there are lots of international treaties that the US have not signed or ratified, including some that one might expect any "decent" nation to uphold [my opinion, of course], such as bans on anti-personnel mines and torture, the Kyoto protocol and many, many others treaties.

Notably, the US are the only nation that has yet to ratify the 1989 Convention on the Rights of the Child... 'nough said.

view more: ‹ prev next ›

gomp

joined 1 year ago