Text to picture
Hey guys, I created a web visualisation for w2vec translated text. It basically generates a picture from your text using w2vec representations for words and a chosen palette. [Continue Reading..]
Hey guys, I created a web visualisation for w2vec translated text. It basically generates a picture from your text using w2vec representations for words and a chosen palette. [Continue Reading..]
I created a small web app that helps birders get better at recognizing birds: pasarila.raduangelescu.com [Continue Reading..]
The Goal: Given a starting “sentence” (string) reach the goal “sentence” (string) by only applying the rules below.
Rule | Example |
---|---|
Mx -> Mxx: | MIIU -> MIIUIIU |
xI -> xIU: | MIIUI -> MIIUIU |
xIIIy -> xy: | MUIUIIIU -> MUIUUU |
xUUy -> xy: | MUIUUIIIU -> MUIIIIU |
x and y represent any character strings and M, U, I represent the actual letters, the arrow may be read as “becomes”.
For example the first rule can be read: Any string that ends in M becomes M and two times the reminder.
Try it, I will be waiting here :). [Continue Reading..]
This weeks short and sweet project is actually a CHIP-8 emulator. Check it out ! [Continue Reading..]
I guess everybody knows what a polynomial is.
Polynomials are really cool and used all over the place in programming. Evaluating a polynomial is really important, so how should we do it?
First of all lets see how the polynomial function looks like:
\(a_n x^n + a_{n-1} x^{n-1} + \dots + a_2 x^2 + a_1 x + a_0\) ... [Continue Reading..]
See the Differential Evolution process of getting the coefficients of our quartic polynomial right! [Continue Reading..]
This weekend I was looking into d3js. I saw a lot of cool visualizations on the web that used d3js and was actively searching for something good for rendering data in javascript.
I started learning the basics and while doing this I said to myself I should actually do something ... [Continue Reading..]