Javascript
-
Converting Slovak text to Braille
My visually-impaired friend asked me for help in developing a conversion tool for the Slovak text into the Braille code. The idea was to convert the text into an equivalent Unicode Braille pattern . …5 min read - javascript interactiveWriting a Forth interpreter - part 2
In the first part I started to describe a simple Forth interpreter. I eventually completed it and made it more usable - so in this part I’d like to get into the details of the interpreter mode, …Writing a Forth interpreter - part 1
Forth the language Forth is a funny language. One of the so-called stack languages, it doesn’t really care about types, isn’t functional or object-oriented. It also has very easy syntax - identifiers …