diff --git a/css/default.css b/css/default.css index 900c61e..bbfe52b 100644 --- a/css/default.css +++ b/css/default.css @@ -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%; +} diff --git a/images/haskell-logo.png b/images/haskell-logo.png deleted file mode 100644 index 97c0937..0000000 Binary files a/images/haskell-logo.png and /dev/null differ diff --git a/images/haskell.png b/images/haskell.png new file mode 100644 index 0000000..3404dcb Binary files /dev/null and b/images/haskell.png differ diff --git a/images/haskell_orig.png b/images/haskell_orig.png new file mode 100644 index 0000000..6115d88 Binary files /dev/null and b/images/haskell_orig.png differ diff --git a/images/lua&love.png b/images/lua&love.png new file mode 100644 index 0000000..1b408b3 Binary files /dev/null and b/images/lua&love.png differ diff --git a/images/lua&love_orig.png b/images/lua&love_orig.png new file mode 100644 index 0000000..8bc78e1 Binary files /dev/null and b/images/lua&love_orig.png differ diff --git a/images/rust&python.png b/images/rust&python.png new file mode 100644 index 0000000..f156ff9 Binary files /dev/null and b/images/rust&python.png differ diff --git a/images/rust&python_orig.png b/images/rust&python_orig.png new file mode 100644 index 0000000..2299d77 Binary files /dev/null and b/images/rust&python_orig.png differ diff --git a/images/sicp.png b/images/sicp.png new file mode 100644 index 0000000..7f46841 Binary files /dev/null and b/images/sicp.png differ diff --git a/images/sicp_orig.png b/images/sicp_orig.png new file mode 100644 index 0000000..07934b1 Binary files /dev/null and b/images/sicp_orig.png differ diff --git a/posts/2021-02-28-my-first-post-and-introduction.markdown b/posts/2021-02-28-my-first-post-and-introduction.markdown index bfa2362..78cc7ae 100644 --- a/posts/2021-02-28-my-first-post-and-introduction.markdown +++ b/posts/2021-02-28-my-first-post-and-introduction.markdown @@ -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.