EU Cyber Resilience Act impact on Open Source community

2023-04-25 Thread sotolf
Yeah, the cookie banners are just there for them to be "allowed" to use spying cookies, the thing the GDPR did was making the sites have to tell you that they are spying on you. And companies are for some reason running with it making a lot of dark pattern stuff to make it more cumbersome.

Upcoming `Result` review - comments and thoughts welcome!

2023-04-25 Thread arnetheduck
For those using result, the package name is being updated to `results` to comply with Nimble package structure rules: \- hopefully the old name will keep working for a bit, but if it doesn't, update your references.

Writing a wrapper for ML libraries how-to

2023-04-25 Thread junelac
thanks it looks very useful

Writing a wrapper for ML libraries how-to

2023-04-25 Thread demotomohiro
I wrote two articles for people want to use C libraries from Nim: * [GCC and C tutorial for Nimmer](https://internet-of-tomohiro.netlify.app/nim/gccguide.en.html) * [C library tutorial for Nimmer](https://internet-of-tomohiro.netlify.app/nim/clibrary.en.html)

Writing a wrapper for ML libraries how-to

2023-04-25 Thread junelac
there is a dataframe library in nim (never tried)

Writing a wrapper for ML libraries how-to

2023-04-25 Thread junelac
I'm currently exploring this topic. i found this page very useful as an introduction: I'm also experimenting with automatic wrappers. Only with Futhark for the moment, but I will try c2nim and nimterop also. My only knowledge of C i

Can I quick get table last key value use like at(idx) function?

2023-04-25 Thread Angluca
I write func print unicode font must O(1) speed, unicode cjk have 0 ~ 195103, Of cource haven't all char It's to large( So only have 18000+ zh, jp ,kr .. fonts: table[Rune, Rect(x,y,w,h)] get pixel fonts on png) I think use hash table is best way maybe... Is there have better type structure to u

Can I quick get table last key value use like at(idx) function?

2023-04-25 Thread Zoom
1 is not that big. Your keys look like an ordinal type, so if your data is not sparse, maybe just use an exhaustive table (array/seq).