| 03:06:53 | FromDiscord | <Robyn [She/Her]> In reply to @nnsee "from seeing the people": i agree! i am above my peers but my reliance on LLMs is bad |
| 03:20:11 | FromDiscord | <DetermiedNim1> I have to agree |
| 03:20:46 | FromDiscord | <DetermiedNim1> maybe not entierly the "above my peers" part, but i feel like using llms for some stuff has reduced my knowledge a bit |
| 04:35:39 | * | amadaluzia quit (Ping timeout: 265 seconds) |
| 05:38:17 | FromDiscord | <notenlish> In reply to @nasuray "Canonically https://nimpkgs.org now": shouldnt the link in the nim website be updated then |
| 07:02:47 | * | tiorock joined #nim |
| 07:02:48 | * | rockcavera is now known as Guest3153 |
| 07:02:48 | * | Guest3153 quit (Killed (lead.libera.chat (Nickname regained by services))) |
| 07:02:48 | * | tiorock is now known as rockcavera |
| 08:26:32 | * | Jjp137 quit (Read error: Connection reset by peer) |
| 08:28:10 | * | Jjp137 joined #nim |
| 11:12:19 | * | oddish quit (Ping timeout: 264 seconds) |
| 11:19:44 | * | xet7_ joined #nim |
| 11:22:35 | * | xet7 quit (Ping timeout: 272 seconds) |
| 11:24:32 | * | oddish joined #nim |
| 11:54:48 | FromDiscord | <Robyn [She/Her]> In reply to @determiedmech1 "maybe not entierly ": by above my peers, i mean most people within the spaces I share (such as University) |
| 11:58:07 | FromDiscord | <nasuray> In reply to @notenlish "shouldnt the link in": Mine is unofficial, nimble.directory will be back up once someone restarts the service. (it has some outstanding issue that crashes it I think) |
| 12:05:24 | FromDiscord | <nnsee> In reply to @determiedmech1 "maybe not entierly ": no shame in admitting it, to be honest. it's good to know what your strengths and weaknesses are |
| 12:05:59 | FromDiscord | <nnsee> In reply to @nasuray "Mine is unofficial, nimble.directory": @pmunch |
| 12:06:10 | FromDiscord | <nnsee> (i'd do it myself, but i still don't have restart perms without rebuilding the whole package :p) |
| 12:23:11 | * | xet7_ quit (Quit: Leaving) |
| 12:23:40 | * | xet7 joined #nim |
| 12:40:42 | * | amadaluzia joined #nim |
| 12:54:47 | FromDiscord | <_timurski> In reply to @determiedmech1 "maybe not entierly ": https://youtu.be/tWrnB2xDLd4 |
| 12:54:57 | FromDiscord | <_timurski> this video has a good reasonable take on LLMs in general |
| 12:55:07 | FromDiscord | <_timurski> (edit) "in general" => "for learning" |
| 13:21:11 | * | Skippy8 joined #nim |
| 16:19:06 | * | xet7 quit (Quit: Leaving) |
| 17:17:43 | * | Skippy8 quit (Ping timeout: 264 seconds) |
| 18:14:55 | FromDiscord | <tvoyglaza> For the most recent Nim stable versions this error occurs. Nimble should use a symbolic link so that any package pointing to the Cookies package as dependency will make Nimble loads the built-in Cookies package by default. https://media.discordapp.net/attachments/371759389889003532/1520855025864278057/image.png?ex=6a42b61e&is=6a41649e&hm=e1d51290f17e374757445350cda4554038a0575186f8c2d0914c218003ee8d0c& |
| 18:17:55 | * | Vyrnexis quit (Quit: The Lounge - https://thelounge.chat) |
| 18:18:16 | * | Vyrnexis joined #nim |
| 18:26:44 | * | Skippy8 joined #nim |
| 18:28:06 | FromDiscord | <DetermiedNim1> does manually installing the cookie package work |
| 18:28:07 | FromDiscord | <DetermiedNim1> idk |
| 18:28:31 | FromDiscord | <DetermiedNim1> also you could do "nimble develop" and edit stuff to try to get it to work |
| 18:34:49 | * | joast quit (Quit: Leaving.) |
| 18:35:51 | FromDiscord | <pmunch> In reply to @nnsee "<@392962235737047041>": It's restarted now |
| 18:36:12 | FromDiscord | <pmunch> I should really just give you full access. As I said there's nothing else on that machine.. |
| 18:36:32 | FromDiscord | <nnsee> unless you don't trust this old hacker... |
| 18:38:57 | * | GnuYawk1 quit (Quit: The Lounge - https://thelounge.chat) |
| 18:39:30 | * | GnuYawk12 joined #nim |
| 19:10:33 | * | zero` quit (Quit: zero`) |
| 19:14:09 | * | zero` joined #nim |
| 19:47:55 | FromDiscord | <tempestro> Why do people shit on using tabs instead of spaces again?↵I'm working on a repo which uses 2 spaces for indentation instead of my preferred 4 and I hate it. Were these tabs, I could configure VSCode to display them however I like |
| 19:48:16 | FromDiscord | <tempestro> Also, what's the best way to shrink an `int` into a `cint`? |
| 19:54:13 | * | joast joined #nim |
| 19:55:46 | FromDiscord | <pmunch> In reply to @nnsee "unless you don't trust": Trust you with what? Worst case I wipe the machine and start fresh 🤷♂️ |
| 19:56:30 | FromDiscord | <pmunch> In reply to @tempestro "Why do people shit": Problem comes when you try to align things to make the code pretty and someone changes their tab size |
| 19:56:38 | FromDiscord | <pmunch> But in general I agree |
| 19:58:09 | FromDiscord | <tempestro> In reply to @pmunch "Problem comes when you": fair enough |
| 20:01:14 | * | GnuYawk12 quit (Quit: The Lounge - https://thelounge.chat) |
| 20:08:31 | * | GnuYawk12 joined #nim |
| 20:19:51 | FromDiscord | <tempestro> If a proc has no side effects, should it always be declared a func instead? |
| 20:26:03 | Amun-Ra | I'd say yes |
| 20:28:21 | FromDiscord | <tangentsoft> If it's pure Nim, then yes, because that lets the compiler reason about the code in helpful ways. If we're talking about a C API wrapper, then declaring it as a func means you're merely asserting that the called code has no side effects, which might not be true. The Nim compiler cannot and will not second-guess you on this, and on your head be the consequences if you're wrong. |
| 20:29:27 | FromDiscord | <tangentsoft> https://en.wikipedia.org/wiki/Referential_transparency |
| 22:43:26 | FromDiscord | <nasuray> In reply to @pmunch "It's restarted now": do we know why it periodically crashes? |
| 23:50:33 | * | Jjp137 quit (Ping timeout: 272 seconds) |