00:15:53 | FromDiscord | <ghoom> how do you do get methods in nim? |
00:16:47 | FromDiscord | <ghoom> sometimes command syntax doesn't work |
00:16:56 | FromDiscord | <ghoom> and it requires `()` |
00:17:11 | FromDiscord | <ghoom> (edit) "get" => "getter" |
00:17:26 | FromDiscord | <huantian> methods won't solve that problem |
00:18:27 | FromDiscord | <ghoom> im not saying specifically methods |
00:18:32 | FromDiscord | <ghoom> just getters in general |
00:18:47 | FromDiscord | <Elegantbeef> `proc name(a: MyType): MyReturnType` |
00:19:02 | FromDiscord | <ghoom> ye sometimes `()` is necessary |
00:19:24 | FromDiscord | <Elegantbeef> Never as a getter |
00:19:27 | FromDiscord | <Arathanis> Wrote a static lib in nim using `std/httpclient` and linked it with a c program and when I run it it segfaults when it calls `post`. Is HttpClient just not going to work for this? |
00:19:40 | FromDiscord | <ghoom> In reply to @Elegantbeef "Never as a getter": yuss |
00:20:08 | FromDiscord | <Arathanis> sent a code paste, see https://play.nim-lang.org/#ix=45Lp |
00:20:12 | FromDiscord | <treeform> In reply to @Rika "treeform how usable is": Some one was able to make it work on a 3DS handheld system. |
00:20:52 | FromDiscord | <treeform> In reply to @Rika "treeform how usable is": https://github.com/treeform/pixie/issues/189 |
00:51:42 | FromDiscord | <Arathanis> Ok further weirdness. It segfaults when the URL is localhost or 127.0.0.1 but not if I use google.com |
00:53:17 | FromDiscord | <Arathanis> nvm it does seem to crash, but in subtly different way |
00:53:18 | FromDiscord | <Arathanis> fucking strange |
00:55:53 | * | krux02 quit (Remote host closed the connection) |
00:56:34 | FromDiscord | <Arathanis> sent a code paste, see https://play.nim-lang.org/#ix=45Lx |
00:57:59 | FromDiscord | <Arathanis> (edit) "https://play.nim-lang.org/#ix=45Lx" => "https://play.nim-lang.org/#ix=45Ly" |
01:04:03 | FromDiscord | <ghoom> In reply to @Arathanis "If anyone wants to": compiling example.nim gives me `invocation of external linker program failed. The system cannot find the file specified` too |
01:04:29 | FromDiscord | <Arathanis> In reply to @ghoom "compiling example.nim gives me": https://discord.com/channels/371759389889003530/371759389889003532/1001631556147875880 |
01:05:18 | FromDiscord | <ghoom> still doesnt work |
01:05:50 | FromDiscord | <ghoom> nvm |
01:05:54 | FromDiscord | <ghoom> i had to restart my terminal |
01:06:02 | FromDiscord | <ghoom> or rather, my shell |
01:06:44 | FromDiscord | <Arathanis> oh yeah, i always forget I have a custom function in my powershell profile called `Update-Path` that reloads the path |
01:06:57 | FromDiscord | <ghoom> no error occurs when i run a.exe |
01:07:09 | FromDiscord | <Arathanis> does it print all 3 lines? |
01:07:12 | FromDiscord | <Arathanis> or just "BEGIN" |
01:07:16 | FromDiscord | <ghoom> just begin lol |
01:07:20 | FromDiscord | <Arathanis> its totally crashing |
01:07:23 | FromDiscord | <Arathanis> add `-g` to the gcc command |
01:07:30 | FromDiscord | <Arathanis> then do `gdb ./a.exe` and run it |
01:07:34 | FromDiscord | <Arathanis> it will say it segfaulted |
01:07:38 | * | mdbauman quit (Quit: Leaving) |
01:08:05 | FromDiscord | <ghoom> indeed it does |
01:08:18 | FromDiscord | <Arathanis> `client.get` seems to be fine only post seems to have issues |
01:08:28 | FromDiscord | <ghoom> imma experiment |
01:08:34 | FromDiscord | <Arathanis> good luck im still experimenting here |
01:09:08 | FromDiscord | <Arathanis> sent a code paste, see https://play.nim-lang.org/#ix=45LC |
01:09:11 | FromDiscord | <Arathanis> that doesnt seem to crash for me |
01:09:14 | FromDiscord | <Arathanis> let me verify real quick |
01:09:23 | FromDiscord | <Elegantbeef> What's supposed to happen? |
01:09:41 | FromDiscord | <Arathanis> In reply to @Elegantbeef "What's supposed to happen?": its supposed to not segfault 😎 |
01:09:46 | FromDiscord | <Elegantbeef> It doesnt here |
01:10:02 | FromDiscord | <Elegantbeef> sent a code paste, see https://play.nim-lang.org/#ix=45LD |
01:10:09 | FromDiscord | <ghoom> btw, arathanis, shouldn't you put `extern` before the forward dec of callPost in the c file? |
01:10:33 | FromDiscord | <Arathanis> In reply to @Elegantbeef "It doesnt here": where is your 3rd print? it should echo the response status |
01:10:46 | FromDiscord | <Arathanis> also is that using post or using get? |
01:11:14 | FromDiscord | <Elegantbeef> Was with what you gave originally |
01:11:34 | FromDiscord | <Arathanis> yeah pretty sure |
01:11:44 | FromDiscord | <Arathanis> yes https://media.discordapp.net/attachments/371759389889003532/1001658109674135642/unknown.png |
01:12:12 | FromDiscord | <Arathanis> mine just says "BEGIN" and crashes |
01:13:04 | FromDiscord | <Arathanis> if I use `client.get` it does not print the status but it doesn't crash |
01:13:15 | FromDiscord | <Arathanis> In reply to @ghoom "btw, arathanis, shouldn't you": ...maybe? |
01:13:19 | FromDiscord | <Arathanis> i added it and nothing seems to change |
01:13:28 | FromDiscord | <Arathanis> since its a static lib I think its ok its like providing a header file |
01:13:36 | FromDiscord | <ghoom> sent a code paste, see https://play.nim-lang.org/#ix=45LE |
01:13:51 | FromDiscord | <ghoom> da fuk |
01:13:57 | FromDiscord | <Arathanis> what in the |
01:14:10 | FromDiscord | <ghoom> XD |
01:14:33 | FromDiscord | <Arathanis> https://media.discordapp.net/attachments/371759389889003532/1001658819853697146/unknown.png |
01:14:40 | FromDiscord | <ghoom> yeah maybe we should fix that first lol |
01:14:42 | FromDiscord | <Arathanis> output: https://media.discordapp.net/attachments/371759389889003532/1001658859150131260/unknown.png |
01:14:43 | FromDiscord | <Arathanis> ????????? |
01:14:47 | FromDiscord | <Arathanis> where are my echos |
01:14:48 | FromDiscord | <ghoom> 🤦♂️ |
01:15:26 | FromDiscord | <ghoom> let's fix it from nim first |
01:15:36 | FromDiscord | <ghoom> add `discard callPost()` |
01:15:38 | FromDiscord | <Arathanis> no crash reported either lmao https://media.discordapp.net/attachments/371759389889003532/1001659089929113600/unknown.png |
01:15:58 | FromDiscord | <ghoom> (edit) "add `discard callPost()` ... " added "at the end" |
01:17:37 | FromDiscord | <Elegantbeef> use `http://google.ca` |
01:18:09 | FromDiscord | <Arathanis> works fine for me in nim |
01:18:11 | FromDiscord | <Elegantbeef> sent a code paste, see https://play.nim-lang.org/#ix=45LF |
01:18:20 | FromDiscord | <ghoom> @Arathanis the "win32" error has to do with the nim compiler options |
01:18:25 | FromDiscord | <Elegantbeef> for `https` you need `ssl` support |
01:18:31 | FromDiscord | <Elegantbeef> so you need ot pass `-d:ssl` |
01:18:44 | FromDiscord | <Arathanis> In reply to @Elegantbeef "so you need ot": i did figure that one out, thank you |
01:18:55 | FromDiscord | <Arathanis> doesn't seem to fix the problem when calling from C though |
01:18:59 | FromDiscord | <Elegantbeef> But you can pass `ssl` since it is dynamically linked |
01:19:06 | FromDiscord | <Elegantbeef> The above works for me |
01:19:35 | FromDiscord | <Elegantbeef> sent a code paste, see https://play.nim-lang.org/#ix=45LG |
01:19:40 | FromDiscord | <Arathanis> caleld from nim or called from c? |
01:19:44 | FromDiscord | <Elegantbeef> From C |
01:19:48 | FromDiscord | <Arathanis> wild let me try |
01:20:22 | FromDiscord | <Arathanis> same compile command? |
01:20:27 | FromDiscord | <Elegantbeef> Yep |
01:20:41 | FromDiscord | <Arathanis> are you using -d:ssl or no? |
01:20:51 | FromDiscord | <Elegantbeef> No you cannot due to needing dlopen |
01:21:06 | FromDiscord | <Elegantbeef> Unless you also statically link openssl |
01:21:08 | FromDiscord | <Arathanis> oh are you compiling it to a dll instead of a .lib? |
01:21:27 | FromDiscord | <Elegantbeef> and at that point just status-im's chronos |
01:21:35 | FromDiscord | <Elegantbeef> No dynamic library |
01:21:49 | FromDiscord | <Elegantbeef> I said "same command" of course |
01:22:00 | FromDiscord | <Arathanis> https://media.discordapp.net/attachments/371759389889003532/1001660694825017494/unknown.png |
01:22:13 | FromDiscord | <Elegantbeef> `raises: []` |
01:22:19 | FromDiscord | <Elegantbeef> I added that just to be complete 😄 |
01:22:52 | FromDiscord | <Arathanis> that works, wtf? im not quite sure what you did differently |
01:23:03 | FromDiscord | <Arathanis> i mean i see what you did differently |
01:23:06 | FromDiscord | <Arathanis> but not why it helped at all |
01:23:09 | FromDiscord | <Elegantbeef> called `NimMain` and not use http 😄 |
01:23:39 | FromDiscord | <Elegantbeef> https i mean |
01:23:44 | FromDiscord | <Arathanis> gotcha |
01:23:48 | FromDiscord | <Arathanis> absolutely wild |
01:23:51 | FromDiscord | <Arathanis> appreciate it |
01:23:59 | FromDiscord | <Elegantbeef> No clue if there are any top level variables in the httpclient but `NimMain` would init them and call any other top level code |
01:24:08 | FromDiscord | <Elegantbeef> It's an important thing you do once |
01:24:35 | FromDiscord | <Arathanis> so I probably want an `initLib` proc of some sort that does the NimMain thing? |
01:24:42 | FromDiscord | <Elegantbeef> After i did that i just put it in the try except to see the error 😄 |
01:24:47 | FromDiscord | <Elegantbeef> Yep with a `once` in it |
01:25:03 | FromDiscord | <Arathanis> man you are a wizard |
01:25:09 | FromDiscord | <Elegantbeef> Or equivalent logic |
01:25:14 | FromDiscord | <Arathanis> i really appreciate it |
01:25:29 | FromDiscord | <Arathanis> im trying to shill nim to my team at work, gotta get that adoption |
01:25:32 | FromDiscord | <Arathanis> 😉 |
01:25:47 | FromDiscord | <Elegantbeef> sent a code paste, see https://play.nim-lang.org/#ix=45LH |
01:26:15 | FromDiscord | <Arathanis> is it in `block:` so multiple onces all run once? |
01:26:34 | FromDiscord | <Elegantbeef> What? |
01:27:02 | FromDiscord | <Arathanis> sent a code paste, see https://play.nim-lang.org/#ix=45LI |
01:27:08 | FromDiscord | <Elegantbeef> They each get their own bool |
01:27:15 | FromDiscord | <Elegantbeef> https://github.com/nim-lang/Nim/blob/version-1-6/lib/system.nim#L3035-L3050 |
01:27:31 | FromDiscord | <Elegantbeef> It's comically exactly what i said it was |
01:27:50 | FromDiscord | <Arathanis> ahhhh |
01:27:59 | FromDiscord | <Elegantbeef> `global` is stored in global memory so it persists after a procedure call |
01:28:04 | FromDiscord | <Arathanis> oh its literally a template |
01:28:09 | FromDiscord | <Elegantbeef> Yep |
01:28:40 | FromDiscord | <Elegantbeef> The beauty of good metaprogramming language features and user code is indistinguishable 😄 |
01:28:52 | FromDiscord | <Arathanis> hot damn it worked |
01:28:59 | FromDiscord | <ghoom> how do receive a json object from a socket? |
01:29:17 | FromDiscord | <Arathanis> read it out as a string then use `parseJson`? |
01:29:30 | FromDiscord | <ghoom> but the recv procs require a size |
01:29:48 | FromDiscord | <Elegantbeef> you use a `SocketStream` and `parseJsonFragments` |
01:30:12 | FromDiscord | <ghoom> could you pls gimme an example? |
01:30:52 | FromDiscord | <Elegantbeef> https://nim-lang.org/docs/socketstreams.html↵https://nim-lang.org/docs/json.html#parseJsonFragments.i%2CStream%2Cstring |
01:30:58 | FromDiscord | <Elegantbeef> Take peanut butter and mix with jelly |
01:36:07 | FromDiscord | <Prestige> Just got my pinephone pro, I may take a stab at writing a YouTube app in Nim for it |
01:36:10 | FromDiscord | <Prestige> Should be interesting |
01:36:47 | FromDiscord | <Elegantbeef> Nice, do the camera drivers work yet? 😄 |
01:37:23 | FromDiscord | <Prestige> I heard they do, I'm updating the OS right now so I'll check if my camera app works after the update |
01:44:12 | FromDiscord | <Elegantbeef> Which os are you using? |
01:45:40 | FromDiscord | <Prestige> alarm |
01:46:22 | FromDiscord | <Prestige> Seems like the default camera app just crashes |
01:46:37 | FromDiscord | <Elegantbeef> From what i hear megapixels is the goto app |
01:46:59 | FromDiscord | <Prestige> Yeah that's the default |
01:47:10 | FromDiscord | <Prestige> I'm trying out phosh atm but I'm not a fan of the layout |
01:48:55 | FromDiscord | <Elegantbeef> I do really wish i used a phone so i could validate getting a pinephone 😄 |
01:50:45 | FromDiscord | <Prestige> Never too late to start :P |
02:01:13 | FromDiscord | <ghoom> In reply to @Elegantbeef "you use a `SocketStream`": does `parseJsonFragments` on syntax error? |
02:01:21 | FromDiscord | <ghoom> (edit) "In reply to @Elegantbeef "you use a `SocketStream`": does `parseJsonFragments` ... on" added "raise" |
02:01:32 | FromDiscord | <ghoom> (edit) "In reply to @Elegantbeef "you use a `SocketStream`": does `parseJsonFragments` raise ... on" added "an exception" |
02:01:47 | FromDiscord | <Elegantbeef> `{.raises: [ IOError, OSError, IOError, OSError, JsonParsingError, ValueError, Exception]` |
02:02:17 | FromDiscord | <Elegantbeef> Nim's docgen pastes `raises` in the `{..}` which can be expanded |
02:04:11 | FromDiscord | <Elegantbeef> sent a code paste, see https://play.nim-lang.org/#ix=45LQ |
02:14:52 | * | pch joined #nim |
02:27:01 | FromDiscord | <Arathanis> Is there a way namespace an `exportc` proc when compiling with the cpp backend so its namespaced when used in cpp as a static lib? |
02:32:53 | FromDiscord | <Arathanis> Looks like you can do it by putting a namespace around the `extern "C"` block |
02:33:05 | FromDiscord | <Arathanis> still a risk of collisions but you could probably use silly naming conventions to get around that |
02:43:16 | FromDiscord | <ghoom> @ElegantBeef should i pass the server or the client to `newReadSocketStream`? |
02:51:51 | FromDiscord | <ghoom> also it doesn't work with async sockets |
03:49:19 | FromDiscord | <Girvo> Hi all! |
03:49:32 | FromDiscord | <Elegantbeef> Uhoh it's girvo question time, everyone flee! |
03:49:38 | FromDiscord | <Girvo> Hahaha |
03:49:45 | FromDiscord | <# Luke> In reply to @Elegantbeef "Uhoh it's girvo question": What 💀 |
03:49:56 | FromDiscord | <Girvo> sent a code paste, see https://play.nim-lang.org/#ix=45M0 |
03:50:06 | FromDiscord | <Girvo> Haha Luke I have a habit of asking some sort-of obscure questions at times |
03:50:12 | FromDiscord | <Arathanis> Ok, there has got to be a way to give C++ namespaces to exported functions when compiling with the cpp backend beyond header file hackery. I just don't know how... |
03:50:19 | FromDiscord | <Elegantbeef> `ptr cuchar` is the "correct" or just a `ptr char` afaik |
03:50:30 | FromDiscord | <Elegantbeef> codegendecl or emit possibly?↵(@Arathanis) |
03:50:33 | FromDiscord | <Girvo> @ElegantBeef And it's fine despite the `const`? |
03:50:49 | FromDiscord | <Elegantbeef> Generally yes |
03:50:53 | FromDiscord | <# Luke> In reply to @Girvo "Haha Luke I have": Ou |
03:50:56 | FromDiscord | <# Luke> (edit) "Ou" => "Oh" |
03:51:09 | FromDiscord | <Elegantbeef> Nim doesnt have a way to emit `const T` so you'd need to use codegendecl if the compiler doesnt like it |
03:51:10 | FromDiscord | <Girvo> Hah apparently `cuchar` is deprecated now |
03:51:13 | FromDiscord | <flywind> In reply to @Girvo "<@145405730571288577> And it's fine": You can import the const string type if you have to => https://dev.to/ringabout/wrap-const-char-in-the-nim-language-53no |
03:51:20 | FromDiscord | <# Luke> In reply to @Girvo "<@145405730571288577> And it's fine": If it was zig, no, but it's Nim so yes |
03:51:22 | FromDiscord | <Girvo> @ElegantBeef Yeah thats basically what I was getting at |
03:51:32 | FromDiscord | <Girvo> Though not too hard to emit `const` if it _really_ needs it |
03:51:43 | FromDiscord | <Elegantbeef> Or just import it like flywind did |
03:51:45 | FromDiscord | <Girvo> It shouldn't, this is literally just a binding to a crc16/crc_modbus impl |
03:51:54 | FromDiscord | <Girvo> Oh yeah, true |
03:52:20 | FromDiscord | <Elegantbeef> Girvo doesnt use zig they have their eyes set on easier to write system not equally complex 😄 |
03:53:07 | FromDiscord | <# Luke> In reply to @Elegantbeef "Girvo doesnt use zig": Oh lol |
03:53:20 | FromDiscord | <Arathanis> In reply to @Elegantbeef "codegendecl or emit possibly?": I've thought of emit, let me look at codegendecl |
03:54:47 | FromDiscord | <Girvo> Haha I play with Zig! I'm excited for where it might go, but for the embedded work I'm doing Nim's "its just C eventually" is too hard to beat 😉 |
03:55:01 | FromDiscord | <Girvo> sent a code paste, see https://play.nim-lang.org/#ix=45M1 |
03:55:12 | FromDiscord | <Elegantbeef> No |
03:55:29 | FromDiscord | <Girvo> Oh thank god |
03:55:38 | FromDiscord | <Elegantbeef> `cast[ptr cuchar](str[0])` |
03:55:52 | FromDiscord | <Girvo> Knew I was missing something, cheers |
03:56:07 | FromDiscord | <Elegantbeef> `addr str` took the address of the `str` variable |
03:56:10 | FromDiscord | <Elegantbeef> So it was stack allocated |
03:56:15 | FromDiscord | <Girvo> Yeah whoops |
03:56:20 | FromDiscord | <Girvo> I need another coffee |
03:56:32 | FromDiscord | <Elegantbeef> Or a rubber version of me to scream at |
03:56:43 | FromDiscord | <Elegantbeef> Please just scream at it |
03:59:07 | FromDiscord | <Arathanis> not sure codegenDecl is going to work because of what it puts around it |
03:59:36 | FromDiscord | <ghoom> how do i get the ip address of a client? |
04:00:31 | FromDiscord | <Girvo> Oh great, this crc16 library gives a different value for modbus than the other libraries lol |
04:00:32 | FromDiscord | <Girvo> Weeee |
04:01:22 | FromDiscord | <Rika> In reply to @Elegantbeef "`cast[ptr cuchar](str[0])`": arent you still missing the "addr" part |
04:01:33 | FromDiscord | <Elegantbeef> Yes |
04:01:38 | FromDiscord | <Rika> lol |
04:01:44 | FromDiscord | <Girvo> hahaha |
04:01:49 | FromDiscord | <Girvo> That might be why then |
04:01:50 | FromDiscord | <Girvo> One second |
04:01:55 | FromDiscord | <Elegantbeef> I was thinking `cast[ptr cuchar](str)` |
04:04:09 | FromDiscord | <Girvo> Yay I now have correct CRC16 for Modbus calculation |
04:04:26 | FromDiscord | <Girvo> Now to eventually translate that to Nim instead of binding libcrc, but eh thats for next week lol |
04:04:29 | FromDiscord | <Girvo> Cheers 🙂 |
04:22:13 | * | arkurious quit (Quit: Leaving) |
04:22:29 | FromDiscord | <ghoom> is there an std alternative to `setTimeout` or `setInterval` in nim? |
05:31:09 | NimEventer | New thread by Leeooox: Can I get this kind of type automatically build by template or macro?, see https://forum.nim-lang.org/t/9329 |
05:37:55 | * | CyberTailor quit (Remote host closed the connection) |
05:39:04 | * | CyberTailor joined #nim |
06:41:31 | FromDiscord | <neon_> Is there an updated guide for tables in nim? |
06:42:21 | FromDiscord | <neon_> sent a code paste, see https://paste.rs/bgN |
06:42:36 | FromDiscord | <Elegantbeef> Code? |
06:44:12 | FromDiscord | <neon_> sent a code paste, see https://play.nim-lang.org/#ix=45N0 |
06:44:27 | FromDiscord | <Elegantbeef> and `var bot = ...`? |
06:45:47 | FromDiscord | <neon_> sent a code paste, see https://play.nim-lang.org/#ix=45N5 |
06:46:06 | FromDiscord | <Elegantbeef> Full error please |
06:46:28 | FromDiscord | <Rika> It is likely an import export error |
06:46:35 | FromDiscord | <Rika> Are these in the same module |
06:46:40 | FromDiscord | <Elegantbeef> Their type isnt exported |
06:49:35 | FromDiscord | <neon_> sent a code paste, see https://play.nim-lang.org/#ix=45Ns |
06:49:40 | FromDiscord | <neon_> i think its because its colliding with libsodium |
06:49:43 | FromDiscord | <Elegantbeef> Well there's your problem |
06:50:00 | FromDiscord | <Elegantbeef> `import libsodium except hash` if you dont need it's hash |
06:50:21 | FromDiscord | <neon_> sorry haha i havent slept for a while now thanks! |
06:50:38 | FromDiscord | <Elegantbeef> Error messages do generally give the information to solve the issue 😄 |
06:51:07 | FromDiscord | <Elegantbeef> To explain that error a bit it's on the `[]=` generic instantiation |
06:51:45 | FromDiscord | <Elegantbeef> Inside `[]=` it calls `hash` and to make it extensible it uses the current scope to find that `hash` |
06:52:28 | FromDiscord | <neon_> fixed it now, will be more careful reading through next time |
07:15:20 | * | ehmry quit (Ping timeout: 255 seconds) |
07:43:31 | * | CyberTailor quit (Remote host closed the connection) |
07:46:00 | * | CyberTailor joined #nim |
08:01:33 | FromDiscord | <aMOPel> sent a code paste, see https://play.nim-lang.org/#ix=45NF |
08:02:24 | FromDiscord | <Rika> is that surprising? |
08:04:31 | FromDiscord | <huantian> That code is quite readable |
08:04:49 | FromDiscord | <aMOPel> In reply to @huantian "That code is quite": extremely |
08:05:37 | FromDiscord | <aMOPel> making slow but steady progress on the nim treesitter parser |
08:05:48 | FromDiscord | <Rika> thats nice |
08:06:47 | FromDiscord | <aMOPel> does anybody know how the fidget successor by treeform is coming along, or if it will happen? |
08:17:35 | FromDiscord | <Asbjørn F> how's Nim doing for data science? I'm currently doing a big data course at work, and the speed of Python is making me want to eject braincells onto a wall |
08:18:24 | FromDiscord | <Rika> In reply to @Asbjørn F "how's Nim doing for": ~~you probably won’t have the brain cells to eject by the end of it~~ |
08:20:02 | FromDiscord | <Asbjørn F> was there a nim awesome page on github or something? |
08:20:17 | FromDiscord | <Asbjørn F> I just wanna replicate some of this in Nim and see the diff |
08:20:43 | FromDiscord | <Asbjørn F> found it |
08:20:49 | FromDiscord | <Asbjørn F> https://github.com/VPashkov/awesome-nim |
08:22:04 | FromDiscord | <Asbjørn F> nvm no data science on that list |
08:24:00 | FromDiscord | <Asbjørn F> I guess this maybe? https://github.com/bluenote10/NimData |
08:24:11 | FromDiscord | <aMOPel> https://github.com/SciNim |
08:24:46 | FromDiscord | <Asbjørn F> ah, cool |
08:27:14 | FromDiscord | <Asbjørn F> much thanks |
08:50:21 | FromDiscord | <lantos> @Asbjørn F only thing is before you run into it is to think about (if you are running in prod)↵- Can you rewrite the part of your python script to be more effective -> if yes push computation to numpy else nim = good choice↵- Do you need single binaries -> if yes nim = good choice |
08:51:54 | FromDiscord | <lantos> (edit) "@Asbjørn F only thing is before you run into it is to think about (if you are running in prod)↵- Can you rewrite the part of your python script to be more effective -> if yes push computation to numpy else nim = good choice↵- Do you need single binaries -> if yes nim = good choice" => "sent a long message, see http://ix.io/45NL" |
09:00:23 | FromDiscord | <aMOPel> sent a code paste, see https://play.nim-lang.org/#ix=45NO |
09:02:24 | FromDiscord | <Olfactory Hallucinations> Does anyone know what's up with the playground? I'm getting a gateway timeout error. |
09:02:44 | FromDiscord | <lantos> its probably crashes @PMunch |
09:02:49 | FromDiscord | <lantos> (edit) "crashes" => "crashed" |
09:04:39 | * | gsalazar joined #nim |
09:06:16 | FromDiscord | <PMunch> I tried to reboot it |
09:08:09 | FromDiscord | <Asbjørn F> In reply to @lantos "<@956094950884392980> things to think": I see. Thanks for the consideration |
09:08:10 | FromDiscord | <lantos> Thanks PM |
09:08:27 | FromDiscord | <lantos> (edit) "PM" => "@PMunch" |
09:09:03 | FromDiscord | <Rika> In reply to @aMOPel "<@259277943275126785> do you know": Package level types in the experimental manual |
09:09:08 | FromDiscord | <PMunch> It seems to be back up, but who knows for how long.. |
09:09:30 | FromDiscord | <lantos> is it a simple error or something that will take a while to redo |
09:09:35 | FromDiscord | <lantos> (edit) "redo" => "sort out" |
09:09:48 | FromDiscord | <Rika> In reply to @aMOPel "<@259277943275126785> do you know": https://nim-lang.org/docs/manual_experimental.html#package-level-objects here you go |
09:11:32 | FromDiscord | <lantos> @PMunch ↵↵have you seen this. It actually is pretty good. If you have the inputs and results from play.nim-lang.org ↵It could be cool to be able to search through the data https://media.discordapp.net/attachments/371759389889003532/1001778858518925312/unknown.png |
09:11:46 | FromDiscord | <aMOPel> In reply to @Rika "https://nim-lang.org/docs/manual_experimental.html#": thank you 🙂 |
09:14:36 | NimEventer | New Nimble package! shellopt - Command line argument parser in the form commonly used in ordinary shell., see https://github.com/uga-rosa/shellopt.nim |
09:14:43 | FromDiscord | <PMunch> Well I get them, but I don't store them |
09:19:14 | * | rockcavera quit (Remote host closed the connection) |
09:20:30 | FromDiscord | <vindaar> @Asbjørn F\: also hop over to the #science channel if you have specific questions! |
09:32:06 | FromDiscord | <Asbjørn F> cool, thanks |
09:58:30 | * | jmdaemon quit (Ping timeout: 240 seconds) |
10:30:24 | * | CyberTailor quit (Quit: Konversation terminated!) |
10:32:40 | FromDiscord | <dom96> In reply to @PMunch "It seems to be": any ideas why it's crashing? |
10:44:12 | * | gsalazar quit (Ping timeout: 245 seconds) |
10:44:28 | * | gsalazar joined #nim |
10:50:17 | * | ehmry joined #nim |
11:14:40 | NimEventer | New thread by Drkameleon: How to check whether parseFloat leads to missing precision, see https://forum.nim-lang.org/t/9330 |
11:53:26 | FromDiscord | <PMunch> Same as always, it's so low on resources that it's constantly teetering on the brink of a crash |
12:00:36 | * | gsalazar quit (Remote host closed the connection) |
12:01:21 | FromDiscord | <flywind> What is this error? |
12:01:32 | FromDiscord | <flywind> sent a code paste, see https://play.nim-lang.org/#ix=45OO |
12:04:25 | FromDiscord | <Asbjørn F> There's an end of file where it shouldn't be I guess? |
12:04:37 | FromDiscord | <Asbjørn F> or lack of terminator? |
12:11:53 | FromDiscord | <flywind> Found it. `nimble test` probably just blocks because `flatty` already exists, but no user input provided to it. Plus there is a timeout for that so it raises EOF exception. It is weird that when using refc, it works. |
12:11:55 | FromDiscord | <Rika> That means your terminal ended standard in for whatever reason |
12:12:00 | * | xet7 quit (Quit: Leaving) |
12:14:01 | FromDiscord | <flywind> In reply to @flywind "Found it. `nimble test`": I guess CI is quite fragile because of the global package system and `nimble test` doesn't enforce "forced yes" |
12:14:25 | FromDiscord | <flywind> (edit) "In reply to @flywind "Found it. `nimble test`": I guess ... CI" added "the Nim" |
12:14:32 | FromDiscord | <flywind> (edit) "In reply to @flywind "Found it. `nimble test`": I guess the Nim ... CI" added "package" |
12:15:42 | FromDiscord | <flywind> Good news is that the devel nimble gives a warning about overwriting existing packages. |
12:15:45 | FromDiscord | <Rika> There is a setting for enforced yes |
12:17:45 | FromDiscord | <flywind> Yeah, the Nim important packages CI doesn't seem to use `nimble test -y" though. |
12:17:49 | FromDiscord | <flywind> (edit) "-y" though." => "-y"." |
12:20:22 | FromDiscord | <flywind> +> `proc pkg(name: string; cmd = "nimble test"; url = "", useHead = true, allowFailure = false)` |
12:41:51 | FromDiscord | <flywind> Well, it turns out refc and orc booting nimble have different behaviours ... |
12:57:48 | FromDiscord | <lantos> sent a code paste, see https://play.nim-lang.org/#ix=45P1 |
12:57:59 | FromDiscord | <lantos> (edit) "https://play.nim-lang.org/#ix=45P1" => "https://paste.rs/Z1p" |
12:59:47 | FromDiscord | <lantos> (edit) "https://play.nim-lang.org/#ix=45P4" => "https://play.nim-lang.org/#ix=45P3" |
12:59:52 | FromDiscord | <lantos> (edit) "https://play.nim-lang.org/#ix=45P3" => "https://paste.rs/nJ3" |
13:46:04 | * | arkurious joined #nim |
13:47:12 | FromDiscord | <dom96> In reply to @PMunch "Same as always, it's": we should be able to replace it with a better VPS if you're up for configuring it |
13:56:12 | FromDiscord | <aMOPel> sent a code paste, see https://play.nim-lang.org/#ix=45Pf |
13:57:10 | FromDiscord | <Rika> If expression |
13:57:32 | FromDiscord | <Rika> Wait |
13:57:37 | FromDiscord | <Rika> Let me read that again later |
13:57:58 | FromDiscord | <Rika> Better yet, someone else answers you before I get home |
14:16:19 | FromDiscord | <mirandaniel> Is there any made with Nim badge? |
14:34:54 | * | estiquelapice joined #nim |
14:53:27 | * | rockcavera joined #nim |
14:53:27 | * | rockcavera quit (Changing host) |
14:53:27 | * | rockcavera joined #nim |
15:22:14 | * | wallabra quit (Ping timeout: 255 seconds) |
15:25:53 | * | LuxuryMode joined #nim |
16:02:57 | FromDiscord | <Prestige> I'm not sure what that means |
16:03:29 | FromDiscord | <Prestige> In reply to @PMunch "Same as always, it's": If not upgrading the vps, maybe you could implement a job queue? If it's doing these things in parallel |
16:09:52 | FromDiscord | <Arathanis> sent a code paste, see https://play.nim-lang.org/#ix=45Q0 |
16:17:11 | FromDiscord | <Rika> its probably command prompt except you dont get builtins, maybe |
16:17:13 | FromDiscord | <Rika> i dont know |
16:17:36 | FromDiscord | <Arathanis> just exposes the nim toolchain maybe? |
16:17:43 | FromDiscord | <Arathanis> a shame since cmd sucks :P |
16:17:56 | FromDiscord | <Arathanis> oh well I can just manually launch powershell I guess, I just thought it was odd |
16:22:29 | FromDiscord | <lantos> Is there a way in nims std to get capture groups in regex? |
16:23:40 | FromDiscord | <Rika> https://nim-lang.org/docs/re.html#find%2Cstring%2CRegex%2CopenArray%5Bstring%5D%2Cint↵? |
16:24:51 | * | wallabra joined #nim |
16:25:43 | FromDiscord | <lantos> doesn't return multiple capture groups↵text = "one:10 three:3 two:2"↵test = re"(\w+):(\d+) |
16:26:16 | FromDiscord | <lantos> (edit) "doesn't return multiple capture groups↵text = "one:10 three:3 two:2"↵test = re"(\w+):(\d+)" => "sent a long message, see http://ix.io/45Q2" |
16:29:17 | FromDiscord | <ghoom> anybody gets compiler errors unrelated to the actual error? |
16:29:53 | FromDiscord | <ghoom> i got an error telling to discard an expression, it meant to discard other ones |
16:29:59 | FromDiscord | <ghoom> (edit) "i got an error telling ... to" added "me" |
16:30:06 | FromDiscord | <ghoom> (edit) "i got an error telling me to discard an expression, ... itactually" added "but" | "butit ... meant" added "actually" |
16:30:13 | FromDiscord | <ghoom> like wtf |
16:33:30 | FromDiscord | <Prestige> Can you get a min repro? |
16:35:27 | FromDiscord | <Rika> you get the matches here, but it is another story if you want to match many in the same line https://nim-lang.org/docs/re.html#match%2Cstring%2CRegex%2CopenArray%5Bstring%5D%2Cint |
16:35:45 | FromDiscord | <Rika> you can use nre maybe but i am unfamiliar |
16:39:22 | FromDiscord | <lantos> giving nim-regex a shot |
16:40:40 | FromDiscord | <Rika> that has a nicer api |
16:40:50 | FromDiscord | <ghoom> In reply to @Avahe "Can you get a": man dat would take me ages |
16:40:55 | FromDiscord | <Rika> you have the limitation that its more actually-regular than PCRE |
16:41:05 | FromDiscord | <ghoom> (edit) "In reply to @Avahe "Can you get a": man dat would take me ages ... " added "😭" |
16:41:07 | FromDiscord | <Rika> so back references is not allowed i think |
16:41:25 | FromDiscord | <Rika> In reply to @ghoom "man dat would take": how else would we know the actual issue? |
16:41:37 | FromDiscord | <ghoom> ah forget it |
16:52:37 | FromDiscord | <ghoom> is there a way to make enum items ints? |
16:52:46 | FromDiscord | <ghoom> like in c |
16:53:03 | FromDiscord | <ghoom> so i can do `case` on ints using enums |
16:53:08 | FromDiscord | <Rika> what |
16:53:14 | FromDiscord | <Rika> `ord(enumval)` |
16:53:27 | FromDiscord | <Rika> you can just case an enum as usual though |
16:53:33 | FromDiscord | <Rika> i dont understand why you need this for case |
16:53:57 | FromDiscord | <ghoom> to not write `ord(...)` for each case |
16:54:26 | FromDiscord | <Rika> but again you dont need to use ord |
16:54:27 | FromDiscord | <Rika> what |
16:54:37 | FromDiscord | <ghoom> i'll give you en example |
16:54:42 | FromDiscord | <Rika> you can convert an int to an enum really easily |
16:54:49 | FromDiscord | <Rika> `EnumType(intval)` |
16:54:58 | FromDiscord | <ghoom> but if the int falls outside the enum's range? |
16:55:03 | FromDiscord | <ghoom> (edit) "but ... if" added "what" |
16:55:03 | FromDiscord | <Rika> then is it really valid |
16:55:41 | FromDiscord | <mr_noia> you can use a try/except that handles RangeDefect↵(@ghoom) |
16:55:48 | FromDiscord | <Rika> dont |
16:55:59 | FromDiscord | <Rika> its a defect, there will be a "kind" of nim where that will break |
16:56:15 | FromDiscord | <Rika> defects shouldnt be caught as long as they continue to exist in nim |
16:56:49 | FromDiscord | <ghoom> i'll just use ord then |
16:57:12 | FromDiscord | <mr_noia> huum, I didn't know that↵(@Rika) |
16:57:48 | FromDiscord | <Rika> theres a switch in the compiler that will cause defects to be uncatchable so |
17:26:20 | FromDiscord | <flywind> Can I exclude forks from GitHub search? |
17:26:56 | FromDiscord | <flywind> I would like to search all Nim libraries using shallowCopy but not forks: https://cs.github.com/?scopeName=All+repos&scope=&q=shallowCopy+language%3Anim |
17:28:52 | FromDiscord | <jan0809> heyo, do you guys think that could still work (2019)↵https://github.com/jyapayne/nim-libnx |
17:29:06 | FromDiscord | <Generic> In reply to @jan0809 "heyo, do you guys": no it's broken |
17:29:15 | FromDiscord | <Generic> I have a new wrapper which works, but haven't published it yet |
17:29:29 | FromDiscord | <jan0809> awesome |
17:29:34 | FromDiscord | <jan0809> imma wait then |
17:31:07 | FromDiscord | <flywind> In reply to @flywind "I would like to": Btw shallowCopy has already been removed for ARC/ORC, so these libraries need to change shallowCopy to move or sink plus assignment or a deepcopy assignment. Otherwise it won't work with Nim v2 by default. Feel free to hunt them according to "v2: Migrations to ORC" (https://github.com/nim-lang/Nim/issues/20017) |
17:31:22 | FromDiscord | <Gabben> sent a code paste, see https://play.nim-lang.org/#ix=45Qp |
17:39:53 | FromDiscord | <Rika> `copyMem result[0].unsafeAddr, source[0].unsafeAddr, source.len sizeof(result[0])` |
17:41:10 | FromDiscord | <flywind> sent a code paste, see https://play.nim-lang.org/#ix=45Qu |
17:55:36 | FromDiscord | <PMunch> In reply to @Avahe "If not upgrading the": The problem is that Docker leaves trash around. That's why rebooting usually fixes things. A touch more RAM and disk is really all it needs |
17:58:41 | * | ehmry quit (Quit: https://quassel-irc.org - Chat comfortably. Anywhere.) |
17:59:48 | * | ehmry joined #nim |
18:10:53 | FromDiscord | <jan0809> thats why one uses seperate build stages |
18:33:06 | FromDiscord | <aMOPel> In reply to @Rika "Let me read that": you know what it is? |
18:33:26 | FromDiscord | <Rika> i fucking forgot okay wait ill look now |
18:34:39 | FromDiscord | <Rika> In reply to @Rika "`copyMem result[0].unsafeAddr, source[0].unsafeAddr": me realising `sizeof(type(result))` works for arrays of course, but i'd say its better to be safe ig |
18:39:50 | FromDiscord | <Rika> sent a code paste, see https://play.nim-lang.org/#ix=45QN |
18:41:20 | FromDiscord | <aMOPel> sent a code paste, see https://play.nim-lang.org/#ix=45QO |
18:41:29 | FromDiscord | <Rika> its the only thing i could think of since its limited to statements |
18:41:55 | FromDiscord | <aMOPel> cool, thanks 🙂 I already have more questions if you don't mine |
18:42:00 | FromDiscord | <Rika> ok |
18:42:00 | FromDiscord | <aMOPel> (edit) "mine" => "mind" |
18:42:19 | FromDiscord | <aMOPel> sent a code paste, see https://play.nim-lang.org/#ix=45QP |
18:43:00 | FromDiscord | <Rika> ? |
18:43:01 | FromDiscord | <Rika> sent a code paste, see https://play.nim-lang.org/#ix=45QQ |
18:43:09 | FromDiscord | <Rika> does that work |
18:43:35 | FromDiscord | <Rika> kinda fucked that i have this seared into my brain ngl |
18:45:21 | FromDiscord | <aMOPel> sent a code paste, see https://play.nim-lang.org/#ix=45QR |
18:45:39 | FromDiscord | <aMOPel> In reply to @Rika "kinda fucked that i": pretty impressive to be honest |
18:45:43 | FromDiscord | <Rika> eh |
18:45:51 | FromDiscord | <Rika> theres a lot i still dont remember well enoughj |
18:45:52 | FromDiscord | <Rika> (edit) "enoughj" => "enough" |
18:50:03 | FromDiscord | <aMOPel> sent a code paste, see https://play.nim-lang.org/#ix=45QS |
18:52:40 | FromDiscord | <aMOPel> @Rika btw, as I work through the grammar spec I am compiling a list of bugs and other issues with it, planning to make a gh issue when I'm done. You think the maintainers care about the grammar spec correctness? |
18:53:36 | FromDiscord | <Rika> some do i believe |
18:53:55 | FromDiscord | <Rika> In reply to @aMOPel "alright, this one I": i dont in this case lol |
18:54:03 | FromDiscord | <Rika> prolly macro related again |
18:54:24 | FromDiscord | <Rika> you can have else after a macro w/o having a do beforehand, something similar to the bare colon (but not related) |
18:54:28 | FromDiscord | <Rika> i dont know the details |
18:58:00 | FromDiscord | <aMOPel> That already helps 👍 That's all I have for now. Thank you 🙂 |
19:03:49 | FromDiscord | <d4rckh> how can i get the client's ip address using asynchttpserver |
19:09:28 | FromDiscord | <Prestige> In reply to @PMunch "The problem is that": Can you disable whatever those docker options are maybe? |
19:14:13 | FromDiscord | <d4rckh> In reply to @d4rckh "how can i get": request.hostname seems to work |
19:14:28 | FromDiscord | <Quibono> I'm trying to run a nim file which calls a nim file in a folder (on the same level as it) and it's getting an error that it can't open the file. I'm on MacOS Monterey if that helps |
19:21:14 | FromDiscord | <hotdog> In reply to @Quibono "I'm trying to run": How does it call the file? |
19:22:27 | FromDiscord | <Quibono> import file_name where file_name is the name of the folder |
19:31:40 | * | krux02 joined #nim |
19:51:56 | FromDiscord | <aMOPel> sent a code paste, see https://play.nim-lang.org/#ix=45R7 |
19:52:12 | FromDiscord | <Rika> You can’t object like that |
19:52:23 | FromDiscord | <Rika> Anonymous objects don’t exist |
19:52:53 | FromDiscord | <Rika> Might exist in the future but probably only within 2.0, though not a guarantee |
20:09:42 | * | pch quit (Remote host closed the connection) |
20:27:22 | FromDiscord | <Quibono> In reply to @Quibono "import file_name where file_name": Is this the wrong syntax? |
20:29:50 | FromDiscord | <Prestige> `import foo` or `import foo/bar` |
21:11:58 | * | wallabra quit (Ping timeout: 244 seconds) |
21:20:53 | FromDiscord | <PMunch> In reply to @Avahe "Can you disable whatever": Nope, I googled at great length at some point. Only to find other people with similar issues and essentially answers from Docker that this is a wontfix bug |
21:22:20 | FromDiscord | <Prestige> Well, that sucks.. |
21:22:59 | FromDiscord | <Prestige> I wonder if podman would be better |
21:25:41 | * | LuxuryMode quit (Quit: Connection closed for inactivity) |
21:38:17 | FromDiscord | <exelotl> I kinda wish anonymous enums existed sometimes |
21:38:45 | FromDiscord | <Prestige> Why's that? |
21:40:12 | FromDiscord | <exelotl> sent a code paste, see https://play.nim-lang.org/#ix=45Rv |
21:40:38 | FromDiscord | <exelotl> there is nothing else in the game that takes an `AstronomerMode` as a parameter, or has it as a field |
21:41:17 | FromDiscord | <exelotl> or something |
21:41:18 | FromDiscord | <exelotl> sent a code paste, see https://play.nim-lang.org/#ix=45Rw |
21:41:50 | FromDiscord | <Prestige> I think your first code block is just more readable to be honest |
21:42:07 | FromDiscord | <Prestige> If you ever had to add more states or use this somewhere else, it would be a lot smoother |
21:42:12 | FromDiscord | <!Patitotective> maybe inline enums would be better |
21:43:12 | FromDiscord | <exelotl> how would that be like? |
21:45:01 | FromDiscord | <!Patitotective> sent a code paste, see https://play.nim-lang.org/#ix=45Rx |
21:45:13 | FromDiscord | <!Patitotective> shorter but still clear |
21:45:36 | FromDiscord | <Prestige> I don't see the point, really |
21:46:30 | FromDiscord | <!Patitotective> the point is adding more syntax |
21:48:33 | FromDiscord | <Phytolizer> sent a code paste, see https://play.nim-lang.org/#ix=45Ry |
21:48:59 | FromDiscord | <Phytolizer> for example, would turning the argument into a `var seq[Operation]` elide the copy? |
21:49:18 | * | lumo_e joined #nim |
21:52:11 | FromDiscord | <exelotl> I believe turning into a `sink seq[Operation]` might help? |
21:52:14 | FromDiscord | <demotomohiro> If the argument to `program` is never read after calling that proc, it would be moved |
21:52:32 | FromDiscord | <Phytolizer> In reply to @demotomohiro "If the argument to": yeah, in practice `program` is always a temporary being passed in |
21:52:34 | * | jmdaemon joined #nim |
21:52:47 | FromDiscord | <Phytolizer> i'll use `sink`, forgot about that kw |
21:53:40 | FromDiscord | <Phytolizer> well it works, not sure how to tell if i avoided a copy though |
21:53:55 | FromDiscord | <Prestige> https://nim-lang.org/docs/destructors.html |
21:54:14 | FromDiscord | <Prestige> (edit) "https://nim-lang.org/docs/destructors.html" => "https://nim-lang.org/docs/destructors.html#lifetimeminustracking-hooks-nimeqsink-hook" |
21:57:13 | FromDiscord | <demotomohiro> Use `--expandArc:PROCNAME` option. |
22:00:16 | FromDiscord | <Prestige> sink and lent are great |
22:02:29 | FromDiscord | <!Patitotective> is there a short for `requires "downit >= 0.1.0 & < 0.2.0"`? |
22:03:15 | FromDiscord | <Phytolizer> sent a code paste, see https://play.nim-lang.org/#ix=45RD |
22:04:39 | FromDiscord | <Phytolizer> if this fails i will implement `=sink` but that wil require writing a whole type just to check this |
22:05:05 | FromDiscord | <demotomohiro> Maybe you need to add -f to recompile without using cache |
22:05:32 | FromDiscord | <Phytolizer> same result (i.e. no extra output) |
22:07:53 | FromDiscord | <Prestige> In reply to @Phytolizer "if this fails i": sink param should work |
22:08:21 | FromDiscord | <Phytolizer> ok ig i'll just trust it is working then cause i got no errors when adding `sink` to the parameter. thanks guys |
22:16:30 | FromDiscord | <#!/bin/luke> Patio, why does GitHub actions build for windows on ubuntu? |
22:41:10 | * | wallabra joined #nim |
23:07:12 | FromDiscord | <treeform> In reply to @flywind "Found it. `nimble test`": Do you have a small repro case? I can fix it. |
23:12:51 | FromDiscord | <michaelb.eth> is there a cross-platform way (maybe already in Nim and I haven't seen it yet) for checking how much free space is left on a filesystem? |
23:14:41 | FromDiscord | <Elegantbeef> I dont imagine there is |
23:18:43 | FromDiscord | <voidwalker> https://play.nim-lang.org/#ix=45RL |
23:19:21 | FromDiscord | <voidwalker> Any way I could make this tvs-> sqlite import faster ? It takes about 3 minutes, vs a few seconds using the sqlite .import |
23:19:32 | FromDiscord | <voidwalker> (edit) "tvs->" => "tsv->" |
23:21:49 | FromDiscord | <voidwalker> Hm, "just" 46 seconds, I forgot to put danger instead of debug |
23:23:18 | FromDiscord | <Prestige> how about -d:release? |
23:27:01 | FromDiscord | <voidwalker> 43 seconds without that case statement, just direct bind.. |
23:27:08 | FromDiscord | <voidwalker> (edit) "bind.." => "bind string" |
23:28:51 | FromDiscord | <voidwalker> still ~43 seconds with -d:release |
23:33:55 | FromDiscord | <jan0809> how much data were talking about |
23:36:26 | FromDiscord | <voidwalker> 800MB |
23:41:45 | * | lumo_e quit (Quit: Quit) |
23:47:34 | FromDiscord | <jonnuh> https://tenor.com/view/twomenkissing-twoblackmenkissing-kissing-kiss-gaykiss-gif-22635642 |
23:50:23 | FromDiscord | <!Patitotective> is it worth using asynchronous mysql or a thread is just fine? |
23:50:48 | FromDiscord | <b1rdf00d> sent a long message, see http://ix.io/45RP |
23:51:19 | FromDiscord | <Prestige> In reply to @Patitotective "is it worth using": I would probably just use async, why do you want to use a thread? |
23:51:39 | FromDiscord | <voidwalker> oh you can do it asynchronously hmm |
23:51:45 | FromDiscord | <voidwalker> wait, this is sqlite |
23:52:22 | FromDiscord | <dom96> use sqlite |
23:52:26 | FromDiscord | <!Patitotective> well, for it to be async i think ill have to use https://github.com/bung87/amysql↵and if it had any issue or something missing that i needed i would have to use std/db_mysql in a thread (?) |
23:52:39 | FromDiscord | <dom96> I bet you mysql is overkill for your use case |
23:53:54 | FromDiscord | <voidwalker> Only I am using sqlite and from what I know, it's what I need for a 2-3GB db with only 1 user |
23:54:07 | FromDiscord | <Prestige> In reply to @b1rdf00d "I'm working through ray": That's really interesting, I'd like to know why as well... |
23:55:00 | FromDiscord | <voidwalker> raw .import command from sqlite cli takes about ~12.5 seconds, so almost 4x slower in nim. There has to be something to speed it up |
23:57:07 | FromDiscord | <Prestige> Also @b1rdf00d your `echo fmt("Scan lines remaining {j}")` should probably be `imHeight - j` |
23:57:33 | FromDiscord | <!Patitotective> In reply to @dom96 "I bet you mysql": may i ask why? im new to db world↵the db is meant to be used by a django app as well |