<< 20-03-2025 >>

00:08:58*tiorock joined #nim
00:08:58*tiorock quit (Changing host)
00:08:58*tiorock joined #nim
00:08:58*rockcavera is now known as Guest3924
00:08:58*Guest3924 quit (Killed (iridium.libera.chat (Nickname regained by services)))
00:08:58*tiorock is now known as rockcavera
00:11:02*tiorock joined #nim
00:11:02*tiorock quit (Changing host)
00:11:02*tiorock joined #nim
00:11:02*rockcavera quit (Killed (erbium.libera.chat (Nickname regained by services)))
00:11:02*tiorock is now known as rockcavera
01:03:05FromDiscord<bung8954> sent a code paste, see https://play.nim-lang.org/#pasty=xeldImay
02:44:34FromDiscord<leorize> did you use locking properly?
03:00:38FromDiscord<bung8954> I think so , `initLock` first , then `withLock `when use the `status`
03:20:44FromDiscord<bung8954> another thing I notice, while loop inside serverMain only runs one time
04:22:41*rockcavera quit (Remote host closed the connection)
05:52:16*ntat joined #nim
06:00:09*derpydoo joined #nim
06:12:44*derpydoo quit (Ping timeout: 260 seconds)
06:49:14*derpydoo joined #nim
08:04:40*derpydoo quit (Quit: derpydoo)
10:13:34*ntat quit (Quit: leaving)
10:20:29*coldfeet joined #nim
11:01:01*ntat joined #nim
11:02:11FromDiscord<Zoom> In standard library, what's the difference between `system/memory.nimCopyMem` and `system.copyMem`? When should I use the former? There's such a mess with detecting when the latter is available, almost every module does it in slightly different ways.
11:14:11*ntat quit (Read error: Connection reset by peer)
11:28:50FromDiscord<Zoom> Elegantbeef\: `proc substr(s: string, first, last: int): string = # A bug with `magic\: Slice` requires this to exist this way` which bug did you mean?
11:28:59FromDiscord<Zoom> Elegantbeef\: `proc substr(s: string, first, last: int): string = # A bug with `magic: Slice` requires this to exist this way` which bug did you mean?
11:38:05*ntat joined #nim
11:38:22*coldfeet quit (Quit: Lost terminal)
12:07:37*ntat quit (Read error: Connection reset by peer)
12:39:50*ntat joined #nim
13:03:21*ntat quit (Quit: leaving)
13:05:04*ntat joined #nim
13:23:32FromDiscord<aintea> sent a code paste, see https://play.nim-lang.org/#pasty=iltaMIhK
13:23:39FromDiscord<aintea> (edit) "https://play.nim-lang.org/#pasty=eIGLogha" => "https://play.nim-lang.org/#pasty=sIxBuNEA"
13:25:08FromDiscord<demotomohiro> In reply to @aintea "Is there a way": https://internet-of-tomohiro.pages.dev/nim/faq.en#macro-how-to-pass-multiple-code-blocks-to-a-macroqmark
13:37:34*ntat quit (Quit: leaving)
14:12:17FromDiscord<tauruuuuuus> say I want to mess around a bit with a gui in nim, for like small simple games (e.g. snake clone, minesweeper)
14:12:40FromDiscord<tauruuuuuus> what would you all use for this? I am a bit lost in the nim ui libs space
14:16:45Amun-Rafor simple stuff - SDL
14:20:20strogon14or https://github.com/planetis-m/naylib
14:28:25*ntat joined #nim
15:03:59*coldfeet joined #nim
15:20:02FromDiscord<griffith1deadly> In reply to @aintea "Is there a way": but why do you need a macro for that
15:20:44FromDiscord<griffith1deadly> let a = try: raise ...↵except Exception: 3
15:31:53FromDiscord<tauruuuuuus> Thanks for the tips/repos guys!
15:59:09*drewrr joined #nim
16:00:47*drewrr quit (Changing host)
16:00:47*drewrr joined #nim
16:00:47*drewrr is now known as drewr
16:00:59*drewr quit (Client Quit)
16:01:53*drewr joined #nim
16:48:26*drewr quit (Quit: ERC 5.5.0.29.1 (IRC client for GNU Emacs 29.4))
17:01:54*drewr joined #nim
17:43:43*eagledot joined #nim
17:46:00eagledotIs it possible to create a temporary view over string aka a slice without copying ?
17:51:25FromDiscord<solitudesf> https://nim-lang.org/docs/system.html#toOpenArray%2Cstring%2Cint%2Cint↵but without using experimental features you can use openArrays as arguments, not variables.
17:57:18eagledotthanks for the info, i was hoping to use it as variable, slice notation is generating a copy, most of time i can get by using `cursor` for such situations!
18:00:12FromDiscord<solitudesf> https://nim-lang.org/docs/manual_experimental.html#view-types you can enable this and see when it breaks
18:02:49FromDiscord<aintea> In reply to @griffith1deadly "but why do you": I'm trying to learn macros
18:02:54FromDiscord<aintea> And for fun
18:03:18FromDiscord<aintea> Wait I'm stupid I can do that one with a template
18:04:51eagledotThanks, it seems to allow `openarray` as types, but isn't `lent` is allowed from `procedures` in the main language now ?
18:05:23*fallback quit (Ping timeout: 268 seconds)
18:11:39FromDiscord<Elegantbeef> I believe if you remove those substrs and only have the openArray[char] there was a compiler error
18:13:41*eagledot quit (Ping timeout: 248 seconds)
18:16:18*ntat quit (Quit: leaving)
18:18:06FromDiscord<griffith1deadly> In reply to @aintea "Wait I'm stupid I": macros are trees and genasts
18:18:57*ntat joined #nim
18:19:39*fallback joined #nim
19:04:58*coldfeet quit (Quit: Lost terminal)
20:24:32*ntat quit (Quit: leaving)
20:26:51*ntat joined #nim
21:14:28*ntat quit (Quit: leaving)
21:54:37*rockcavera joined #nim
22:15:56FromDiscord<threefour> Is compile-time switching over the possible types of a generic parameter a thing?
22:16:15FromDiscord<threefour> Without using `when`
22:16:31FromDiscord<Elegantbeef> `when` is it, use a macro if you want to make it cleaner
22:16:37FromDiscord<leorize> why would you not use when
22:16:49FromDiscord<Elegantbeef> You could use procedure dispatch aswell if you so wished
22:16:57FromDiscord<leorize> but you can specialize the type parameter I suppose
22:17:00FromDiscord<threefour> Because it's an if statement and a case feels more appropriate
22:17:07FromDiscord<Elegantbeef> https://github.com/beef331/nimtrest/blob/master/staticcases.nim#L59-L63
22:18:04FromDiscord<threefour> Whoa
22:18:09FromDiscord<threefour> `when` it is then...