The Nim programming language
61–70 of 97 posts
Re: The Nim programming language
#62Re: The Nim programming language
#63Alternatively are there other alternatives to C++ for people who have to submit C++ code into the repository?
I use other languages than C++ on a regular basis and I find it annoying to tedious the language is. So much boilerplate and repetitions.
Re: The Nim programming language
#64If anyone was interested, the markup theme is Dracula[1], which subjectively feels like the most readable highlighting theme I've ever used. [1]: https://draculatheme.com/
I've applied to Terminal.app now. Works like a charm. The only thing is that by cloning the git repo using "git clone https://github.com/dracula/terminal.app.git" it gets put into a folder called terminal.app, which is not readable when trying to import it from Terminal since it thinks it's an app. The solution is to move the Dracula.terminal file to another location before importing.
git clone https://github.com/dracula/terminal.app.git terminal-themeRe: The Nim programming language
#65Nim is the language I have always thought was a brilliant idea that I never get to use. It's a shame. Nim is to C/C++ as CoffeeScript is to JavaScript. A highly extensible template language atop a portable language with libraries for practically everything. So why haven't I hopped on the bandwagon? Outside of C++, C, and Fortran - the only way I have ever learned a new language is through using a REPL. How much of Py…
+1 to the usefulness of a REPL. Anyone know of a good one for the vanilla Java language?
Re: The Nim programming language
#66Nim is the language I have always thought was a brilliant idea that I never get to use. It's a shame. Nim is to C/C++ as CoffeeScript is to JavaScript. A highly extensible template language atop a portable language with libraries for practically everything. So why haven't I hopped on the bandwagon? Outside of C++, C, and Fortran - the only way I have ever learned a new language is through using a REPL. How much of Py…
In the Makefile itself I use entr: http://entrproject.org/
Re: The Nim programming language
#67As someone who does a lot of Python programming, I really love the idea of Nim, and I've started learning it, I just need to find some more time to get back to learning it. Given there's a pandas style + out-of-core support I'm interested in trying to use it for a lot of data extraction + cleaning + prep sort of tasks given how speedy it can be, being built on top of C...
Re: The Nim programming language
#68I dig the changes in the landing pages, but I wished the documentation pages got the same treatment. At present, the documentation is not readable easily on mobile browsers. Are you considering converting the documentation pages to responsive design too? Also the black and yellow theme looks great on the home page, but that theme loses its continuity on all the other pages. It's as if the home page was designed by a…
> Are you considering converting the documentation pages to responsive design too? Unless someone volunteers to do this it likely won't happen any time soon. As for the continuity. Not all pages can have the same "section" style, the documentation page for example is just composed of a list of links and descriptions. Of course, if you have ideas on how to improve the continuity then I'm all ears :)
But they can have the same CSS styling (colors, fonts, responsiveness, etc) that ties the whole site together.
A good example that's at the top of my mind is this: https://hugodocs.info
It works great on desktop as well as phone, and a common theme is seen all across the site.
> the documentation page for example is just composed of a list of links and descriptions.
By the documentation page, I meant a page like this: https://nim-lang.org/docs/manual.html
That's a lot of good info but is not accessible in a good way on phone.
For sort of an equivalent reference, see https://hugodocs.info/templates/base/
It has a similar collection of help pages and the design is responsive too.
Re: The Nim programming language
#69If anyone was interested, the markup theme is Dracula[1], which subjectively feels like the most readable highlighting theme I've ever used. [1]: https://draculatheme.com/
Re: The Nim programming language
#70Nim is the language I have always thought was a brilliant idea that I never get to use. It's a shame. Nim is to C/C++ as CoffeeScript is to JavaScript. A highly extensible template language atop a portable language with libraries for practically everything. So why haven't I hopped on the bandwagon? Outside of C++, C, and Fortran - the only way I have ever learned a new language is through using a REPL. How much of Py…
What makes a REPL brilliant instead of average?