gchristensen changed the topic of #nixos-chat to: NixOS but much less topical || https://logs.nix.samueldr.com/nixos-chat
jackdk has joined #nixos-chat
jasongrossman has quit [Ping timeout: 258 seconds]
lassulus has quit [Read error: Connection reset by peer]
hedning__ has left #nixos-chat [#nixos-chat]
Synthetica has quit [Quit: Connection closed for inactivity]
lassulus has joined #nixos-chat
<nh2> sphalerite samueldr clever: I found something important: The plopkexec I used succcessfully is different from the upstream (original author) one; it added some functionality: https://github.com/eugenesan/chrubuntu-script/blob/3247b0d4aefc9e75bee7b41eb4cb191e4a1f0852/plopkexec/Changelog#L43-L44
<nh2> and also changed kernel configs that work on the Chromebook
<nh2> I spent all of today trying to make the upstream work, and just now noticed these critical differences
<samueldr> ouch
<nh2> it's so cool though, random dudes from the Internet always implementing all just the functionality I need
<clever> nh2: what was the critical difference?
<clever> samueldr: in other unrelated (to nixos) news, ive been trying to do sha512 and ed25519 on an AVR, lol
<clever> the firmwae currently compiles to ~90kb, and i only have 32kb of flash on my target
<samueldr> yeah, that's a lot of shas to wrangle around :)
<clever> nh2: which FS specifically?
<clever> samueldr: ive also found a haskell based AVR simulator, and am currently trying to diagnose why puts() doesnt work
<clever> i can write to the serial port on the avr, but if i use stdio.h to write to it, nothing happens
<nh2> clever: I vaguely remember a problem like that when using Rust on Arduino
<clever> nh2: rust on avr uses llvm, which segfaults when trying to compile this code :P
<clever> i'm back to plain avr-gcc
<nh2> clever: all my rust code there is on https://github.com/nh2/quadcopter-simulation/blob/master/arduino-accel-rust/src/main.rs if it turns out any help
<clever> though i wasnt actually using rust, i got distracted by llvm and wound up doing clang->llvm->avr
<nh2> the trickiest bit was getting the names of the interrupt vectors right
<clever> ive not enabled IRQ's yet
<clever> i suspect this simulator doesnt even support them
<clever> cycle 12785: opcode: 940e ca0c CALL 51724 caused PC 7bf2->19418, stdout: U
<clever> and then from objdump
<clever> 7bf2: 0e 94 0c ca call 0x19418 ; 0x19418 <fputs>
<clever> so at that exact point in time, the raw write to the serial IO worked (the U), and its calling fputs("booted", &fh);
<clever> 19426: db 01 movw r26, r22
<clever> 19428: 13 96 adiw r26, 0x03 ; 3
<clever> 1942a: 2c 91 ld r18, X
<clever> X is R27:R26
<clever> so it loaded r22 into X, and then added 3
<clever> r22 was 0...
<clever> 7bee: 8a ea ldi r24, 0xAA ; 170
<clever> 7bf0: 91 e0 ldi r25, 0x01 ; 1
<clever> ok, i can confirm 0x1aa is the addr of "booted"
<clever> 7bea: 60 e0 ldi r22, 0x00 ; 0
<clever> 7bec: 71 e0 ldi r23, 0x01 ; 1
<clever> 0x100 must then be the address of fh
<clever> and its far more readable with `avr-gcc -S`
<clever> oh nice, it even annotates things with stack usage!
<clever> nh2: ok, i think the problem is that fputs determinted the write-ok bit isnt set on the FILE*
<clever> so it returned -1
<nh2> clever: which bit is that?
<samueldr> I love sd cards... not really
<samueldr> just now lost a 32GB one from too many u-boot writes...
<clever> nh2: 249 #define __SWR->>0x0002->->>>>>>>/* OK to write */
<clever> nh2: from the flags field in the FILE*
<nh2> clever: apparently there are high quality industry ones that last a lot
<nh2> I meant samueldr ^
<samueldr> yeah, and cost a lot
<gchristensen> ouch
<samueldr> it's mainly highly annoying when developing stuff
<samueldr> sd cards are terrible
<nh2> samueldr: I'm mainly worried of wearing mine out from the physical plugging!
<clever> ive had cards fail for both reasons
<samueldr> I've had better luck with reliability from cheap smaller cards, e.g. 2GB and less, than from new name brand with high storage density
<samueldr> yeah, though I've been only dealing with what I hope are reputable source for approvisionment
<samueldr> but it's hard to know
<samueldr> like "really know"
<samueldr> something I'll be on the lookout for is going with walmart's home brand
<samueldr> just because they probably handle the supply chain closer to the source
<samueldr> than e.g. some shop buying from a seller, which buys from a supplier, which buys from someone else
<clever> read*
<nh2> samueldr: I've read some recommendations of these: https://www.swissbit.com/products/nand-flash-products/sd-memory-cards/
<nh2> samueldr: for example, 62 EUR for the 32 GB variant of this one: https://www.mouser.de/Swissbit/Memory-Cards/S-46-Series/_/N-1yxuk4qZ9pk9fZ1y9klgy
<samueldr> 62€ must be about a bajillion $CAD
<clever> 00:1c.4 PCI bridge [0604]: Intel Corporation 100 Series/C230 Series Chipset Family PCI Express Root Port #5 [8086:a114] (rev f1)
<clever> interesting, my laptop SD reader is on this pci dev...
<clever> rtsx_pci_sdmmc is the module
<clever> description: Realtek PCI-E SD/MMC Card Host Driver
<samueldr> and just now
<samueldr> not my evening it looks like
<clever> 02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTL8411B PCI Express Card Reader [10ec:5287] (rev 01)
<clever> oh wait
<samueldr> I dd'd to /dev/sdc
<samueldr> but it never worked!
<clever> 00:1c.4 is the pci hub, not the reader
<samueldr> I had an accidental file in there, so the block device wouldn't be created
<samueldr> even though it listed under lsblk
<clever> lol
<clever> nice
<samueldr> not really, considering there is a body of water a couple steps from where I live
<clever> my 1st working card claims to be from 10/2013, so the date isnt null
<clever> 512 byte erase size
<clever> it also prefers to be erased in 4194304 byte blocks
<samueldr> good
<samueldr> I didn't lose the SD card
<clever> 4mb
<samueldr> in the end I was trolled heavily by the /dev/sdc file
<samueldr> (and a bad flash)
<samueldr> now to figure out why I lost a screen
<nh2> "I had an accidental file in there, so the block device wouldn't be created" -- samueldr just the same problem I wrote about here a couple days ago!
<nh2> samueldr: so all my new dd invocations look like `test -b /dev/mmcblk0p2 && sudo dd ..`
<nh2> samueldr: I lost around 5 hours because of it
<clever> nh2: i blkid and ls -l things before i dd into them
<nh2> OK everyone I can report that I now have PlopKexec->NixOS working with everything built from source and nix expressions, all precompiled binary blobs removed
<clever> nice
<nh2> remaining big problem is that `poweroff` doesn't work
<nh2> It did work before when I kexec'ed from a kernel I built, but with the kernel config of PlopKexec, it somehow breaks (even though I kexec in between!)
<nh2> It just prints `reboot: System halted`
<samueldr> don't know who the culprit was, but it took cutting power to everything, and now the third screen is back in action, after vanishing after a reboot
<samueldr> I'm cursed, now firefox starts with "corrupted" windows, where the tab bar is empty, no tabs, no buttons :/
<samueldr> okay, that one was my fault; a fix in the profile for a feature missing from firefox...
<samueldr> ugh, and their fix is just... not working right
<samueldr> sorry, getting a bit sour and I don't like me being sour
<gchristensen> I know what you mean :') might be bed time here too
<samueldr> here it was mainly things all at the same time working wonky
<samueldr> there were other things that I didn't share, all technical or technological things that generally just work
infinisil has quit [Quit: Configuring ZNC, sorry for the joins/quits!]
infinisil has joined #nixos-chat
infinisil has quit [Remote host closed the connection]
infinisil has joined #nixos-chat
endformationage has quit [Quit: WeeChat 2.4]
<monsieurp> \o/
<monsieurp> well that was easy
jasongrossman has joined #nixos-chat
Myhlamaeus has quit [Ping timeout: 264 seconds]
<elvishjerricco> Man how do people make such good graphics for their programming presentations? They usually look way better than what you could easily do in e.g. powerpoint.
<joepie91> elvishjerricco: I've heard a particular macOS thing mentioned a few times in this context
<joepie91> don't recall its name
<etu> Next time I'll making a presentation I will use: https://github.com/yjwen/org-reveal/ -- I've seen it in action once it was quite fancy :)
<etu> A guy at our local emacs meetup used that, here's the generated presentation: https://ghostinthecode.se/assets/emacsmeet-presentation.html and source https://ghostinthecode.se/assets/emacsmeet-presentation.org
<joepie91> etu: Reveal is fairly decent, I've always stayed away from it because of its "fork the repo and then modify everything in it" model
<joepie91> but org-reveal seems to solve that problem
<sphalerite> elvishjerricco: graphics as in images embedded in the presentation, or just the general look and feel of the presentation?
<elvishjerricco> sphalerite: The former. I'm guessing a lot of them probably use inkscape or something
Synthetica has joined #nixos-chat
<LnL7> joepie91: omnigraffle?
<joepie91> LnL7: doesn't ring a bell
<joepie91> so probably not that one
<LnL7> hmm, no idea then
<jasongrossman> etu: That is nice. Thanks for pointing to it. Personally, I feel very strongly about re-use of slide material, and org mode (or anything else that's mainly plain text) is great for that.
jackdk has quit [Ping timeout: 258 seconds]
infinisil is now known as duh
duh is now known as infinisil
<infinisil> duh is registered damnit
teto has joined #nixos-chat
__monty__ has joined #nixos-chat
<andi-> Anyone here played around with pipewire yet? I supposedly fixes the issue of screensharing on wayland (for FireFox >=68 at least).
LnL7 is now known as LnL
ctp has quit [Ping timeout: 252 seconds]
colemickens has quit [Ping timeout: 240 seconds]
benkolera has quit [Read error: Connection reset by peer]
Synthetica has quit [Ping timeout: 258 seconds]
ctp has joined #nixos-chat
Synthetica has joined #nixos-chat
colemickens has joined #nixos-chat
benkolera has joined #nixos-chat
jasongrossman has quit [Remote host closed the connection]
jasongrossman has joined #nixos-chat
<gchristensen> the "magic spell" that doesn't work is what lured me to nixos
<pie_> hmm probably worthh watching the rest of the talk too
<pie_> gchristensen, ah hehe yeah when he started talking about states i was like "<pie_>nyehehehe"
<pie_> have there been any examples of people reproducing bugs with nix yet
<pie_> i mean the answer to that is definitely yes but
<gchristensen> sure
<gchristensen> aszlig found a great security bug w.r.t. kernel memory reproducible and testable with a nixos vm test
<pie_> cool ^.^
Synthetica_ has joined #nixos-chat
<pie_> might be nice if there was a relatively prominent place to link that from or something
ctp___ has joined #nixos-chat
Synthetica has quit [Ping timeout: 258 seconds]
Synthetica_ is now known as Synthetica
<gchristensen> yeah
ctp has quit [Ping timeout: 250 seconds]
ctp___ is now known as ctp
<pie_> would be nice if we could do something about this https://youtu.be/lKXe3HUG2l4?t=1345
Synthetica has quit [Quit: Connection closed for inactivity]
<infinisil> Updating your system, then realizing that some bug that's been annoying you for a while has been fixes is such a nice feeling :O
<gchristensen> nice
<pie_> infinisil, :D
<monsieurp> I was wondering if nix would be usable on BSDs
<pie_> monsieurp, theres small amounts of work on it afaik
<pie_> well except osx if that counts
<pie_> osx seems to work
<gchristensen> it used to be fully supported, and then the nix on BSD maintainers lost interest I guess
<monsieurp> I saw a PR to get Nix to compile on FreeBSD
<pie_> nix itself does compile for most platforms
<pie_> i think
<pie_> gchristensen, hehe https://youtu.be/lKXe3HUG2l4?t=2075
<pie_> hmmmm...something something content (semantics) addressable source code repositories...
<aminechikhaoui> am I the only one seeing this as horror https://github.com/electron-userland/electron-builder-binaries/
<aminechikhaoui> I mean why do they do that, why do they pull binaries from a repo and check sha512 of the files from another binary
<gchristensen> wat
<pie_> no idea whats going on there but this sounds wrong "Version and SHA512 checksum of binary is hardcoded in the electron-builder code. So, even if this repository will be compromised, users are not affected."
<pie_> cant you just change the hashes
<gchristensen> that info is in a different repo I guess
<pie_> well also if it was signed itd be better i guess
<aminechikhaoui> wouldn't it be neat if there was a web service that returns the same thing as what {^_^} do for ,locate requests, or is there something like that already
<gchristensen> that'd be awesome!
<gchristensen> like packages.html but ... locate
<aminechikhaoui> yeah
<gchristensen> and now that the build server for the website has more than two bytes of free space we might even be able to do it
<pie_> most depressing thing about programming today: https://youtu.be/bo5WL5IQAd0?t=502
<pie_> gchristensen, heh. yay :p
<samueldr> gchristensen: that'd probably need a non-static site, some kind of backend, if so it'd be helpful for every search pages instead of sending the whole load of packages at once
<samueldr> and a whole load of improvements that cannot be done otherwise
<pie_> is options and packages .html static? that would explain why it takes a while to loda
<pie_> loda
<pie_> ... load
<gchristensen> ah then probably no-deal
<samueldr> the packages page sorely needs some help from a non-static part
<samueldr> (imo)
<samueldr> it cannot search through the whole set due to sets not being recursed into, but if we recurse into everything, it becomes *way* too big to be worth it
<samueldr> (I think a PR was blocked on that)
jtojnar has joined #nixos-chat
kisik21 has joined #nixos-chat
<kisik21> My Wi-Fi signal is so good Waybar shows it as 108%
<kisik21> That's how good my new laptop is: it literally forced me to move to Wayland
<kisik21> talked about it before, maybe a week ago
drakonis1 has quit [Quit: WeeChat 2.4]
endformationage has joined #nixos-chat
drakonis_ has joined #nixos-chat
drakonis has quit [Ping timeout: 258 seconds]
drakonis_ has quit [Read error: Connection reset by peer]
drakonis_ has joined #nixos-chat
drakonis_ has quit [Read error: Connection reset by peer]
drakonis has joined #nixos-chat
drakonis has quit [Read error: Connection reset by peer]
drakonis has joined #nixos-chat
<gchristensen> ok so I did a 1:1 call with jitsi meet today
<gchristensen> and it was horrible!
<andi-> We used to have jitsi meet at the company.. It would a) eat all the CPU power it could possibly find b) the voice quality wouldn't be great c) sometimes it just wouldn't work for unknown reasons (black screens, no sound, …).. We moved to google meet that just works so far and I actually like it despite the Google bits.
<gchristensen> we didn't manage to get to problems a,b,c since we had like 10s of latency
<andi-> wow
<andi-> maybe that was because of a? :D
<gchristensen> haha maybe
<gchristensen> anyway, office hours won't be over jitsi meet
<andi-> did you try screen sharing from wayland?
<gchristensen> yeah
<andi-> It was to be expected but it caught me this morning when I wanted to discuss an issue with a co-worker...
<gchristensen> with xterm :)
<gchristensen> you have to have an ancient X only program to do it. xterm for example
<andi-> Thats what I resorted to... It is nice that there are only native wayland applications in my usual workflow <3
<gchristensen> (except for gui emacs) yeah
<andi-> I could also set the GDB_BACKEND=x11 and spawn my terminal or something..
<andi-> *GDK_BACKEND
<andi-> ah so with emacs you also have a terminal and a webbrowser that can be shared? :D
<gchristensen> and an IRC client and ...
<andi-> are you using the weechat emacs addon?
<andi-> I tried it once but it took forever to load all my buffers
<gchristensen> no way, I don't use emacs for anything but text
<gchristensen> and I run it in a terminal because the GUI version is not nice under wayland
<andi-> Isn't emacs just using GTK or QT (depending on the falvor)?
<gchristensen> "just"
<andi-> well the just meaning that both support wayland transparently :-)
<gchristensen> yeah but it supports wayland worse than a program that doesn't support wayland running in X mode
drakonis has quit [Ping timeout: 258 seconds]
<gchristensen> different parts of it are scaled vastly differently. some parts look sharp and crisp, some are extremely blurry
<andi-> ouch.. Guess I'll stick with neovim a bit longer.. Really liked my 1 month "forced" usage of Emacs but muscle memory still makes VIM easier..
<gchristensen> yeah I might switch back
MichaelRaskin has joined #nixos-chat
drakonis has joined #nixos-chat
<pie_> gchristensen, oh yeah, any plans yet post-survey (?) on when the times are gonna be for th ecall
drakonis has quit [Ping timeout: 276 seconds]
<pie_> its not a screen sharing thing at all so probably doesnt help with anything, but for sketches or whatever / collab whiteboard drawpile is good if you have something like a tablet
<pie_> though in my limited experience text as opposed to drawing letters isnt supported too well
<adisbladis> gchristensen: It's "funny" how calls have seemingly gotten worse over time... I remember having a really enjoyable voice call experience from my Nokia N900 using jingle(xmpp) at the time.
<adisbladis> andi-: Out of all the popular ones out there right now I would agree about google meet
<adisbladis> Haven't tried matrix voice calls yet though.
<infinisil> adisbladis: matrix voice calls work decently, but they don't support group calls natively
<adisbladis> Ah, right :/
<andi-> adisbladis: the n900 also had the best GSM voice quality I ever had on a phone :/
<adisbladis> The only part that was not great about that device was the poor quality usb port
<MichaelRaskin> I think for group calls you should give up on the idea of bundling
<andi-> adisbladis: oh yeah..
<adisbladis> andi-: Every mobile experience since has been subpar :/
<andi-> adisbladis: I went looking for my n900 a few weeks ago.. Can't find it anymore.. Hope I didn't trash it at some point.
<MichaelRaskin> Talky, Jitsi — they are probably as good as it ever was
<adisbladis> MichaelRaskin: Bundling?
<MichaelRaskin> Well, Talky and Jitsi are usable in the mode of Just Create A One Time VideoChat Link
<MichaelRaskin> I think there is some support for Matrix to fall through to Jitsi
<andi-> matrix wants to go the jitsi route?! o.O https://github.com/vector-im/riot-web/issues/6444#issuecomment-378540092
<gchristensen> great!
<MichaelRaskin> I hoped they have partially implemented it, no?
<infinisil> I can very much recommend mumble for group chats though
<infinisil> open source, nice UI, simple
<andi-> Usually works fine
<andi-> I recently saw a web client for mumble..
<gchristensen> slack calls and google meet both work quite reliably for me, nothing else has been reliable
<gchristensen> and not even slack/google are reliable daily
<MichaelRaskin> gchristensen: di you try Talky and Jitsi?
<andi-> so lets just use IRC? ;-)
<gchristensen> this topic startedfrom me exclaiming how unreliable jitsi was
<MichaelRaskin> Proper way of doing Nix group voice call: post a jitsi link to IRC
<adisbladis> VOI (Voice Over IRC)
<MichaelRaskin> Ah
<gchristensen> zimbatm and I had 10s latency
<adisbladis> Or VOIRC
<andi-> VoDCC
<adisbladis> :D
<MichaelRaskin> I think I can get the same problem on anything…
<gchristensen> I *can* get the problem with whatever :P
<MichaelRaskin> Dunno about Google, all my Google accounts get banned sooner rather than later
<adisbladis> infinisil: Can you use mumble without an account?
<andi-> yes
<infinisil> adisbladis: Yeah
<infinisil> Just need a nick
<adisbladis> Great :)
<andi-> someone just has to host an instance
<gchristensen> like a server?
<andi-> yes
<andi-> super simple to setup
<andi-> services.murmur.enable = true ;-)
<gchristensen> I would think it might not do a nice job with cross-atlantic calls without PoPs on both sides?
<andi-> why is that the case? I think latency wise it is a much better experience if all the participants are subject to a similar experience.. otherwise on half of the planet might hear something the others didn't...
<gchristensen> exactlry
<MichaelRaskin> So, Iceland?
<gchristensen> but if it is hosted in EU then I'm slow, and if it is hosted in US you're slow
<andi-> I used it heavily for playing online games with people from the US many years ago.. never had any kind of issues or latency complains
<gchristensen> but with a PoP in US and EU, there is private backhaul links for prioritized traffic
<gchristensen> anyway, I'm leaning towards Zoom
<adisbladis> I've had huge issues with zoom (and on top of that the client is non-free)
<infinisil> I have a mumble server running on infinisil.com you could try out
<andi-> I never got why zoom is now a thing. What are they doing differently?
<gchristensen> adisbladis:yaaay
<gchristensen> I dunno, but it works pretty well even for huge calls
<gchristensen> though the best experience I've had huge calls waswith Lync
<adisbladis> andi-: Well, they don't work properly with tiling wms for one ;)
<andi-> adisbladis: uargh
<andi-> Is there an open client yet?
<infinisil> Btw, if anybody wants to try out mumble, use mumble_git (with config.pulseaudio = true). mumble hasn't seen a stable release in a while, the git version looks so much better
<adisbladis> andi-: I dont think so.
<infinisil> Ohhh, there's a release candidate https://github.com/mumble-voip/mumble/releases
<infinisil> Very nice
<andi-> will they release this century? ;-)
<infinisil> Hehe that might get close
<andi-> looking through their issues a majority seems to be cross platform support which is probably super tough for a project with little contributions
<samueldr> at least the century is only about a fifth through, so it's likelier to be this century
<eyJhb> Does anybody have some good examples, of well implemented Client API Libraries?
<eyJhb> (in python)
<sphalerite> there's a mumble server on sphalerite.org too :p
<samueldr> I had one for a while on one of my domain :)
<samueldr> might even still be running
<colemickens> MichaelRaskin: might I be nosy and ask how/why your Google accounts get banned?
<Ralith> infinisil: better why, out of curiosity?
<infinisil> Ralith:The git version?
<Ralith> yeah
<infinisil> The non-git version is like 3/4 years old, it has this klunky Windows XP like UI
<infinisil> The git version is a modern flat theme with dark mode too
<Ralith> ah, literally looks nicer
<infinisil> Yeah
<Ralith> I never paid much attention to mumble's looks
<sphalerite> infinisil: the difference is the qt version
<Ralith> is just a nice simple reliable VoIP tool, which for some reason is incredibly difficult to come by
<sphalerite> infinisil: if you configure your qt4 right, the stable mumble should look fine too :p
<infinisil> Oh rly?
<infinisil> Didn't know that
<infinisil> Ralith: Yeah..
<infinisil> teamspeak is horrible
<ar> picture unrelated: https://i.imgur.com/C47pSnL.jpg
<gchristensen> erm
<gchristensen> is that designed intentionally
<buckley310> i remember that, no that button placement was real and a total accident :)
<buckley310> cisco sent out a bulletin about it at some point because people kept accidentally hard-booting their switches
<gchristensen> incredible
<cransom> that was a bug, indeed. they also have a technical bulletin about solar flares.
hedning_ has joined #nixos-chat
<MichaelRaskin> colemickens: typically, Google decides that I am a bot, I guess. While people joke about being banned in Google search, I _have_ received the page «we won't let you search»
<MichaelRaskin> Just in case: a typical banned account would have sent zero emails ever, so this is not just about famously corrupt spam filter
Myhlamaeus has joined #nixos-chat
<samueldr> most likely you don't have a big fat trace they can track, and it is suspicious not to send e-mail OR to send e-mail, and please now fill in this form with SMS number and genetic markers thanks
jasongrossman has quit [Ping timeout: 250 seconds]
<MichaelRaskin> Well, my guess is obviously pretty close to that theory
jtojnar_ has joined #nixos-chat
jtojnar has quit [Ping timeout: 245 seconds]
Guanin has joined #nixos-chat
n_db has quit [Remote host closed the connection]
jtojnar_ is now known as jtojnar
n_db has joined #nixos-chat
kisik21 has quit [Read error: Connection reset by peer]
kisik21 has joined #nixos-chat
kisik21 has quit [Ping timeout: 246 seconds]
travelion has quit [Quit: bye]
<andi-> a map of NixOS users would be neat.. Would be nice to know if it is worth having a local/regional Nix(OS) meetup in my area.
<pie_> you just made me realize the caches probably have a pretty good idea
* colemickens wades into the new Riot interface to see if its any less confusing this time around
<ar> i wonder if there's a NixOS community on Naxos island ;)
<Ralith> I dunno about less confusing, but it's significantly prettier at least
<Ralith> they finally got a UI designer with some sense
<colemickens> well, I tried to join #nixos-chat, it didn't work and I feel stumped already
<andi-> I tried to find a channel and gave up...
<colemickens> though I appear to be in #nixos and getting realtime status updates from other matrix users, which is kind of neat?
<andi-> At least I finally rotated my password there now... Not that I itend to use it
colemickens[m] has joined #nixos-chat
<colemickens[m]> oh hey, maybe this wasn't so bad
colemickens[m] is now known as colemickens[m]1
colemickens[m]1 is now known as colemickens[m]2
colemickens is now known as colemickens[m]1
colemickens[m]1 is now known as colemickens[m]3
colemickens[m]2 is now known as colemickens[m]
colemickens[m]3 is now known as colemickens[m]2
colemickens[m]2 is now known as colemickens
jtojnar_ has joined #nixos-chat
<infinisil> Mozilla is shutting down their IRC network :(
jtojnar has quit [Ping timeout: 246 seconds]
jtojnar_ is now known as jtojnar
<cransom> huh. that was also their internal company chat. wonder what they have moved to
<Ralith> they're evaluating options
<cransom> it was also basically how the ndtwork people knew when anything exploded
colemickens[m] is now known as colemicken4
colemickens has quit []
colemicken4 is now known as colemickens
<infinisil> I'll laugh if they switch to Slack, only to have to switch away from it again in 3 years when it dies
<colemickens> Discord seems more likely given the large Rust presence
<joepie91> the post explicitly mentions Discord
<infinisil> Ah yeah, then s/Slack/Discord
jasongrossman has joined #nixos-chat
<Ralith> seems like it would be embarassing for such a big open-web proponent to standardize on a propreitary platform by any brand
<pie_> i wish theyd just use irc :p
<pie_> the redox irc channel had like 70 people idling in it and not a soul talked :/
drakonis has joined #nixos-chat
__monty__ has quit [Quit: leaving]