Category Archives: Software

WordPress, Drupal or Roll Your Own?

When should you use existing CMSs as WordPress or Drupal and when should you build one yourself? Of course, building a CMS from scratch would be insane but with emerging technologies and standards such as git (for version control), Markdown (for editing), Neo4J (for metadata) and Solr or ElasticSearch for indexing the data, you can [...]
Posted in Software | Leave a comment

Subversion (svn) error: “containing working copy admin area is missing”

Accidentally tried to add a folder to an svn repository with files that were already added to another svn repo. This caused some confusion for subversion and I got the error message: containing working copy admin area is missing This SO question saved me: The solution is to do: svn --force delete _dir_ On the [...]
Posted in Software | Tagged | Leave a comment

John Carmack on Software Engineering

A very good read here from game programming legend John Carmack. In real­ity in com­puter sci­ence, just about the only thing that’s really sci­ence is when you’re talk­ing about algo­rithms. And opti­miza­tion is an engi­neer­ing. But those don’t actu­ally occupy that much of the total time spent pro­gram­ming. You know, we have a few pro­gram­mers [...]
Posted in Software | Leave a comment

Drupal 7 Youtube videos as fields in content type

I have been doing quite a lot of work with Drupal 7 the last couple of months. It has its ups and downs but one thing that it always tries to do is to prevent you from having to write your own code to solve problems. It gets quite annoying then when simple things don’t [...]
Posted in Software | 12 Comments

Lean Startup Books

Speaking of books, I just set up a new blog focused on books about lean startup. In case you don’t know, a lean startup is an organization in search of a scalable business model. It is heavily influenced by the agile software movement. (I even wrote a manifesto for it! So far, I’ve only added [...]
Posted in Software | Leave a comment

Programming books

There was a thread on Hacker News about influential books for programmers. I wrote a comment which I might as well rewrite for this blog because it’s an interesting subject. So… the answer to this question depends a lot on in what stage of programming maturity you are. The thing is, I remember the exact [...]
Posted in Software | 1 Comment

Startups in Sweden

Following up on my post about working as a developer in Sweden… there was a question on Quora about hot startups in Sweden and just recently a new reply was posted with a list of a few companies. The entire thread might be worth checking out if you want to work at a cool startup.
Posted in Software | Leave a comment

Working as a programmer in Sweden

This blog ranks quite high on searches related to software in Sweden (gee, I wonder why ) so I sometimes get email from people who’s interested in moving to Sweden to work as a programmer. I just replied to such an email and thought that the answer might be interesting for others to read as [...]
Posted in Software | 3 Comments

nginx and WordPress permalinks in subfolder

I’m playing around with nginx, a light weight http server. One of the first things I tried was to get PHP and WordPress up and running on an Ubuntu 10.4 machine. To do that I followed the following instructions. First I had to get PHP working so I followed these instructions for PHP-fpm. The next [...]
Posted in Software | 1 Comment

Gotcha with jsTree

If you get the javascript error: “$.vakata.context.cnt.delegate is not a function” when using jsTree and jQuery you need to upgrade your jQuery to the latest version. I had 1.3.2 and got the error, upgraded to 1.4.2 and it works fine.
Posted in Software | 2 Comments