<< 29-05-2021 >>

00:11:49FromDiscord<Varriount> Anyone know if the Nim compiler is supposed to print record separator characters at the end of each line? I recall reading something in the issue or PR list that mentioned it, but I thought it might have only been for the CI/CD runners.
00:14:50*rockcavera quit (Remote host closed the connection)
00:14:56FromDiscord<ElegantBeef> Wasnt that just for nimsuggest
00:24:13*rockcavera joined #nim
00:36:11*Guest40726 quit (Quit: Guest40726)
00:36:27*Guest40726 joined #nim
00:41:42fowlchoosenim was quite easy to use, cheers
00:56:18*nphg1 joined #nim
00:58:46*nphg quit (Ping timeout: 240 seconds)
01:07:54*rockcavera quit (Remote host closed the connection)
01:10:52FromGitter<gogolxdong> .fatal.nim(53) sysFatal ⏎ Error: unhandled exception: over- or underflow [OverflowDefect]
01:11:03FromGitter<gogolxdong> how to check this
01:13:09FromDiscord<ElegantBeef> Is that a compiler error or in your program?
01:13:45*rockcavera joined #nim
01:15:58*rockcavera quit (Remote host closed the connection)
01:24:29*rockcavera joined #nim
01:28:56*aenesidemus quit (Ping timeout: 272 seconds)
01:36:15*Guest40726 quit (Quit: Guest40726)
01:36:33*Guest40726 joined #nim
01:40:03*aenesidemus joined #nim
01:52:33*rockcavera quit (Remote host closed the connection)
02:04:10*arkurious quit (Quit: Leaving)
02:10:43*astronavt quit (Quit: ...)
02:31:28FromGitter<gogolxdong> It used to compile two month ago
02:32:27FromGitter<gogolxdong> there is no stack trace
02:35:37FromDiscord<ElegantBeef> So then best thing to do is to use a nim compiler built with a stack trace and compile it
02:36:24*Guest40726 quit (Quit: Guest40726)
02:36:37FromDiscord<ElegantBeef> But a minimal reproduction would be pretty good 😄
02:36:41*Guest40726 joined #nim
03:25:27*spiderstew joined #nim
03:27:26*spiderstew_ quit (Ping timeout: 240 seconds)
03:36:53*Guest40726 quit (Quit: Guest40726)
03:37:11*Guest40726 joined #nim
04:06:56FromDiscord<Varriount> I keep saying that the compiler should be built with stack traces by default. \grumble\
04:31:33FromGitter<bung87> does mac has concurrent thread limit ? I can only run successfully with 100 concurrent http request to my local server
04:35:31jfondren[m]take a look at ulimit -a. every TCP connection requires at least an open file descriptor for the socket
04:36:57*Guest40726 quit (Quit: Guest40726)
04:37:14*Guest40726 joined #nim
04:39:42FromGitter<bung87> launchctl limit maxfiles 10240; sudo sysctl -w kern.maxfiles=20480 seems doesn't affect `ulimit -a ` `file descriptors`
04:44:27*arecaceae quit (Remote host closed the connection)
04:44:47*arecaceae joined #nim
04:54:43*letto quit (Quit: Konversation terminated!)
04:56:45*letto joined #nim
05:03:46*aeverr quit (Ping timeout: 240 seconds)
05:31:50FromGitter<bung87> oh there's `open_files_limit` options in mysql
05:37:38*narimiran joined #nim
05:37:46*Guest40726 quit (Quit: Guest40726)
05:37:56*Guest40726 joined #nim
05:43:17*Guest40726 quit (Quit: Guest40726)
05:45:58*narimiran quit (Quit: leaving)
06:12:54*motersen_ quit (Remote host closed the connection)
06:13:11*motersen joined #nim
06:26:04*NimBot joined #nim
06:26:32*rockcavera joined #nim
06:58:32*Vladar joined #nim
07:23:24*SebastianM joined #nim
07:51:37*SebastianM quit (Quit: -a- Bye Bye)
08:02:40*willyboar joined #nim
08:45:30*xet7 quit (Remote host closed the connection)
08:59:34FromDiscord<juan_carlos> Been trying the Tasks thing, works great, but the isolation is strict, it wont let me use string, seq[string], array[N, string], UncheckedArray[string], I wonder if theres a way to use string with it (examples use all int).
09:07:58FromDiscord<ElegantBeef> What tasks?
09:09:39FromDiscord<juan_carlos> https://nim-lang.github.io/Nim/tasks.html
09:13:33FromDiscord<ElegantBeef> A string param worked for me 😄
09:14:18FromDiscord<juan_carlos> Ye, I mean to return stuff.
09:17:20FromDiscord<juan_carlos> toTask function cannot have a 'var' parameter.
09:27:05*aeverr joined #nim
09:29:05*xet7 joined #nim
09:35:29*lritter joined #nim
10:17:49FromDiscord<Rika> strings arent "permissible" because they are stored in heap
10:17:51FromDiscord<Rika> i assume
10:19:17FromDiscord<juan_carlos> It does not like closures, nor array[char]
10:23:30FromDiscord<juan_carlos> You can echo or writeFile :P
10:26:12FromDiscord<Rika> strange
11:13:52FromDiscord<clyybber> In reply to @Varriount "Anyone know if the": yeah, it's for making it easy for tooling to seperate error messages
11:14:19FromDiscord<clyybber> sadly there seem to be some fonts where it's not invisible
11:18:16FromDiscord<juan_carlos> Do not use invisible unicode IMHO.
11:18:33FromDiscord<juan_carlos> If you want machine parseable log, then a JSON log formatter is needed.
11:35:08FromDiscord<clyybber> it's not unicode
11:35:19FromDiscord<clyybber> it's ASCII
11:37:01FromDiscord<juan_carlos> Do not use invisible ASCII IMHO.
11:37:13FromDiscord<juan_carlos> Do not use invisible anything :P
11:39:23FromDiscord<haxscramper> In reply to @juan_carlos "If you want machine": tooling can read packed AST with `nkError` nodes
11:40:28FromDiscord<juan_carlos> And how is that as a formatted log?.
11:40:45FromDiscord<juan_carlos> I was talking about text logs.
11:41:28FromDiscord<haxscramper> Can write packed AST reader that dumps output in any required format (json, xml, pretty-printing etc).
11:41:52FromDiscord<haxscramper> That's what https://github.com/nim-lang/RFCs/issues/324 and subsequent discussion ended on
11:42:13FromDiscord<juan_carlos> Ye, we thinkin' kinda the same.
11:42:29FromDiscord<haxscramper> Add unit separator for regular compiler output to make it easier to get simple separation and everything more complex can read packed ast
11:42:48FromDiscord<juan_carlos> A JSON log formatter is hella useful whatsoever.
11:43:06FromDiscord<haxscramper> I personally agree
11:43:54FromDiscord<haxscramper> But it means this whole error message generation must be reworked, while packed AST with `nkError` would naturally support this kind of use case
11:47:19FromDiscord<juan_carlos> I agree.
11:58:39*SebastianM joined #nim
12:11:47*SebastianM quit (Remote host closed the connection)
12:24:26*arkurious joined #nim
12:25:04*willyboar quit (Quit: Konversation terminated!)
12:33:30*theelous3 joined #nim
13:00:07FromGitter<kaushalmodi> > <juan_carlos> Do not use invisible anything
13:00:11FromGitter<kaushalmodi> +1
13:00:27FromGitter<kaushalmodi> Ref:https://github.com/nim-lang/Nim/issues/18058
13:02:44FromDiscord<mlokis> sent a code paste, see https://play.nim-lang.org/#ix=3oeh
13:02:55FromDiscord<mlokis> (edit) "https://play.nim-lang.org/#ix=3oeh" => "https://play.nim-lang.org/#ix=3oei"
13:12:59FromDiscord<hamidb80> what are these? https://media.discordapp.net/attachments/371759389889003532/848187163019575336/unknown.png
13:14:32FromDiscord<hamidb80> `typed={}` in argument list
13:15:55FromDiscord<juan_carlos> https://nim-lang.github.io/Nim/manual.html#templates-typed-vs-untyped-parameters
13:23:58FromDiscord<hamidb80> In reply to @juan_carlos "https://nim-lang.github.io/Nim/manual.html#template": what is that `{}` ?
13:24:19FromDiscord<hamidb80> (edit) "is" => "does" | "?" => " do as default value??"
13:24:50FromDiscord<juan_carlos> set
13:40:24*Gustavo6046 quit (Ping timeout: 245 seconds)
13:58:14*willyboar joined #nim
14:08:13*Gustavo6046 joined #nim
14:23:54FromGitter<gogolxdong> Anyone used nim-web3?
14:31:10*aenesidemus quit (Quit: Leaving)
14:46:57*stackofcats_ joined #nim
14:47:00*willyboar quit ()
14:47:00stackofcats_/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
14:47:04stackofcats_/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
14:47:07stackofcats_/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
14:47:10stackofcats_THIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
14:47:25*stackofcats_ quit (Remote host closed the connection)
14:57:23*AndrewPH joined #nim
14:57:26AndrewPH/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
14:57:29AndrewPH/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
14:57:33AndrewPH/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
14:57:36AndrewPHTHIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
14:57:40*AndrewPH quit (Remote host closed the connection)
15:14:21*Gustavo6046 quit (Quit: ZNC 1.8.2 - https://znc.in)
15:14:39*Gustavo6046 joined #nim
15:37:36*revcane joined #nim
15:37:39revcane/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
15:37:41*revcane quit (Remote host closed the connection)
15:46:12*CeBe20 joined #nim
15:46:15CeBe20/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
15:46:18CeBe20/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
15:46:21CeBe20/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
15:46:24CeBe20THIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
15:46:41*CeBe20 quit (Remote host closed the connection)
15:55:58*Bogen85 joined #nim
15:56:08*Bogen85 left #nim ("Leaving")
15:57:06*CrystalMath joined #nim
15:57:07*Yamakaja[m|gr] joined #nim
15:57:07Yamakaja[m|gr]/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
15:57:08Yamakaja[m|gr]/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
15:57:09Yamakaja[m|gr]/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
15:57:10Yamakaja[m|gr]THIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
15:57:43*Yamakaja[m|gr] quit (Remote host closed the connection)
15:57:56*CrystalMath left #nim ("Always read both sides of the story - http://techrights.org/wp-content/uploads/2021/05/lee-side.pdf")
16:00:12*BitPuffin quit (Quit: Idle for 30+ days)
16:01:13*jol_ joined #nim
16:01:16jol_/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
16:01:19jol_/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
16:01:22jol_/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
16:01:25jol_THIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
16:01:42*jol_ quit (Remote host closed the connection)
16:06:02FromDiscord<konsumlamm> same
16:24:08*gemath[m] quit (*.net *.split)
16:24:08*Edoardo[m] quit (*.net *.split)
16:24:08*MTRNord quit (*.net *.split)
16:24:08*Benjamin[m]2 quit (*.net *.split)
16:24:09*leorize[m] quit (*.net *.split)
16:24:09*Northstrider[m] quit (*.net *.split)
16:25:34*Northstrider[m] joined #nim
16:28:25*drmpeg[m|gr] joined #nim
16:28:28drmpeg[m|gr]/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
16:28:31drmpeg[m|gr]/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
16:28:34drmpeg[m|gr]/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
16:28:37drmpeg[m|gr]THIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
16:28:45*drmpeg[m|gr] quit (Remote host closed the connection)
16:30:00*MTRNord joined #nim
16:30:46FromDiscord<willyboar> I suggest we all go to hamradio and spam until ban
16:31:00*Edoardo[m] joined #nim
16:31:16*gemath[m] joined #nim
16:32:18FromDiscord<whisperdev> Is there a torrent client in Nim?
16:32:38*lemald0 joined #nim
16:32:41lemald0/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
16:32:44lemald0/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
16:32:48lemald0/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
16:32:49*lemald0 quit (Remote host closed the connection)
16:35:46*leorize[m] joined #nim
16:37:05FromDiscord<willyboar> In reply to @whisperdev "Is there a torrent": https://github.com/aeaea-project/rentor
16:37:19*Benjamin[m]2 joined #nim
16:40:30*willyboar joined #nim
16:42:34*Gustavo6046 quit (Ping timeout: 246 seconds)
17:07:37*Gustavo6046 joined #nim
17:13:30*nerthus joined #nim
17:27:35*KramerC joined #nim
17:27:38KramerC/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
17:27:41KramerC/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
17:27:44KramerC/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
17:27:47KramerCTHIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
17:27:48*KramerC quit (Remote host closed the connection)
17:41:49FromDiscord<exelotl> :T
17:42:35FromDiscord<exelotl> since when was the crown prince of korea jewish?
17:43:46*NoiseEee0 joined #nim
17:43:49NoiseEee0/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
17:43:50*sparsify20 joined #nim
17:43:52NoiseEee0/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
17:43:53sparsify20/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
17:43:55NoiseEee0/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
17:43:56sparsify20/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
17:43:58NoiseEee0THIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
17:43:59sparsify20/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
17:44:02*NoiseEee0 quit (Remote host closed the connection)
17:44:02sparsify20THIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
17:44:03*sparsify20 quit (Remote host closed the connection)
17:44:38Oddmongerhow to hog log :(
17:44:59FromDiscord<haxscramper> Can something be done about this?
17:45:24*d3x joined #nim
17:45:27d3x/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
17:45:30d3x/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
17:45:33d3x/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
17:45:36d3xTHIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
17:45:51*d3x quit (Remote host closed the connection)
17:46:18FromDiscord<willyboar> Blow the bridge
17:47:01FromDiscord<willyboar> or turn it to libera
17:47:29*willyboar quit ()
17:47:40Oddmonger+R on this chan, anyone ?
17:48:01Oddmonger(only registered ppl can talk)
17:48:38FromDiscord<willyboar> this might work too 😛
17:52:19*thelounge87 joined #nim
17:52:19thelounge87/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
17:52:20thelounge87/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
17:52:21thelounge87/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
17:52:22thelounge87THIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
17:53:03*thelounge87 quit (Remote host closed the connection)
17:56:25*Cathy13 joined #nim
17:56:25Cathy13/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
17:56:26Cathy13/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
17:56:27Cathy13/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
17:56:28Cathy13THIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
17:57:02*Cathy13 quit (Remote host closed the connection)
18:04:27*jmercouris joined #nim
18:04:27jmercouris/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
18:04:28jmercouris/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
18:04:29jmercouris/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
18:04:30jmercourisTHIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
18:05:04*jmercouris quit (Remote host closed the connection)
18:05:15*tane joined #nim
18:06:08*test_usr quit (Read error: Connection reset by peer)
18:07:02*theelous3 quit (Quit: is outty)
18:12:16*Gustavo6046 quit (Ping timeout: 252 seconds)
18:21:39*MylesBorins20 joined #nim
18:21:41MylesBorins20/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
18:21:44MylesBorins20/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
18:21:47MylesBorins20/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
18:21:50MylesBorins20THIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
18:22:04*MylesBorins20 quit (Remote host closed the connection)
18:28:47*SpamapS joined #nim
18:28:49SpamapS/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
18:28:52SpamapS/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
18:28:55SpamapS/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
18:28:58*SpamapS quit (Remote host closed the connection)
18:33:27*xet7 quit (Remote host closed the connection)
18:34:38*xet7 joined #nim
18:35:33*Katya3-t3 joined #nim
18:35:36Katya3-t3/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
18:35:39Katya3-t3/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
18:35:42Katya3-t3/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
18:35:45Katya3-t3THIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
18:35:55FromDiscord<IDF(ardek66)> amazing
18:35:59*Katya3-t3 quit (Remote host closed the connection)
18:36:50FromDiscord<kalekale> based freedom fighters freeing us from ((them))
18:37:34FromDiscord<IDF(ardek66)> why are you using lisp inside your messages my dearest friend
18:38:35*TheBrayn joined #nim
18:38:38TheBrayn/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
18:38:41TheBrayn/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
18:38:44TheBrayn/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
18:38:46TheBraynTHIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
18:38:51*xet7 quit (Remote host closed the connection)
18:38:54*TheBrayn quit (Killed (Sigyn (Spam is off topic on freenode.)))
18:39:42FromDiscord<quarternion> What is the reason for writing this, https://github.com/nim-lang/Nim/blob/devel/lib/system.nim#L266-L268
18:40:07FromDiscord<quarternion> sent a code paste, see https://play.nim-lang.org/#ix=3og8
18:40:13FromDiscord<quarternion> why `when true:` is used here.
18:40:29FromDiscord<IDF(ardek66)> to make sure its never false
18:40:37*Sembei joined #nim
18:41:26FromDiscord<quarternion> Sorry I don't understand. Which part of it may be false?
18:41:51*aus2 joined #nim
18:41:54FromDiscord<haxscramper> https://github.com/nim-lang/Nim/pull/13098/files#diff-c7ae564e61082887ea50f0d58a637cb12fa78261f51aa4eface24ababfeee299R252
18:41:54aus2/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
18:41:57aus2/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
18:41:59*aus2 quit (Remote host closed the connection)
18:42:08FromDiscord<IDF(ardek66)> I was just joking. It might be a left-over, or it might be some check at compiletime to make sure of something
18:42:11FromDiscord<haxscramper> it was only due to `when defined` -> `when true` change
18:43:19*xet7 joined #nim
18:47:27*Gustavo6046 joined #nim
18:49:04FromDiscord<quarternion> Thanks for the direction. Yeah. I can see it from the git log. Some new features were implemented, so `not defined` becomes `true`.
18:51:01*Bonstra11 joined #nim
18:51:04Bonstra11/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
18:51:07Bonstra11/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
18:51:08*Bonstra11 quit (Remote host closed the connection)
19:01:28*Sembei quit (Quit: WeeChat 3.0)
19:14:49*southerntofu12 joined #nim
19:14:51southerntofu12/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
19:14:55southerntofu12/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
19:14:58southerntofu12/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
19:15:01southerntofu12THIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
19:15:01*southerntofu12 quit (Remote host closed the connection)
19:16:56*technonerd15 joined #nim
19:16:59technonerd15/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
19:17:00*technonerd15 quit (Remote host closed the connection)
19:31:58*rossome3 joined #nim
19:32:01rossome3/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
19:32:04rossome3/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
19:32:07rossome3/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
19:32:08*rossome3 quit (Remote host closed the connection)
19:32:39FromDiscord<ElegantBeef> Sooo uhh any irc mods still alive? 😄
19:35:37*Kristina-t joined #nim
19:35:40Kristina-t/!\ THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
19:35:43Kristina-t/!\ THE JEWS HAVE TAKEN OVER FREENODE, CHATS HAVE MOVED TO IRC.LIBERA.CHAT /!\
19:35:46Kristina-t/!\ JOIN #HAMRADIO TODAY. THIS CHANNEL HAS MOVED TO IRC.LIBERA.CHAT #HAMRADIO /!\
19:35:49Kristina-tTHIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF
19:36:07*Kristina-t quit (Remote host closed the connection)
19:38:08FromDiscord<exelotl> @Yardanico can you do something about this? :S
19:38:24FromDiscord<Yardanico> No
19:38:36FromDiscord<Yardanico> well, I can disable the bridge
19:39:01FromDiscord<kunitoki> Ban everyone that starts a post with a /!\
19:39:14FromDiscord<Yardanico> cool solution, but useless
19:39:15FromDiscord<kunitoki> That's not nim syntax anyway
19:39:16*lritter quit (Ping timeout: 265 seconds)
19:39:22FromDiscord<kunitoki> 😋
19:39:22FromDiscord<Yardanico> By the time I implement this they'll stop
19:39:48FromDiscord<Yardanico> I wonder if there are any freenode staffers available to deal with the spam
19:39:54FromDiscord<Yardanico> After the recent events
19:40:25FromDiscord<Anuke> ~~I hear they might be busy taking over other channels~~
19:41:28FromDiscord<Anuke> In reply to @Yardanico "well, I can disable": If it's for IRC only, that's probably better than doing nothing
19:43:39FromDiscord<Yardanico> Also seems like this spam has been going on for like 7 days, yet no one from freenode took action
19:43:44FromDiscord<Yardanico> in different channels
19:44:52FromDiscord<Yardanico> This spam seems to actually be targeted against libera chat
19:44:58FromDiscord<Yardanico> "THIS OFFICIALLY ENDORSED MESSAGE WAS BROUGHT TO YOU BY LIBERA.CHAT STAFF" makes it obvious
19:45:44FromDiscord<dom96> Guess it's time to ban non-registered users from speaking
19:48:38dom96https://github.com/nim-lang/Nim/wiki/IRC-guidelines#quiet-every-unregistered-user
19:48:43dom96best docs or what?
19:48:47dom96Thanks past me :)
19:49:58*reyawn-M3 joined #nim
19:50:07*reyawn-M3 quit (Remote host closed the connection)
20:02:36FromDiscord<IDF(ardek66)> Thank you past dom96 for your generous service!
20:04:23FromDiscord<ajusa> I too prefer the past dom96 for documentation
20:04:47*never_released joined #nim
20:04:55dom96understandable, present dom96 is too lazy to write docs
20:05:01*never_released quit (Remote host closed the connection)
20:12:08*samcv28 joined #nim
20:12:18*samcv28 quit (Remote host closed the connection)
20:23:33*FromGitter quit (Remote host closed the connection)
20:23:51*FromGitter joined #nim
20:24:43*Nightah25 joined #nim
20:25:20*Nightah25 quit (Remote host closed the connection)
20:25:21*FromGitter quit (Remote host closed the connection)
20:25:40*FromGitter joined #nim
20:49:07*hwentlan joined #nim
20:49:21*hwentlan quit (Remote host closed the connection)
20:57:48FromDiscord<exelotl> In reply to @Yardanico "This spam seems to": maybe it's an inside job :P
21:21:00*adapter joined #nim
21:21:24*adapter quit (Remote host closed the connection)
21:22:49*burrows4 joined #nim
21:23:33*burrows4 quit (Remote host closed the connection)
21:26:10*ClmentOUDOT[m]24 joined #nim
21:26:21*ClmentOUDOT[m]24 quit (Remote host closed the connection)
21:30:21*nrr20 joined #nim
21:30:33*nrr20 quit (Remote host closed the connection)
21:33:23FromDiscord<kalekale> In reply to @ClassyIDF "why are you using": idk, why is cirno stuck in a bottle jn your avatar?
21:39:39FromDiscord<ElegantBeef> Triple parenthesis like that is considered anti-semitic by some groups, which is why it they did it
21:40:09*Vladar quit (Read error: Connection reset by peer)
21:47:53FromDiscord<neow> LMAO the libera chat spam
21:48:03FromDiscord<neow> poor bridge
21:49:36*tane quit (Quit: Leaving)
22:08:54*LobsterMan joined #nim
22:09:01*LobsterMan is now known as Guest3778
22:09:31*Guest3778 quit (Remote host closed the connection)
22:39:27FromDiscord<Rika> In reply to @kalekale "idk, why is cirno": because she was bad at math
22:40:11FromDiscord<dan> In reply to @ElegantBeef "Triple parenthesis like that": wait ... how does that relate? xD
22:40:30FromDiscord<ElegantBeef> Cause kale did `((them))` after a message talking about jews
22:40:47FromDiscord<dan> are you messing with me? 😄
22:40:56FromDiscord<ElegantBeef> In what regard?
22:41:19FromDiscord<dan> i am awed by the ability of people to make stuff offensive
22:41:20FromDiscord<Rika> no, its an actual thing
22:41:43FromDiscord<ElegantBeef> It's a way that people say "they're jewish" or "jews" without outright saying it
22:41:56FromDiscord<ElegantBeef> https://en.wikipedia.org/wiki/Triple_parentheses
22:42:31FromDiscord<dan> i definitely thought that was either a joke or a hoax that 4chan cooked up
22:42:40FromDiscord<dan> oh wait ... it was 4chan after all
22:42:44FromDiscord<dan> just read it
22:43:06FromDiscord<ElegantBeef> As usual it's been mentioned by media and copted by them at the very least
22:52:22*xet7 quit (Remote host closed the connection)
22:53:25*xet7 joined #nim
22:59:57*cybo_16 joined #nim
23:00:26*cybo_16 quit (Remote host closed the connection)
23:48:03*chiddekel[m]1 joined #nim
23:48:32*chiddekel[m]1 quit (Remote host closed the connection)
23:49:24*xet7 quit (Remote host closed the connection)