Added some images

This commit is contained in:
Suguivy 2021-03-03 00:27:00 +01:00
parent e1102d887f
commit 026c13412a
11 changed files with 18 additions and 1 deletions

View File

@ -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%;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

BIN
images/haskell.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 KiB

BIN
images/haskell_orig.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

BIN
images/lua&love.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

BIN
images/lua&love_orig.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 936 KiB

BIN
images/rust&python.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

BIN
images/rust&python_orig.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 666 KiB

BIN
images/sicp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

BIN
images/sicp_orig.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 465 KiB

View File

@ -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.