Stigebil

Here, Hare, Here


public static void tarGz(final List filesToCompress, final File destination) {
TarArchiveOutputStream tarOut = null;
byte[] buf = new byte[BUFFER_SIZE];
try {
tarOut = new TarArchiveOutputStream(
new GZIPOutputStream(new BufferedOutputStream(new FileOutputStream(destination))));
tarOut.setLongFileMode(TarArchiveOutputStream.LONGFILE_GNU);
for (File fileToCompress : filesToCompress) {
TarArchiveEntry entry = new TarArchiveEntry(fileToCompress.getName());
entry.setSize(fileToCompress.length());
tarOut.putArchiveEntry(entry);
FileInputStream input = new FileInputStream(fileToCompress);
int len;
while ((len = input.read(buf)) > 0) {
tarOut.write(buf, 0, len);
}

tarOut.closeArchiveEntry();
input.close();
}
tarOut.close();
} catch (IOException e) {
LOG.error("Could not tarGz file " + destination, e);
} finally {
IOUtils.closeQuietly(tarOut);
}
}

Google may harm your computer

Google decieded today that entire internet was dangerous including their own site. This is the result I got when I searched for google using google

google-harm

How to turn off/disable torrents in Opera.

Type in opera:config into the address bar. This takes you to a opera config web page. Choose the menu BitTorrent. Uncheck the Enable checkbox and save.

Disable caps lock in Ubuntu

/usr/bin/xmodmap -e "clear lock"

Find application using a port

To find the pid:

# fuser -n tcp 8080
8080/tcp: 1708

# ps aux | grep 1708
tomcat 1708 1.7 10.6 667040 86280............

Or


# netstat -nlp

javax.transaction:jta:jar:1.0.1B

Maven is complaining that it cannot find the javax.transaction:jta:jar:1.0.1B when trying to use Hibernate. This file is not in mvn repository. Probarbly because of the lisence and needs to be downloaded manually and added to the local repository.
Download it from here


mvn install:install-file -Dfile=./jta-1_0_1B-classes.zip -DgroupId=javax.transaction \
-DartifactId=jta -Dversion=1.0.1B -Dpackaging=jar

Utvida norsk tastatur på mac

Jeg har nettopp fått meg ny jobbemaskin som er en macbook pro. Dette er min første mac og sliter snart av meg håret i frustrasjonen over å ikke finne de tastene jeg er vant til å finne. Heldigvis fant jeg denne fine sida som beskriver det utvidede tastaturet med norsk layout.

Eclipse: Workspace in use

I got an error message when trying to open a workspace in Eclipse. It said “Workspace in use”, but I hade no instances of Eclipse. To solve this:

  • Go to the .metadata folder in your workspace directory
  • Delete the .lock file

  • Sold

    The house where I grew up to become the freak I am today are now sold.

    SOLD: My childhood home.

    My mother is moving out and selling the house I learnt to walk and where I lived my first 18 years of my life. It was and always be my real home. It is both sad and with great joy to see the house up for sale. After all it holds over 30 years of my familys history, but it will be good for my mum to move somewhere more central. It defintly was a good house for me.

    For Sale

    Gressveien 1
    living room

    More pictures here

    Design a site like this with WordPress.com
    Get started