Flickr

www.flickr.com

Freitag, 21. August 2015

Kaufabratung: WMF LONO Filterkaffeemaschine mit Thermoskanne

Wir haben uns zur Hochzeit eine LONO Filterkaffeemaschine mit Thermoskanne von WMF schenken lassen. Leider taugt die Kaffeemaschine gar nichts. Sie sieht zwar schön aus mit ihrem Chromangan, aber sie kleckert so massiv beim gießen, dasss man sie keinem Gast in die Hand geben mag. Außerdem hält die Thermoskanne nicht war. Die Kanne wird sogar relativ warm von außen. WMF werde ich mir wohl nie wieder kaufen. Ziemlich peinlich...

Freitag, 16. Januar 2015

Dependencies / Requirements for Mailpile for Fedora 20

For installing the dependencies / requirements of Mailpile under Fedora 20 I used this command:

sudo yum install gnupg openssl python-devel libxml2-devel libxslt-devel zlibrary-devel python-jinja2 python3-jinja2 python-lxml python3-lxml python-pgpdump python3-pgpdump

It worked for my setup.

Montag, 28. Juli 2014

How to manually reset Owncloud 7 Passwords

  • Cd to your owncloud installation (e.g. /var/www/owncloud).
  • To reset e.g. admin password type: ./occ user:resetpassword admin

Montag, 30. Juni 2014

Qualitätssicherung der Mammografie

Ich hab mal einen kleinen Kalkulator für die QM Beurteilung der Mammografien gebastelt.

Donnerstag, 22. Mai 2014

Diceware

# -*- coding: undecided -*-
# Simple Diceware tool for creating passwords.
#
# This tool takes all words in /usr/share/dict and randomly selects some of them using the Ruby securerandom class. Sadly this class uses only a PRNG and not /dev/random. Be warned!
#
# For more on Diceware have a look here: https://en.wikipedia.org/wiki/Diceware
# Creative Commons License: https://creativecommons.org/licenses/by/4.0/deed.en_US
#
# Author: Bernd Brägelmann
# Timestamp: 20140113 224312

require 'securerandom'

wordlist_path="/usr/share/dict"

words = Array.new

Dir.entries(wordlist_path).each do |name|
  if name != ".." && name != "."
    file = File.new(wordlist_path+"/"+name,"r")
    while (line = file.gets)
      if line.chomp.encode("UTF-8").valid_encoding?
        words << line.chomp.encode("UTF-8").split('\W')
      end
    end
    puts "read "+wordlist_path+"/"+name
    file.close
  end
end

puts "words: #{words.length}"

100.times{
  puts words[SecureRandom.random_number(words.length)]
}

Dienstag, 26. November 2013

Gnucash sound

My monitor makes this annoying sound during my work with gnucash:
I think the sounds depends on the multiple horizontal lines shown by gnucash:

Interestingly i see peaks in the sound specturm at 3500, 7000 and 14000 Hz.


Maybe any technician can explain this phenomenon to me.

Technical details:
  • 3200x1080px
  • 96x96 dots per inch
  • Depth 24
  • GPU GeForce GTX 680 
  • Display FUS L19-5 (DFP-3), Ancor Communications Inc ASUS VE276 (DFP-0)
  • Linux version 3.5.0-43-generic (buildd@panlong) (gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ) #66-Ubuntu SMP Wed Oct 23 12:01:49 UTC 2013

Montag, 8. Juli 2013

Xotof login failed (solved)

I had to deactivate/activate the "REST API Module". Afterwards I could login again using Xotof.