2010-08-30
This will probably be amongst the shortest blogposts I’ll ever do, but here is:
This is a little book that I think every programmer, especially those with a little entrepreneur in their heart, should read!
http://gettingreal.37signals.com/toc.php
I had to finish it, and started 0200AM. Plan some time to spend on this
2010-06-12
What is Arduino you say?
Arduino is a user friendly open source microcontroller and environment for doing projects that require objecs with intelligence.
Additionally it is a good platform for learning programming!
(more…)
2010-06-12
This post will show you how to draw the Mandelbrot on a Canvas using JavaScript and per-pixel manipulation.
You’re more than welcome to step inside for a look! Please post a Comment if you want!
(more…)
2010-06-02
Ever heard of a library called jQuery ?
It might be the best library I’ve ever tried. Not just for JavaScript, but for any language!
So. What’s so special?
(more…)
2010-06-01
Hello programmers!
This blog will contain thoughts, discoveries, tips & tricks, opinions and some code snippets.
I’ll start with a task for you.
Figure out what this program does:
#include <iostream>
using std::cout;
using std::endl;
int main() {
int arr[10] = { 0,1,2,3,4,5,6,7,8,9 };
cout << 4[arr] << endl;
}
Post me a comment if you know the answer!
Feel free to ask questions or send requests to alexanderbrevig{at}gmail{dot}com!
//Alexander