Chame 0.14.0 released

2024-03-21 Thread Niminem
Firstly, I just want to say I love this library. I've been wanting a WHATWG standard compliant HTML parser in Nim since 2020. Secondly, I've created a CSS Selectors library for it: [CSS3Selectors](https://github.com/Niminem/CSS3Selectors) So for those of you that do as much web scraping as I do

Nim for Beginners video series discussion thread

2024-03-21 Thread Kiloneie
I have added "discussions" to my repo for my Nim tutorials to have an organized way to discuss future video ideas, video improvements, remakes, etc. I have also posted a discussion on remaking my old videos up to the first SDL video, with my thoughts and ideas. If you also have ideas and suggest

Oversight or intentional?

2024-03-21 Thread juancarlospaco
Maybe that should be a Hint? 🤔

rationale for parsecsv.readRow skipping blank lines?

2024-03-21 Thread mszs
I'm reading some rows from a CSV file and noticed that lines that have only the field separators on it get dropped. I find this surprising. What's the rationale behind this?

nim & vscode , freebsd vs artix(arch) linux

2024-03-21 Thread beckx
I think the editor is vscode ;)

JS bindings question - Quill

2024-03-21 Thread mantielero
I am starting to think that I am facing another issue before the `Blot` topic. I am trying to wrap the following JS function: getLine(index: number): [Blot, Number] Run I tried the following, but it is not working: proc getLine(api:QuillObj; index:cint):t

SlimXcel Keto ACV Gummies Canada

2024-03-21 Thread ftyyi
SlimXcel Keto ACV Gummies Canada Survey: All the data you should have to be aware prior to getting it SlimXcel Keto ACV Gummies Canada 100k Happy Customers Limited stock order now.

Issues with identifier equality and FFI

2024-03-21 Thread scippie
Oh ok, that's strange, because GL_UNSIGNED_BYTE worked, I never thought of looking for something like cGL_FLOAT. But it works, thanks! I maybe should have checked the sources first before asking here, but the errors didn't make me think that way. It seems both GL_UNSIGNED_BYTE and cGL_UNSIGNED_

nim & vscode , freebsd vs artix(arch) linux

2024-03-21 Thread dlesnoff
Your problem description is vague. What are the editors you tested this on for each of the OS? Note that you can also use screen captures, after hosting the pictures on a web hosting service.

Issues with identifier equality and FFI

2024-03-21 Thread sls1005
You mean [this one](https://github.com/nim-lang/opengl)? It seems to use the name `cGL_FLOAT` to avoid this issue.

Issues with identifier equality and FFI

2024-03-21 Thread demotomohiro
If you are using this OpenGL binding, `GL_FLOAT` constant was renamed to `cGL_FLOAT`: Other constants that has a similar name to OpenGL type name are renamed in the same way (`cGL_INT`, `cGL_SHORT`, etc).

Oversight or intentional?

2024-03-21 Thread mabon
`import sugar let f = (x: int) -> int => x * x let g = proc(x: int): int = x * x let m = (x: int, y: (int) -> int) => y(x) echo f(100) echo g(100) echo m(100,f) echo m(100,(x: int) => x * x) ` Run

chronos 4.0

2024-03-21 Thread arnetheduck
correct v4.0.1 link

Issues with identifier equality and FFI

2024-03-21 Thread scippie
> Should be fairly simple to solve, but first off, which bindings to you use? Sorry, what do you mean with that question? Do you mean which imports I use? Because that's the basic opengl package installed with nimble.

Issues with identifier equality and FFI

2024-03-21 Thread scippie
I am working on integrating OpenGL in a Nim project while I am still learning Nim. As I am still waiting on the arrival of the book, I hope I am not asking something that is addressed in the manual but I haven't found yet (although I DO hope there is a solution of course). But at this moment, i

Dr Oz Diabetes Cbd GummiesIs It Fake Or Real Dr Oz Diabetes Cbd GummiesComplaints Read Now !

2024-03-21 Thread SherffJames
╰┈➤PURCHASE LINK :- ╰┈➤Facebook Page’s:- Dr Oz Diabetes CBD Gummies : These confections efficiently target sleep irregularit

Issues with identifier equality and FFI

2024-03-21 Thread PMunch
Should be fairly simple to solve, but first off, which bindings to you use?

[Hoax Alert] Bliss Bites CBD Gummies USA - Official Reviews

2024-03-21 Thread ourlifenews
Bliss Bites CBD Gummies is open in various researchers and epic chains like Lloyds Pharmacy, they will sell tones, drops, and oral sprinkles without a fix. We propose you look at the mg of ashwagandha contained and not the size of the compartment near several brands' attempts and seem like they

OurLife CBD Gummies Reviews Update 2024: Where to Buy This?

2024-03-21 Thread ourlifenews
With everything considered, OurLife CBD Gummies appears to have scratched off every one of our cases when we search for CBD plans. Everything from the creating, gathering, and eliminating processes down to the substance's assessments and taste and in the center between has been viewed by the Our

Oversight or intentional?

2024-03-21 Thread sls1005
var g: proc(x: int): int g = proc (x: int): int = g(x) Run But it's unknown if a closure can capture itself. Or maybe let g = block: proc f(x: int): int = f(x) f Run Also, I think it cannot be done with `auto`, which introduces an imp

chronos 4.0

2024-03-21 Thread arnetheduck
[v4.0.1](https://github.com/status-im/nim-chronos/compare/v4.0.0...v4.0.1 -) tagged: * removes usage of `sink` ([currently broken](https://github.com/nim-lang/Nim/issues/23354) in all Nim versions, both refc/arc) * fixes some circular refs in timers for better ARC support * fixes a bunch

https://peoplesketogummiesofficial.hashnode.dev/

2024-03-21 Thread john4574
Best Deals At Live => Shop Now: Best Deals At Live => Shop Now: Peoples Keto Gummies Reviews: A ketogenic dietary supplement called People's Keto Gummies Australia is created with just natural components and BHB salt. You may impro

Oversight or intentional?

2024-03-21 Thread Araq
> Is there a way around this? This really hampers functional programming styles > where you make short lambda functions all the time, even mid-expression. So use the Y-combinator.