gchristensen changed the topic of #nixos-borg to: https://www.patreon.com/ofborg https://monitoring.nix.ci/dashboard/db/ofborg?refresh=10s&orgId=1&from=now-1h&to=now "I get to skip reviewing the PHP code and just wait until it is rewritten in something sane, like POSIX shell. || https://logs.nix.samueldr.com/nixos-borg
<gchristensen> I wonder if anyone has figured out they can get the firehose of events themselves
the has joined #nixos-borg
the has joined #nixos-borg
the has quit [Changing host]
<samueldr> ?
<samueldr> wonder since you see weird things or just that you figured out something was misconfigured?
<gchristensen> neither, just that it is possible and nothing is stopping anyone
<samueldr> yeah, I think I know how (without going with rabbitmq directly) :)
<gchristensen> well for exmple https://codepen.io/gchristensen/pen/KZBXOK :P
<samueldr> yes, pretty much what I had in mind, but didn't want to spoil the beans just in case :)
<gchristensen> :D
<gchristensen> https://ellie-app.com/W2r5MMmXqda1 I'm playing again
<samueldr> (other than obfuscating, don't think there's really anything against, unless the STOMP thing for rabbitmq can be configured to somehow not allow listening at large)
<samueldr> (not against you) wow, what a bad UX
<gchristensen> yeah thats weird
<samueldr> I don't even know yet what this is
<gchristensen> its an Elm app
<gchristensen> with stompjs very poorly hooked up hah
<gchristensen> like, not at all hooked up
<samueldr> (I meant Ellie in general)
<gchristensen> ah
<samueldr> eventually clicked through and understood
<gchristensen> cool
<samueldr> oh no
<samueldr> I found a bug in github
<samueldr> literally unusable
<samueldr> two tabs, load this https://github.com/ellie-app/ellie ; second tab, load this https://github.com/ellie-app/ellie/projects and click the project name...
<samueldr> ... switch tabs to observe: header not being the same size, footer logo being placed at a different location
<samueldr> (and without looking at the code, I blame a probable pjax issue with mismatched templates?)
<gchristensen> ...wat
<gchristensen> awesome
<samueldr> pjax (turbolinks under rails) is a technique to keep most of the DOM in-place, and load the contents via an ajax call
<gchristensen> ahh
<samueldr> IIRC, the original implementation uses the page you navigate to, and changes the DOM by using it
<samueldr> (not API endpoints)
the has quit [Excess Flood]
his has joined #nixos-borg
<his> With our IRC ad service you can reach a global audience of entrepreneurs and fentanyl addicts with extraordinary engagement rates! https://williampitcock.com/
<his> I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/
<his> Read what IRC investigative journalists have uncovered on the freenode pedophilia scandal https://encyclopediadramatica.rs/Freenodegate
<his> A fascinating blog by freenode staff member Matthew 'mst' Trout https://MattSTrout.com/
<gchristensen> :|
his has quit [Remote host closed the connection]
* samueldr wonders why the ofborg output isn't more obvious here
<{^_^}> #44270 (by ngortheone, merged): pythonPackages.fluent-logger: init at 0.9.3 (#44236)
* samueldr patiently waits for tomorrow
orivej has joined #nixos-borg
orivej has quit [Ping timeout: 240 seconds]
orivej has joined #nixos-borg
<ekleog> gchristensen: just putting this here because it's likely lost in the backlog of #nixos :)
<ekleog> gchristensen: suggestion: /invite Sigyn
<ekleog> That's a bot made by freenode that kills the spammers, for chans of 100+ users according to /topic #freenode-sigyn
<ekleog> it won't be caught by anti-flood processes :°
<ekleog> (would work for #nixos and #nixos-dev I guess)
<infinisil> ekleog: it's already in #nixos?
<ekleog> Uh? Sigyn?
* ekleog doesn't have this bot in the user list
<ekleog> (the point of it would be to allow removal of #nixos-unregistered, though that wouldn't be as perfect as there would still be a first spam message -- depends on the human cost incurred by having #nixos-unregistered, I guess)
<infinisil> ekleog: Yeah I see it kicking people, maybe it has some special thing to not show up in the names list
<ekleog> oh 'k weird, nevermind then :)
<infinisil> Or can you find it's name in any other channels?
<ekleog> on #freenode yes (where I heard of it first)
<ekleog> on #gentoo too
jtojnar has quit [Ping timeout: 265 seconds]
<LnL> gchristensen: ping
<gchristensen> LnL: pong
jtojnar has joined #nixos-borg
<LnL> what does this result in if you run it on your darwin builder?
<LnL> echo '"2015-03-05T23:51:47Z"' | jq -c 'strptime("%Y-%m-%dT%H:%M:%SZ")'
<gchristensen> haha, uh oh
<gchristensen> [nix-shell:~]$ echo '"2015-03-05T23:51:47Z"' | jq -c 'strptime("%Y-%m-%dT%H:%M:%SZ")'
<gchristensen> [2015,2,5,23,51,47,4,63]
<gchristensen> ekleog, infinisil we don't have sigyn
<gchristensen> you're seeing the killed messages from where sigyn is in other channels
<LnL> ok
<gchristensen> I have invited sigyn a few times
<LnL> so both on my builder and the hydra machines it's [2015,2,5,23,51,47,3,63]
<LnL> but it's also 4 on my laptop
<gchristensen> ...wat?
<ekleog> oh 'k, so it has been done… well, thanks!
<gchristensen> well
* LnL has no clue what the difference is
<gchristensen> it isn't done, but it has been attempted
<LnL> any ideas?
<gchristensen> hmmmmm
<gchristensen> why is 03 becoming 02?
<gchristensen> LnL: shoudln't it be 2015,3,5 not 2015,2,5?
<Dezgeg> I think it's the zero-numbered months thing hitting again
<Dezgeg> er, zero-indexed
<gchristensen> %m should start at 1 ...
<Dezgeg> maybe they reimplemented strptime?
<Dezgeg> err no, it's correct
<Dezgeg> struct tm { ... int tm_mon; /* Month (0-11) */ ... }
<LnL> well... it's go
<Dezgeg> well many languages have inherited the zero-indexed months gotcha
<Dezgeg> it's in java, javascript as well
<Dezgeg> (not that it's related to your other issue which seems timezone-related)
<Dezgeg> 4/3 is day of week and 63 the day of year?
<LnL> yeah I thought so too, but changing from utc to my other machine's timezone didn't seem to help
<Dezgeg> what determines whether first day of week is monday or sunday? the locale?
<LnL> oh! maybe one of the system locale settings are different
ryantm has quit [*.net *.split]
ryantm has joined #nixos-borg
orivej has quit [Ping timeout: 256 seconds]
jtojnar has quit [Quit: jtojnar]
jtojnar has joined #nixos-borg
makefu has quit [Quit: WeeChat 1.9.1]
makefu has joined #nixos-borg
orivej has joined #nixos-borg
orivej has quit [Ping timeout: 260 seconds]
orivej has joined #nixos-borg
orivej has quit [Ping timeout: 244 seconds]