@GNUxeava@mk.absturztau.be
@GNUxeava@mk.absturztau.be avatar

GNUxeava

@GNUxeava@mk.absturztau.be

Throw a Divine Brick to rid all your miseries!

This profile is from a federated server and may be incomplete. Browse more on the original instance.

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

clown world

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

Hello connections

Linkedin keeps getting more inhuman by the day. Next up,
Hello statistics/metrics

icedquinn, to random
@icedquinn@blob.cat avatar

still need that snacc.. shit.
maybe peanut butter?

GNUxeava,
@GNUxeava@mk.absturztau.be avatar

@icedquinn pee nut butter

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

We could've had a lot of nice things but those had to be stopped because people are idiots. Bad decision. Those people should've been stopped. 8 billion of people? A couple billion are out there just wasting oxygen.

GNUxeava,
@GNUxeava@mk.absturztau.be avatar
GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

Millions of Docker repos found pushing malware, phishing sites

That's kind of given for docker, pip, npm, crates, psgallery, etc since submitted packages do not get reviewed

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

sometimes i look at npcs enjoying their lives and get irritated. In the end i am the real clown. They are happy, i am not.

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

nix is probably the only language that has worse error messages than c++

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

I hate python with passion

GNUxeava,
@GNUxeava@mk.absturztau.be avatar

@icedquinn yes. Python is horrible at keeping compatibility even across minor versions.

GNUxeava,
@GNUxeava@mk.absturztau.be avatar

@icedquinn now i switched to python 3.10 which i expect to bring a different set of issues

GNUxeava,
@GNUxeava@mk.absturztau.be avatar

@icedquinn that means i would have to spin a virtual machine
sigh

GNUxeava,
@GNUxeava@mk.absturztau.be avatar

@icedquinn it does. I just want to avoid using docker or vm or whatever. See docker. It is just three containers - ollama, ollama-webui and rstudio. These packages are not bloated by themselves but somehow in docker they are.

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

hello

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

I am building a go project using nix flake but it fails in buildPhase. I have no idea why but it builds fine when I run go build in dev shell.
The project: https://github.com/charmbracelet/freeze

{
  description = "freeze";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
    flake-utils.url = "github:numtide/flake-utils";
    gomod2nix = {
      url = "github:tweag/gomod2nix";
      inputs.nixpkgs.follows = "nixpkgs";
      inputs.flake-utils.follows = "flake-utils";
    };
  };

  outputs = {
    self,
    nixpkgs,
    flake-utils,
    gomod2nix,
  }:
    flake-utils.lib.eachDefaultSystem (system: let
      pkgs = nixpkgs.legacyPackages.${system};
      overlays = [gomod2nix.overlays.default];
      #charm-freeze = pkgs.buildPackages.freeze;
    in rec {
      packages = {
        charm-freeze = pkgs.stdenvNoCC.mkDerivation rec {
          name = "freeze";
          src = ./.;
          #modules = ./gomod2nix.toml;
          buildInputs = with pkgs; [
            go
            gomod2nix.packages.${system}.default
          ];
          devShell = pkgs.mkShell {
            name = "freeze";
          };

          #packages = pkgs.buildPackages.default;

          buildPhase = ''
            gomod2nix generate
            go build
          '';
          installPhase = ''
            mkdir $out/
            cp freeze $out/
          '';
        };
      };
      defaultPackage = packages.charm-freeze;
    });
}
GNUxeava,
@GNUxeava@mk.absturztau.be avatar

@icedquinn perhaps. Now it is not even building in dev shell. Nothing changed.

GNUxeava,
@GNUxeava@mk.absturztau.be avatar

@icedquinn pain

