Added some images
|
@ -150,3 +150,12 @@ article .header {
|
|||
font-size: 1.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
p img {
|
||||
text-align: center;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
display: block;
|
||||
width: 70%;
|
||||
height: 70%;
|
||||
}
|
||||
|
|
Before Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 199 KiB |
After Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 150 KiB |
After Width: | Height: | Size: 936 KiB |
After Width: | Height: | Size: 124 KiB |
After Width: | Height: | Size: 666 KiB |
After Width: | Height: | Size: 83 KiB |
After Width: | Height: | Size: 465 KiB |
|
@ -14,7 +14,9 @@ field is one of my main motivations in my life.
|
|||
### How I started
|
||||
|
||||
I started to programming at 18 years old, when I could have my first decent
|
||||
computer, and started to make small videogames with *Lua*.
|
||||
computer, and started to make small videogames with *Lua* and *Love2D*.
|
||||
|
||||
![](../images/lua&love.png)
|
||||
|
||||
One year after I have started to open more in this world, programming in
|
||||
*C* and *C++* and programming other type of things.
|
||||
|
@ -26,6 +28,8 @@ which I learned a lot of fantastic stuff like:
|
|||
- *Scheme*, a lisp dialect and a beautiful language.
|
||||
- Recursivity and iterativity.
|
||||
|
||||
![](../images/sicp.png)
|
||||
|
||||
### Moving towards Haskell and functional programming
|
||||
|
||||
Months after that, I became interested in *Haskell*. It impressed me
|
||||
|
@ -41,6 +45,8 @@ quicksort (p:xs) = (quicksort lesser) ++ [p] ++ (quicksort greater)
|
|||
greater = filter (>= p) xs
|
||||
```
|
||||
|
||||
![](../images/haskell.png)
|
||||
|
||||
I started to learn it slowly, and nowadays I'm still learning some things,
|
||||
and using it for my projects.
|
||||
|
||||
|
@ -49,6 +55,8 @@ and using it for my projects.
|
|||
While I was learning Haskell, two languages caught my attention: *Rust* and
|
||||
*Python*.
|
||||
|
||||
![](../images/rust&python.png)
|
||||
|
||||
*Rust* is a systems programming language (like *C* and *C++*), but with lots
|
||||
of nice things, and it has not the flaws that the other two have.
|
||||
|
||||
|
|