Laser

joined 1 year ago
[–] Laser@feddit.org 1 points 2 hours ago

Stronger compartmentalization

[–] Laser@feddit.org 6 points 14 hours ago (2 children)

Ok, I don't really know why I wrote all that because it was pretty clear from context you know the difference. Hopefully it helps others.

For me, Mullvad isn't an option because they don't have port forwarding anymore.

[–] Laser@feddit.org 6 points 14 hours ago

Not only because of you, but also because of Obama and Biden

[–] Laser@feddit.org 13 points 14 hours ago (6 children)

Tailscale is a VPN in the classic sense, I e. to build a secure network over an insecure one. Mullvad is a service to hide your public IP address and switch from having to trust your ISP to having to trust Mullvad.

I too have a subscription to one of the latter services, but I always find them sketchy

[–] Laser@feddit.org 10 points 14 hours ago

Dann müsste er ja eigentlich Dobhurensohnt heißen

[–] Laser@feddit.org 31 points 14 hours ago (2 children)

Gitlab is a product for enterprises which usually selfhost private repositories, I don't think they give a damn about community stuff.

Yeah there are paying customers that want this, but I don't think they see a business case, but rather a maintenance burden.

[–] Laser@feddit.org 6 points 15 hours ago

Meine "Drogen" sind mir, Koffein ausgenommen, für die Arbeit viel zu schade.

[–] Laser@feddit.org 4 points 16 hours ago

Oh then I misunderstood (but didn't downvote). But yeah American cars aren't really a thing outside of the American and maybe middle east. The American brands produce different models for different continents.

[–] Laser@feddit.org 3 points 17 hours ago (1 children)

I think csv is a bad format, if you can even call it that. Yes, there are some cases where it makes sense. I worked with an oscilloscope at uni which output csv. But other than that, I consider it more of a concept than an interface / exchange standard

[–] Laser@feddit.org 11 points 17 hours ago (2 children)

Yeah the infamous Japanese cars, nobody ever said anything good about those right? Like the garbage Corolla. Or did anyone ever drive a Prius? Or a Hilux?

[–] Laser@feddit.org 12 points 1 day ago (1 children)

Chuck Schumer isn't on Lemmy I guess, and every other person in the world understands that thinking the name was the issue can't be serious

[–] Laser@feddit.org 20 points 1 day ago (3 children)

Yeah because they changed the name, said so right in the post

 

In this post, I go into hopefully better output parsing.

 

cross-posted from: https://feddit.org/post/11745053

Simple Home DNS using dnscrypt-proxy

 

… remember you're not as useless as this Banana:

 

Just stumbled upon this in my recommended videos. I didn't create this.

 

After having a lot of trouble on the previous stake using the deck, this was a breeze (first try back to back after https://youtu.be/X3SDc_Ik5aE). Definitely not flawless, but still good result.

Some facts about the run:

Recently started recording my runs because I thought it's nicer than just screenshots, this turned out to be my best one so far. Sure the hand score is skewed due to Plasma, but hey, I don't make the rules.

No, I'm not expecting anyone to watch this whole thing.

 

First time actually having a working deck around madness. Was good enough to reach Ante 13. https://imgur.com/a/7jIb8qO

 

This is one of the best buffon packs I ever got, and it was the very first one I opened that run… and at that point, neither of them did anything (since it's abandoned deck). Blueprint was still appreciated but I thought it was a fun coincidence that technically, neither of these would help right after selecting.

Finished the run, was low stakes anyways but wanted to share the situation.

 

Beat gold today on phone (previous time was on PC) after hitting a wall before... and it was on a deck that looked really unimpressive in both cards and jokers so I thought I'd share, kind of a contrast to the screenshots of super sick setups. It was kind of close in points but money was never an issue. I ran delayed gratification first half which synergized with green.

No negative, foil or polychrome jokers, and only a single holographic. Two common, two uncommon, one rare.

It looks really boringly unoptimized, which I think makes it interesting, strangely enough.

1
Thanks game (feddit.org)
 

Such a lucky run so far (Red Deck Gold difficulty)… Not quite sure yet what to do, probably sell the tarot joker for the blueprint

51
submitted 7 months ago* (last edited 7 months ago) by Laser@feddit.org to c/nix@programming.dev
 

I just upgraded my NixOS machine after switching to nixos-unstable-small because I think unstable will take some time to update as getting 24.11 out has the highest priority.

Anyhow, two of my packages stopped me from applying a new configuration, as some packages have been changed when reorganizing into pkgs/by-name. I fixed it and wanted to share as this will hit others running unstable with these packages as soon as hydra catches up.

nerdfonts (now nerd-fonts)

Package was renamed, which it will state on evaluation; individual fonts are now part of the nerd-fonts attribute. I had Source Code Pro in there, there was some kind of mapping, which looked kind of like in https://wiki.nixos.org/wiki/Fonts#Installing_specific_fonts_from_nerdfonts – the new way is now to just use nerd-fonts.sauce-code-pro directly, you can probably do something like ++ with nerd-fonts; [ sauce-code-pro other-fonts ] to add multiple nerd-fonts to your fonts list, but I haven't tested this.

RetroArch

Until now, cores were specified as in https://wiki.nixos.org/wiki/RetroArch, however override doesn't seem to work anymore. There's now the withCores attribute / function that expects a function that returns a list. The easiest way I found to just specify a fixed list of cores was (retroarch.withCores (_: with libretro; [ snes9x mupen64plus fbneo flycast ])). Maybe other options are easier / cleaner.

Word of warning on compiling nixos-unstable-small

There are currently a lot of packages to be built if you change into that channel (I'm using flakes, but you get my point). Due to the default value of auto for nix.settings.max-jobs, this meant nix tried to build 24 derivations at the same time. This is fine if these are just downloaded from hydra, but if you try to build 24 big derivations at the same time, each trying to use 24 threads because nix.settings.cores is also 0 by default, which means all threads, build processes quickly ate all of my 32GB of RAM so that the OOM killer had to intervene, however often too late with my system dying. I recommend to set nix.settings.max-jobs to something more reasonable before attempting this (I used 1).

view more: next ›