@nix { "action": "setPhase", "phase": "unpackPhase" }
Running phase: unpackPhase
unpacking source archive /nix/store/2hzpyb4vw6z2p1khbrbkflsv2qzry4q6-hbl0cwv2vr0f6864g73l4x0l8pf56py1-source
source root is hbl0cwv2vr0f6864g73l4x0l8pf56py1-source
@nix { "action": "setPhase", "phase": "patchPhase" }
Running phase: patchPhase
@nix { "action": "setPhase", "phase": "updateAutotoolsGnuConfigScriptsPhase" }
Running phase: updateAutotoolsGnuConfigScriptsPhase
@nix { "action": "setPhase", "phase": "configurePhase" }
Running phase: configurePhase
no configure script, doing nothing
@nix { "action": "setPhase", "phase": "buildPhase" }
Running phase: buildPhase
[36mINFO[0m[0000] Parsing go.mod                                [36mmodPath[0m=go.mod
[36mINFO[0m[0000] Downloading dependencies                     
panic: error generating pkgs: exit status 1

goroutine 1 [running]:
github.com/nix-community/gomod2nix/internal/cmd.generateFunc(0xc0000d0900?, {0xc43c00?, 0x4?, 0x874e1e?})
	/build/source/internal/cmd/root.go:67 +0x40e
github.com/spf13/cobra.(*Command).execute(0xbdd140, {0xc43c00, 0x0, 0x0})
	/build/source/vendor/github.com/spf13/cobra/command.go:987 +0xab1
github.com/spf13/cobra.(*Command).ExecuteC(0xbdce60)
	/build/source/vendor/github.com/spf13/cobra/command.go:1115 +0x3ff
github.com/spf13/cobra.(*Command).Execute(...)
	/build/source/vendor/github.com/spf13/cobra/command.go:1039
github.com/nix-community/gomod2nix/internal/cmd.Execute()
	/build/source/internal/cmd/root.go:124 +0x1a
main.main()
	/build/source/main.go:6 +0xf
GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

I've got gigabit internet. It can download stuff at 0.000574 Gb/s.

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

why are computers so hard to work with. Nothing ever works.

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

Mega more like mega cunt

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

"kill yourself"

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar
GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

NixBSD is now a thing
https://github.com/nixos-bsd/nixbsd

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

Gemini WONT SHOW C++ To Underage Kids "ITS NOT SAFE"

bruhhh 😂

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

Boost if you are a hoarder too!

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

wtf is this ugly image
kys google

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

HateGPT

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

iPad babies make me feel important

mischievoustomato, to random
@mischievoustomato@rebased.taihou.website avatar

hosting xmpenis seems to require more things than matrix, and its a bit annoying.

GNUxeava,
@GNUxeava@mk.absturztau.be avatar

@mischievoustomato it is. Hosting prosody required me to open a bunch of ports scattered everywhere in the documentation, and some more by asking around on fedi. Next time i did that same but now group chat does not work. I've kept it as is because nobody talks to me

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

Me: move buffer vim
Search results: move to buffers in vim

Thanks SEO, being unhelpful like always

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

only on fedi does a post like this get maximum engagement

icedquinn, to random
@icedquinn@blob.cat avatar

i like void but dealing with upstream can be a bit :blobcatgrimacing:

flatpak is nice for getting around that, but then you're dealing with redhat. :blobcatconfounded:

GNUxeava,
@GNUxeava@mk.absturztau.be avatar

@icedquinn @mischievoustomato i look if something exists in nixpkgs then look for docker. It couldn't be more hassle free but comes at the cost of storage.

GNUxeava,
@GNUxeava@mk.absturztau.be avatar

@icedquinn @mischievoustomato i use docker for very specific things to keep size at a minimum

GNUxeava,
@GNUxeava@mk.absturztau.be avatar

@icedquinn @mischievoustomato wha
what
why
why iss flatpak so bad at it

GNUxeava, to random
@GNUxeava@mk.absturztau.be avatar

A container is a set of one or more applications/processes that run isolated from the host system.

This is the simplest definition of a container i've ever read

GNUxeava,
@GNUxeava@mk.absturztau.be avatar

Meanwhile Docker's definition:

A container is a standard unit of software that packages up code and all its dependencies so the application runs quickly and reliably from one computing environment to another.

RustyCrab, to random
@RustyCrab@clubcyberia.co avatar

I'm gonna be very interested to see how long my 13900HX lasts because this thing hits 100C literally every day (and I'm pretty sure that's just all laptops now)

GNUxeava,
@GNUxeava@mk.absturztau.be avatar

@RustyCrab @7666 because they know there will be retards who will go "wow a thin laptop and even more powerful processor" and pour money in. These guys bring more money than the ones who want a sane laptop

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • Hentai
  • doujinshi
  • announcements
  • general
  • All magazines