!OHimLTKAXNbFrEoogf:matrix.org

Nix Milan

85 Members
https://milano.nix.pizza/6 Servers

Load older messages


SenderMessageTime
7 Jun 2025
@telegram_5581649653:t2bot.ioLuca Engineer set a profile picture.03:09:29
@telegram_171307096:t2bot.ioAlberto
In reply to Luca Engineer
Buongiorno a tutti
Per me va bene dove volete voi ☺️
Solo una domanda, bisogna portare il proprio pc?
Buondì! Se vuoi portare il PC è perfetto, però puoi anche venire senza nulla puoi aggregarti ad altri, come preferisci 😊
04:57:12
@telegram_32436951:t2bot.ioDavidBuon meetup gente06:56:42
@telegram_7189191315:t2bot.iogecko joined the room.07:07:07
@telegram_98204228:t2bot.ioAlessandro 🤔➖☀️🖌Ciao, io arrivo tardi, non aspettatemi 😔07:05:23
@telegram_165995843:t2bot.ioNonno Felice Io e @alberto_fanton arriviamo in mezz'ora 07:03:15
@telegram_165995843:t2bot.ioNonno Felice @Wonderdnal 07:02:46
@telegram_7189191315:t2bot.iogeckoCiao a tutti, non son riuscito ad iscrivermi in tempo. È possibile partecipare comunque all'evento?06:59:17
@telegram_5581649653:t2bot.ioLuca EngineerRedacted or Malformed Event06:57:10
@telegram_5581649653:t2bot.ioLuca EngineerSono qui06:57:10
@telegram_5581649653:t2bot.ioLuca EngineerArrivo 👍07:13:51
@telegram_171307096:t2bot.ioAlberto https://maps.app.goo.gl/bn5XiqZeoXHk8mL26 07:13:05
@telegram_171307096:t2bot.ioAlberto
In reply to gecko
Ciao a tutti, non son riuscito ad iscrivermi in tempo. È possibile partecipare comunque all'evento?
Ciao! Sisi vieni pure 😊
07:08:30
@telegram_171307096:t2bot.ioAlberto Ciao Luca, se vuoi io e Zhi pensavamo di prendere un caffè al volo alla latteria, fai che arriveremo lì tra 30 minuti saremo lì se vuoi venirci incontro 07:12:23
@annib-ale:matrix.orgAlessandro CandidoA chi bisognava suonare?07:33:07
@telegram_73824637:t2bot.ioAndrea CiceriCitofonate a "beatdata"07:32:35
@telegram_73824637:t2bot.ioAndrea CiceriTu suona a beatdata07:33:47
@telegram_73824637:t2bot.ioAndrea CiceriForse c'é ancora scritto owlise su meetup07:33:40
@telegram_426506625:t2bot.ioMtBuondì, tardo una mezz'ora07:37:02
@telegram_5581649653:t2bot.ioLuca Engineer @alberto_fanton vi aspetto vicino alla latteria o siete già in owilise ? 07:34:20
@telegram_73824637:t2bot.ioAndrea CiceriC'è già gente dentro07:39:08
@telegram_73824637:t2bot.ioAndrea CiceriBirre, stuzzichini e ragazze07:48:41
@telegram_73824637:t2bot.ioAndrea CiceriUn casino di gente07:48:24
@telegram_98204228:t2bot.ioAlessandro 🤔➖☀️🖌1 minuto e suono08:02:08
@telegram_165995843:t2bot.ioNonno Felice
In reply to Andrea Ciceri
Birre, stuzzichini e ragazze
Ragazze con capelli lunghi e barba come te?
09:41:05
@telegram_463188749:t2bot.ioAlessandro Candido joined the room.10:49:39
@telegram_7189191315:t2bot.iogecko Non ricordo con chi ne parlavo, ma questo è un contenuto di grande qualità che introduce al funzionamento degli LLM passo passo. Lungo ma vale ogni minuto IMO
https://www.youtube.com/watch?v=7xTGNNLPyMI
19:04:05
@telegram_7189191315:t2bot.iogecko Invece questo è messo un po' bene uno script per dumpare configuration.nix espanso in YAML:
Usage:

chmod +x dump-config.nix
./dump-config.nix | yq -y

dump-config.nix:

#!/usr/bin/env -S nix eval --extra-experimental-features nix-command --json --file

let
  visitor =
    object:
    if ((builtins.typeOf object) == "list") then
      builtins.map visitor object
    else
      (
        if ((builtins.typeOf object) == "set") then
          (builtins.mapAttrs (key: value: visitor value) object)
        else if ((builtins.typeOf object) == "lambda") then
          null
        else
          object
      );
  systemConfig = import /etc/nixos/configuration.nix;
  pkgs = import <nixpkgs> { };
  conf = systemConfig {
    pkgs = pkgs;
    config = conf;
    lib = pkgs.lib;
  };
in
visitor conf
20:18:07
@telegram_73824637:t2bot.ioAndrea Ciceri
In reply to gecko
Invece questo è messo un po' bene uno script per dumpare configuration.nix espanso in YAML:
Usage:

chmod +x dump-config.nix
./dump-config.nix | yq -y

dump-config.nix:

#!/usr/bin/env -S nix eval --extra-experimental-features nix-command --json --file

let
  visitor =
    object:
    if ((builtins.typeOf object) == "list") then
      builtins.map visitor object
    else
      (
        if ((builtins.typeOf object) == "set") then
          (builtins.mapAttrs (key: value: visitor value) object)
        else if ((builtins.typeOf object) == "lambda") then
          null
        else
          object
      );
  systemConfig = import /etc/nixos/configuration.nix;
  pkgs = import <nixpkgs> { };
  conf = systemConfig {
    pkgs = pkgs;
    config = conf;
    lib = pkgs.lib;
  };
in
visitor conf
Fai una PR su infra per creare un repository nell'organizzazione nix-milano e poi pushalo!
21:40:51
@telegram_32436951:t2bot.ioDavid
In reply to gecko
Invece questo è messo un po' bene uno script per dumpare configuration.nix espanso in YAML:
Usage:

chmod +x dump-config.nix
./dump-config.nix | yq -y

dump-config.nix:

#!/usr/bin/env -S nix eval --extra-experimental-features nix-command --json --file

let
  visitor =
    object:
    if ((builtins.typeOf object) == "list") then
      builtins.map visitor object
    else
      (
        if ((builtins.typeOf object) == "set") then
          (builtins.mapAttrs (key: value: visitor value) object)
        else if ((builtins.typeOf object) == "lambda") then
          null
        else
          object
      );
  systemConfig = import /etc/nixos/configuration.nix;
  pkgs = import <nixpkgs> { };
  conf = systemConfig {
    pkgs = pkgs;
    config = conf;
    lib = pkgs.lib;
  };
in
visitor conf
ah okay mi chiedevo come facesse a non esplodere, semplicemente non chiama evalModules
23:13:35

Show newer messages


Back to Room ListRoom Version: 10