!RiPDGrdCYgVcyxoGfW:matrix.org

Fedimint Off-Topic

810 Members
3 Servers

Load older messages


SenderMessageTime
11 Oct 2023
@_discord_332755519561400320:t2bot.iodpc#0812 Well, mistakes happen. 20:42:11
12 Oct 2023
@_discord_759368862080041020:t2bot.iopippellia joined the room.08:55:42
@_discord_1106209895818199131:t2bot.ioethantuttle https://oort.rs 12:49:42
@_discord_1106209895818199131:t2bot.ioethantuttle
Oort is a "programming game" where you write Rust code to control a fleet of spaceships. Your code is responsible for the engines, weapons, radar, and communications of ships ranging from tiny missiles to massive cruisers.
12:49:58
@_discord_171017855813419008:t2bot.iowbobeirne 13:35:44
@_discord_171017855813419008:t2bot.iowbobeirne 13:35:46
@_discord_903380664336928798:t2bot.ioChronicleBot changed their display name from ChronicleBot to The Keeper of Records.19:00:23
@_discord_903380664336928798:t2bot.ioChronicleBot changed their display name from The Keeper of Records to ChronicleBot#0372.20:35:28
13 Oct 2023
@_discord_903380664336928798:t2bot.ioChronicleBot changed their display name from ChronicleBot#0372 to The Keeper of Records.02:58:27
@_discord_907225738825043978:t2bot.ioeshaanagg joined the room.09:19:10
@_discord_903380664336928798:t2bot.ioChronicleBot changed their display name from The Keeper of Records to ChronicleBot#0372.17:50:26
14 Oct 2023
@_discord_975239153115623467:t2bot.iopublius1 joined the room.10:30:42
@_discord_333422674695159809:t2bot.iochris@machine joined the room.10:45:14
@_discord_903380664336928798:t2bot.ioChronicleBot changed their display name from ChronicleBot#0372 to The Keeper of Records.19:00:31
@_discord_903380664336928798:t2bot.ioChronicleBot changed their display name from The Keeper of Records to ChronicleBot#0372.19:50:26
@_discord_333422674695159809:t2bot.iochris@machine changed their display name from chrisatmachine to chris@machine.20:48:21
15 Oct 2023
@_discord_1106209895818199131:t2bot.ioethantuttle Beginner cryptography suggestions for a high schooler that loves math? 00:57:32
@_discord_1106209895818199131:t2bot.ioethantuttle Learning material** 00:57:40
@_discord_1052955408471429152:t2bot.iorealeinherjarimage.png
Download image.png
08:23:21
@_discord_1052955408471429152:t2bot.iorealeinherjar https://www.youtube.com/playlist?list=PLN9KZDpNfsHMd7d7PX87JGesGY_Qzyb3V 08:26:03
@_discord_463032265522544660:t2bot.ioSteffen https://www.youtube.com/@introductiontocryptography4223/featured 14:02:39
@_discord_903380664336928798:t2bot.ioChronicleBot changed their display name from ChronicleBot#0372 to The Keeper of Records.16:17:15
@_discord_1052955408471429152:t2bot.iorealeinherjar Nice. BTW I use yt-dlp to get these clips for offline consumption:
alias yt='yt-dlp --add-metadata -i --format mp4 --restrict-filenames --sponsorblock-remove all'

Then do yt '<link>' where <link> can be single vid, playlist, or channel.
19:06:23
@_discord_1106209895818199131:t2bot.ioethantuttle wish there was better p2p video sharing. it's been a while since I've torrented but was always cool being able to access media shared around. 23:58:33
16 Oct 2023
@_discord_988921170873180282:t2bot.ioisaac-e1 joined the room.02:37:39
@_discord_903380664336928798:t2bot.ioChronicleBot changed their display name from The Keeper of Records to ChronicleBot#0372.06:01:07
@_discord_1106209895818199131:t2bot.ioethantuttle
So I'm trying out Nix with devenv (https://devenv.sh/getting-started/) for the first time and have a question on using it the way its intended. I have a Golang project that requires a shared library as a dependency. This requires me to clone a git repo, select a specific tag, and then run make inside the repo. Normally I'd use my own Makefile to accomplish the dependency building. With nix is that still the case or is that something I should integrate into the nix configuration itself? This seems like a tool that can run pretty deep and I've just scratched the surface on it

Question from a coworker I shilled nix to.
Just want to validate my response is accurate.

Dependencies can be handled by nix and should be as the project develops but don’t have to be.
13:06:43
@_discord_1106209895818199131:t2bot.ioethantuttle does a git dependency have to have nix in the repo to be used in a flake? I'm looking at the ui repo as a reference:
{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
    flake-utils.url = "github:numtide/flake-utils";
    fedimint = {
      # Snapshot of Fedimint after AlephBFT was merged: https://github.com/fedimint/fedimint/pull/3313
      url = "github:fedimint/fedimint?rev=a71267934a5ec2f0df28686fa21362386e762ca0";
    };
  };
  outputs = { self, nixpkgs, flake-utils, fedimint }:
    flake-utils.lib.eachDefaultSystem (system:
      let ....
13:09:03
@_discord_785867988670218271:t2bot.io.headnode joined the room.13:38:59
@_discord_1052955408471429152:t2bot.iorealeinherjar No but it helps.
https://nixos.org/manual/nix/unstable/command-ref/new-cli/nix3-flake#flake-inputs
Repositories that don't contain a flake.nix can also be used as inputs, by setting the input's flake attribute to false:
 inputs.grcov = {
   type = "github";
   owner = "mozilla";
   repo = "grcov";
   flake = false;
 };
 
 outputs = { self, nixpkgs, grcov }: {
   packages.x86_64-linux.grcov = stdenv.mkDerivation {
     src = grcov;
     ...
   };
 };
15:11:59

Show newer messages


Back to Room ListRoom Version: 9