Skip to content

Commit

Permalink
Wrote up the initial page.
Browse files Browse the repository at this point in the history
  • Loading branch information
Emil Hernvall committed May 3, 2011
1 parent 9e5289b commit 20f7a50
Showing 1 changed file with 111 additions and 6 deletions.
117 changes: 111 additions & 6 deletions index.html 100644 → 100755
Expand Up @@ -2,15 +2,120 @@
<head>
<title>Emil Hernvall</title>
<style type="text/css">

body {
font-family: Arial;
margin: 0 auto;
width: 800px;
}
</style>
</head>
<body>
<h1>Welcome to my github page</h2>

<a href="http://stackoverflow.com/users/73772/emil-h">
<img src="http://stackoverflow.com/users/flair/73772.png" width="208" height="58" alt="profile for Emil H at Stack Overflow, Q&A for professional and enthusiast programmers" title="profile for Emil H at Stack Overflow, Q&A for professional and enthusiast programmers">
</a>
<div id="wrapper">
<h1>Emil Hernvall</h1>

<p>
I'm a Swedish guy in my mid twenties. For the past few years I've worked as a programmer
and architect for a company called <a href="http://quench.at/">Quench</a>. We develop
price comparison technology, which can be licensed as a web service. I have no formal
education in programming. Rather I've studied chemistry and engineering physics
at the Royal Institute of Technology in Stockholm and at Uppsala University. Despite
that I've always considered myself primarily a programmer, and I've made an effort
to pick up what I would have learned had I attended a computer science education.
</p>

<p>
I spent several years as a PHP developer before seeing the light. Now I avoid PHP
when I can and prefer Python, Java or C/C++ instead. Lately I've been trying to learn
Haskell as well.
</p>

<p>
Although not as much nowadays, I used to be an active member at Stack Overflow. You can
check out my profile below.
</p>

<a href="http://stackoverflow.com/users/73772/emil-h">
<img src="http://stackoverflow.com/users/flair/73772.png" width="208" height="58">
</a>

<h2>Projects</h2>

<p>
I've uploaded a few of my experiments from the last few years to github. Smaller
things are available as <a href="http://gist.github.com/EmilHernvall">gists</a>.
Somewhat larger projects are uploaded as regular repositories and can be accessed
from my <a href="http://github.com/EmilHernvall">Github profile</a>.
</p>

<h3>Candify</h3>

<img src="http://github.com/EmilHernvall/candify/raw/master/candify.png" width="800" />

<p>
A visualizer framework for spotify, using the official libspotify. Includes some
simple FFT-based visualizers, that works somewhat well. Should be easily extendable.
Uses the windows DirectDraw API.
<a href="https://github.com/EmilHernvall/candify">Code is here.</a>
</p>

<h3>Cropper</h3>

<img src="http://github.com/EmilHernvall/cropper/raw/master/cropper.png" width="800" />

<p>
Simple program to crop images quickly. Written using WinApi and GDI+.
<a href="http://github.com/EmilHernvall/cropper">Code is here</a>.
</p>

<h3>Collapsible</h3>

<img src="http://github.com/EmilHernvall/collapsible/raw/master/collapsible.jpg" />

<p>
Horrendously ugly tetris clone. WinApi and DirectDraw.
<a href="https://github.com/EmilHernvall/collapsible">Code is here.</a>
</p>

<h3>FatCat</h3>

<p>
A java implementation of an irc server. Currently no support for linking
other servers, and also no services. Both will hopefully be fixed eventually.
<a href="https://github.com/EmilHernvall/fatcat">Code is here.</a>
</p>

<h3>Project Euler Solutions</h3>

<p>
Solutions for the hundred first <a href="http://projecteuler.net/">Project Euler</a>
or so. <a href="https://github.com/EmilHernvall/projecteuler">Code is here.</a>
</p>

<h3>Mosaic</h3>

<a href="http://blog.c0la.se/examples/mosaic/samples/raven.jpg">
<img src="http://blog.c0la.se/examples/mosaic/samples/raven.jpg" height="300" />
</a>

<p>
A small unix program that constructs an image mosaic from a source image
and a collection of smaller images (mosaic bricks).
<a href="https://github.com/EmilHernvall/mosaic">Code is here.</a>
</p>

<h3>Calculator</h3>

<p>
A java program that evaluates arbitrary mathematical expressions.
Also includes some primitive plotting capabilities.
<a href="https://github.com/EmilHernvall/calculator">Code is here.</a>
</p>

<h2>Contact</h2>

<p>
You can get in contact with me using my gmail. My username is emil.hernvall.
</p>
</div>
</body>
</html>

0 comments on commit 20f7a50

Please sign in to comment.