Direkt zum Hauptbereich

Posts

compiz 12.04 rotating cubes flash

solved in 12.10. most fixes in 12.04 available by sudo apt-add-repository ppa:vanvugt/compiz-preproposed sudo apt-get update sudo apt-get install compiz=1:0.9.7.8-0ubuntu1vvpreproposed2 compiz-core=1:0.9.7.8-0ubuntu1vvpreproposed2 compiz-gnome=1:0.9.7.8-0ubuntu1vvpreproposed2 compiz-plugins=1:0.9.7.8-0ubuntu1vvpreproposed2 compiz-plugins=1:0.9.7.8-0ubuntu1vvpreproposed2 compiz-plugins-default=1:0.9.7.8-0ubuntu1vvpreproposed2 libdecoration0=1:0.9.7.8-0ubuntu1vvpreproposed2   http://askubuntu.com/questions/181377/compiz-unity-very-unstable-crashing-very-often-on-12-04 hold compiz with: { echo compiz hold ; echo compiz-core hold ; echo compiz-plugins hold ; echo compiz-gnome hold ; echo compiz-plugins-default hold ; echo libdecoration0 hold ; } | sudo dpkg --set-selections

Keep console application open in MS Visual C++ 2010 Express

Usually the console window closes immediately after execution. To keep it open, one could change the program and add e.g. a cin.get(). But there is a way to keep it open without changing any line: Bitte Rechtsklick den Projektnamen, und gehen Sie auf der Seite Eigenschaften bitte erweitern Sie Konfigurationseigenschaften-> Linker-> System, wählen Sie bitte die Konsole (/ SUBSYSTEM: CONSOLE) im Dropdown-SubSystem. Da, in der Standardeinstellung das leere Projekt nicht angegeben ist. http://de.softuses.com/271941 in english: Please right click your project name and go to Properties page, please expand Configuration Properties -> Linker -> System, please select Console (/SUBSYSTEM:CONSOLE) in SubSystem dropdown. Because, by default, the Empty project does not specify it. http://social.msdn.microsoft.com/Forums/en/vsdebug/thread/868551df-9d87-43cb-b24b-d8665a2ae646

Matlab license w/o system variable

A network.lic-file has to be placed within the application folder \ licenses, in my case: C:\Program Files\MATLAB\R2012a\licenses http://www.mathworks.nl/support/solutions/en/data/1-63ZIR6/index.html This license-file has the following format SERVER server_name hostid port# USE_SERVER http://www.mathworks.nl/support/solutions/en/data/1-99R6CN/index.html?solution=1-99R6CN where servername and host id can be found on the Flexlm Licenses Detail Website (Server: @ ) The host id seems to be the  volume serial number of the C:\ drive  (in cmd:> "vol c:" Volumeseriennummer (without the dash ) http://www.mathworks.nl/support/solutions/en/data/1-171PI/

migrating from kmail to thunderbird

While I gave up local mails and subordinated entirely to google meanwhile, my partner still wants to be independant and prefers local mails. Since KMail seemst to be wrecked, I have to migrate her mails to the old mbox format of thunderbird. This one-command-recipe worked for me. I replaced Archive/ by e.g. .kde/share/apps/kmail/mail/inbox and sarchive by sMBOXinbox . To import  MBOXinbox they simply have to be copied to   ~/.thunderbird/.....default/Mail/Local\ Folders . Converting Maildir to mbox via mutt Ran into an issue today where I needed to convert a Maildir containing over 50k messages to mbox format and couldn’t really find any good tools. So I found  this blog post  about using mutt to do it. Unfortunately, it converted one Maildir to another. =( One crucial piece is missing, so here is the one-liner in all its glory: $ mutt -f Archive/ -e 'set mbox_type=mbox; set confirmcreate=no; \ set delete=no; push "T.* ;sarchive "' The above convert...

prevent mythfrontend from restarting

Re: frontend restart script I think it's these lines in /usr/share/mythtv/mythfrontend.sh Code: until /usr/bin/mythfrontend.real --logfile "${MYTHFELOG}" ${MYTHFRONTEND_OPTS} RET=$? [ "$RET" = "0" -o "$RET" = "1" -o "$RET" = "254" ] do echo "Restarting mythfrontend.real..." >> "${MYTHFELOG}" notify-send -i info 'Restarting Frontend' "The front-end crashed unexpectedly (exit code $RET) and is restarting. Please wait..." 2>> "${MYTHFELOG}" done http://ubuntuforums.org/showthread.php?t=1799026

Steve Jobs 1955 - 2011

Kmymoney

Anlegen eines neuen Benutzers in aqbanking / kymmoney: BLZ: klar Bank-Server: banking.s-fints-pt-be.de/PinTanServlet Name: klar Benutzerkennung: klar (ohne C hintendran) Kundennummer: wie oben erweiterte Einstellungen: X HTTP-Version: 1.0 RDH: 1.0 HBCI-Version: 2.20 Bankschlüsselname: leer Bank signiert ihre Nachrichten : X Bank verwendet Signaturzähler: leer SSLv3 erzwingen: X Nicht BASE64 kodieren: leer

automount und nfs beispiel

Beispiel von Lorien: cat /etc/auto.nfs aman_data aman:/data aman_elements aman:/media/Elements apaus@lorien:/automount$ cat /etc/auto.master # # Sample auto.master file #[...] # +auto.master /automount /etc/auto.nfs apaus@lorien:/automount$ cat /etc/fstab # /etc/fstab: static file system information. # [...] # nfs 192.168.178.10:/data /nfs/aman_data nfs rw,soft 0 0 192.168.178.10:/media/Elements /nfs/aman_elements nfs rw 0 0

banshee sd-karte usb-stick is_audio_player

Damit Banshee einen Datenträger als mp3-player erkennt muss eine versteckte Datei eingerichtet werden Mobile Geräte synchronisieren ¶ Banshee erkennt bestimmte mobile Mediaplayer wie den iPod oder Handys wie das G1. Es gibt aber einen einfachen Weg, weitere Geräte als Mediaplayer zu deklarieren, gedacht für Handys, Speicherkarten oder externe Festplatten. Dazu muss im Wurzelverzeichnis des Gerätes eine Datei .is_audio_player angelegt werden, mit folgendem Inhalt name=2GB-MiniSD-MD-player audio_folders=MP3/ folder_depth=2 output_formats=audio/mpeg,audio/mp3,audio/x-aac,audio/ogg Dabei können die Parameter folgendermaßen angepasst werden: Variable Bedeutung audio_folders Gibt an, in welchen Ordnern die Musik gespeichert wird. Dieser Ordner muss existieren, da ansonsten Banshee den Playerinhalt nicht auslesen kann. Mehrere Ordner können durch Kommata getrennt werden. . steht dabei für die oberste Ordnerebene des Players. folder_depth Gibt an, wie tief die Ordnerhierar...