forked from kangalio/kangalio.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-me.html
More file actions
48 lines (47 loc) · 2.01 KB
/
Copy pathabout-me.html
File metadata and controls
48 lines (47 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css">
<meta charset="UTF-8">
<title>Kangalioo - About Me</title>
</head>
<body>
<ul id="navbar">
<li class="navbar-item"><a class="navbar-item-link" href="index.html">Home</a></li>
<li class="navbar-item"><a class="navbar-item-link" href="projects.html">Projects</a></li>
<li class="navbar-item"><a class="navbar-item-link" href="music.html">Music</a></li>
<li class="navbar-item"><a class="navbar-item-link" href="miscellaneous.html">Miscellaneous</a></li>
<li class="navbar-item current-navbar-item"><a class="navbar-item-link" href="about-me.html">About Me</a></li>
</ul>
<div id="content">
<span class="heading">How I came to programming</span>
<p>
(For anyone who cares)
</p>
<p>
I developed my passion for programming early - I was somewhere
around 8 years old when my father suggested trying out
the graphical programming language <a class="fancy-link" href="http://scratch.mit.edu">Scratch</a>
for fun. It got me hooked immediately, but after 3 years I switched to
Python, as I was annoyed with the limitations of Scratch. I did
some small things with it, for example a very basic text based RPG
and a chatbot with fixed responses.
</p>
<p>
Next, I discovered web development - primarily JavaScript, because
programming was still what I liked the most. But as with Python,
the biggest website I made contained nothing but an ancient-looking
calculator.
</p>
<p>
Then I switched to Java. This is the programming language I used
for my more notable projects. The ones which I am most proud of
are <a class="fancy-link" href="projects/synthesizer.html">Synthesizer</a>,
<a class="fancy-link" href="projects/launchpadInterface.html">LaunchpadInterface</a>
and <a class="fancy-link" href="projects/launchpadAPI.html">LaunchpadAPI</a>, a
newer, better, more flexible and cooler version of
LaunchpadInterface.
</p>
</div>
</body>
</html>