Månad: februari 2011

  • Software tools

    This post lists software tools I use more or less frequently. 7-Zip is a file archiver application which supports a wide range of formats. Agent Ransack is a file searching utility. PuTTY is a terminal emulator application which can act as a client for the SSH, Telnet, rlogin, and raw TCP computing protocols and as…

  • The big fat fiasco

    Found a series of YouTube clips from a presentation by Tom Naughton on ”how the misguided fear of saturated fat created a nation of obese diabetics”. Very interesting! Gives you something to think about next time you eat.  Part 1   Part 2   Part 3   Part 4   Part 5

  • Open innovation as an entrepreneurial strategy

    I’ll be writing my MBA thesis on open innovation as an entrepreneurial strategy. Here is a presentation by Henry Chesbrough as an introduction to the subject of open innovation.

  • Thumbs up for this RSA Animate video on motivation

  • Bash settings

    Occasionally I need to update my .bashrc file and every time I google for information on how to do different things. These are some more common things I end up putting into my .bashrc that I’ve found while googling. #Common alias alias …=’cd .. ; cd ..’ alias ..=’cd ..’ alias _=’cd -’ alias cls=’clear’…

  • A makefile template

    The following is a template for the core of a makefile that uses selected parts of the gnu make conventions which I’ve been using more frequent. SHELL = /bin/sh .SUFFIXES: .SUFFIXES: .c .o #Package pkg_name = pkg_version = 1.0 CFLAGS = -g ALL_CFLAGS = -I. $(CFLAGS) CPPFLAGS = INSTALL = install INSTALL_PROGRAM = $(INSTALL) INSTALL_DATA…