Finally managed to work on a new release of IDE plugin for @nim_lang 👑 Improved debugging experience, compatibility with newest JB IDEs and support for custom toolchains. Available on JetBrains marketplace: plugins.jetbrains.com/plugin…
Today endler.dev/2017/yes/ was brought to my attention. Thanks for such a good explanation @matthiasendler!!
My system:
- GNU Yes: 6.60GiB/s
- Rust version (optimized): 5.74GiB/s
- In @nim_lang: 6.24GiB/s (only adding buffering over the naïve version which was ~60MiB/s).
I am happy to announce that @tacen_app is now a sponsor for @nim_lang !
We use Nim extensively at Tacen, and I love working with the language.
opencollective.com/nim
Shout out to @digitalocean for sponsoring us for another year. They gift us free servers to host our website, forum, the Nim playground and more. We really appreciate their support!
What are your thoughts on style insensitivity in Nim? Was it a blocker from you trying/using Nim?
We're currently considering getting rid of it for v2: github.com/nim-lang/RFCs/iss….
#python
from random import choice
t = ""
s = " ▁▂▃▄▅▆▇█"
z = 0
for i in range(5000):
z += choice([-1, 1])
if z < 0:
z = z + 2
elif z >= len(s):
z = z - 2
t += s[z]
print(t)