06 June 2021

Vegan corn break

  • 1 dl corn kernels, frozen are fine 
  • 150 g corn flour.
  • 200 g white wheat flour.
  • 2.5 g salt
  • 3.5 g baking soda
  • 300 ml soy milk or water.
  • 15 ml lemon juice.

Set oven to 230C. While the oven is preheating, combine dry ingredients in a mixing bowl and wet ingredients in another. Once the oven is ready, mix in the liquid quickly and fold in the corn kernels. Form the dough into a boule, take a dull knife and make a deep cross across the dough. Bake for about 25 minutes rotating the tray once.


25 August 2015

"Kleinrechner V2"

Shuttle XS35GS V2
Intel Atom D525 dual core CPU
SanMax SMD-N8G68CTP-16K-D (1 x 4GB 204pin DDR3-S.O.DIMM)
Intel SSDSC2CW120A310
Debian Wheezy

09 June 2015

Mime extractor suitable for use in Evolution filter.

#!/usr/bin/perl
# http://www.perlmonks.org/?node_id=12287
# apt-get install libmime-tools-perl
# yum install perl-MIME-tools

use strict;
use MIME::Parser;
use File::Path qw(make_path);

sub read_email {
    my $dir = $ENV{'HOME'} . "/Desktop/email";
    make_path($dir) unless -d $dir;
    die unless -d $dir;

    my $parser = new MIME::Parser;
    $parser->output_dir($dir);
    my $entity = $parser->read(\*STDIN) || die "couldn't parse MIME stream";
}

&read_email();

exit 0;

07 September 2014

Getting started with KVM.



virt-install --virt-type kvm --name debian \
--ram 2048 \
--disk /home/user/vm/debian.qcow2,format=qcow2 \
--graphics vnc,listen=0.0.0.0 \
--noautoconsole \
--os-type=linux --os-variant=debianwheezy \
--cdrom=/home/user/Downloads/debian-7.6.0-amd64-netinst.iso

virsh net-start default
virsh start debian
virsh vncdisplay debian



27 August 2013

/etc/sudoers
username    ALL=(ALL:ALL) NOPASSWD: ALL

23 July 2013

"Kleinrechner"

Shuttle DS61 V1.1
Shuttle 90W AC Adapter
Intel Core i5 3470S 2.9GHz
SanMax SMD-N8G68CTP-16K-D (2 x 4GB 204pin DDR3-S.O.DIMM)
Intel SSDSC2CW120A310
Debian Wheezy*

Total cost: 61,980 JPY

Second-hand Buffalo DVSM-XL20U2 DVD writer: 1,650 JPY

*) firmware-realtek required from non-free repository




23 December 2012

How to install LaTeX in Debian.
apt-get install texlive-latex-base texlive-latex-recommended catdvi