Salinger, Jerome David: The Catcher in the Rye
Salinger, Jerome David: The Catcher in the Rye
Icons for AutoKey (GTK UI) 0.71.0
Change your Autokey Notification Icon, so it fits your Theme!
Screenshot of the Ambiance Theme

Screenshot of the Radiance Theme

Download your desired icon file and open the target folder.
Press the keys ALT + F2 and enter
gksu nautilus /usr/share/pixmaps
Overwrite the akicon-status.png this folder with your desired icon file.
In the “AutoKey – Preferences” for “Notification icon style:” you need to select “Grayscale”.

In order to see the new icon you need to restart AutoKey.
Downloads
Project: Steam Activities!

About: Steam Activities!
Show Steam Activities on your Website. On the left Side you can see an Example. The information will be refreshed every hour.
The Project parses the Steam Community Site by the User given ID and extracts all relevant Informations.
With the received Data a JavaScript is generated that the User can implement on his own Site or Blog.
The Script outputs the generated HTML Code with document.write on the Page.
To easy archive the needed Data from the Community Site the PHP Simple HTML DOM Parser is used.
About PHP Simple HTML DOM Parser.
- A HTML DOM parser written in PHP5+ let you manipulate HTML in a very easy way!
- Require PHP 5+.
- Supports invalid HTML.
- Find tags on an HTML page with selectors just like jQuery.
- Extract contents from HTML in a single line.
AutoKey PPA and Icon Installer for Ubuntu
Since the current AutoKey Version shipped with Ubuntu Linux 10.04 Lucid Lynx is an outdated one, i found an easy way to get a newer one through the PPA of Chris Dekter from the AutoKey Project.
If you are not so familiar with installing through PPA i made a set of install scripts. You can also easy switch the theme icons i mentioned earlier.
![]()
Make sure you remove any installed autokey packages before you install the PPA Version!
Do not forget to restart AutoKey after you made any changes.
Download
AutoKey Install Helper Package
Scripts
install_autokey-gtk.sh
#!/bin/bash mkdir backup cp ~/.config/autokey/* backup/ gksu add-apt-repository ppa:cdekter/ppa sudo apt-get install autokey-common autokey-gtk
install_autokey_ambiance.sh
#!/bin/bash
autokeynotifier="/usr/share/pyshared/autokey/gtkui/notifier.py"
autokeyicons="/usr/share/pixmaps/"
themeicon="akicon-status-ambiance.png"
command="cp $themeicon $autokeyicons"
eval gksu "$command"
pattern=`awk -F\" '/STATUS_ICON_FILE = /{print $2}' $autokeynotifier`
command="sed -i 's,$pattern,$autokeyicons$themeicon,g' $autokeynotifier"
eval sudo "$command"
install_autokey_radiance.sh
#!/bin/bash
autokeynotifier="/usr/share/pyshared/autokey/gtkui/notifier.py"
autokeyicons="/usr/share/pixmaps/"
themeicon="akicon-status-radiance.png"
command="cp $themeicon $autokeyicons"
eval gksu "$command"
pattern=`awk -F\" '/STATUS_ICON_FILE = /{print $2}' $autokeynotifier`
command="sed -i 's,$pattern,$autokeyicons$themeicon,g' $autokeynotifier"
eval sudo "$command"
install_autokey_default.sh
#!/bin/bash
autokeynotifier="/usr/share/pyshared/autokey/gtkui/notifier.py"
autokeyicons="/usr/share/pixmaps/"
themeicon="akicon.png"
gksu echo
pattern=`awk -F\" '/STATUS_ICON_FILE = /{print $2}' $autokeynotifier`
command="sed -i 's,$pattern,$autokeyicons$themeicon,g' $autokeynotifier"
eval sudo "$command"
Die Datei hiberfil.sys entfernen

Die Kommandozeile mit Administrationsrechten starten.
cmd.exe
Zum entfernen der hiberfil.sys folgendes eingeben.
powercfg -h off
Zum wieder einschalten der Tiefschlaffunktion folgendes eingeben.
powercfg -h on
Zugriff auf Mail Dienste von der Konsole

Erstellen von MIME Code für den SSL Zugriff
printf "{Benutzername}" | mimencode
printf "{Passwort}" | mimencode
Verbindung zu einem SMTP Server
netcat localhost smtp quit
Verbindung zu einem SMTP Server mit SSL
openssl s_client -connect localhost:smtps
auth login
{Benutzername als MIME Code}
{Passwort als MIME Code}
mail from: {Absender}
rcpt to: {Empfänger}
data
{Nachricht}
.
quit
Verbindung zu einem IMAP Server
netcat localhost imap
. login {Benutzername} {Passwort}
. list "" "*"
. status inbox (messages)
. capability
. logout
Verbindung zu einem IMAP Server mit SSL
openssl s_client -connect localhost:imaps
. login {Benutzername} {Passwort}
. list "" "*"
. status inbox (messages)
. capability
. logout
Verbindung zu einem POP3 Server
netcat localhost pop3
user {Benutzername}
pass {Passwort}
list
quit
Verbindung zu einem POP3 Server mit SSL
openssl s_client -connect localhost:pop3s
user {Benutzername}
pass {Passwort}
list
quit
Verbindung zu einem SIEVE Server
netcat localhost sieve logout
Ein Auszug aus /etc/protocols zeigt die Protokolle für Mail Dienste.
| Name | Port/Protokoll | Alt. Name | Beschreibung |
|---|---|---|---|
| smtp | 25/tcp | ||
| ssmtp | 465/tcp | smtps | # SMTP over SSL |
| imap2 | 143/tcp | imap | # Interim Mail Access P 2 and 4 |
| imap2 | 143/udp | imap | |
| imap3 | 220/tcp | # Interactive Mail Access | |
| imap3 | 220/udp | # Protocol v3 | |
| imaps | 993/tcp | # IMAP over SSL | |
| imaps | 993/udp | ||
| pop3 | 110/tcp | pop-3 | # POP version 3 |
| pop3 | 110/udp | pop-3 | |
| pop3s | 995/tcp | # POP-3 over SSL | |
| pop3s | 995/udp | ||
| cisco-sccp | 2000/tcp | sieve | # Cisco SCCP |
Fix Firefox MIME Type Icons

The Problem
In order to show the error i made some screenshots from an RSS view in Firefox.
As you can see the MIME Icon is missing.
The image source link from the source code.
moz-icon://goat?size=16&contentType=audio/mpeg
The Fix
The MIME Icon is shown after the fix. As you can see it is an audio icon.
The problem is that Firefox can’t find the MIME type icons. This Shell-Script copies the MIME icons from the Humanity Icon Theme into the .icons folder in your home directory so Firefox can find them.
#!/bin/bash
ISOURCE=/usr/share/icons/
ITHEME=Humanity
for size in 16 22 24 32 48;
do
mkdir -p $HOME/.icons/$ITHEME/mimes/$size;
for file in $ISOURCE/$ITHEME/mimes/$size/*.svg;
do
ln -s $file $HOME/.icons/$ITHEME/mimes/$size/`basename $file .svg`.png;
done;
done;
Script Author: Ilja Sekler
Create a new script file and run it in your terminal or download it and run it in your terminal.
Mehr…
Tilt & Shift Art
Create your own Tilt & Shift Photos with the online TiltShift Generator. Above are some Photos i run through the Generator.


Keith Loutit is an great Artist in the making of Tilt & Shift Videos you can watch them von Vimeo.
Bathtub II from Keith Loutit on Vimeo. He now got his own page where you also can watch his work.
AutoKey Status Icons for Ubuntu 10.04 Lucid Lynx
A set of icons for AutoKey on the Gnome Desktop with Ubuntu Linux 10.04.
Screenshot of the Ambiance Theme

Screenshot of the Radiance Theme

Step 1
Download the icon file and open the target folder.
Press the keys ALT + F2 and enter
gksu nautilus /usr/share/pixmaps
Copy the desired *.png file into this folder.
Step 2
Press the keys ALT + F2 and enter
gksu gedit /usr/share/pyshared/autokey/gtkui/notifier.py
now change the line
STATUS_ICON_FILE = "/usr/share/pixmaps/akicon.png"
to
STATUS_ICON_FILE = "/usr/share/pixmaps/akicon-status-radiance.png"
or
STATUS_ICON_FILE = "/usr/share/pixmaps/akicon-status-ambiance.png"
Step 3
In order to see the new icon you need to restart AutoKey.
Downloads
Further Informations of AutoKey
Windows 7 “sendto” Folder

If you like to edit the sendto folder in Windows 7 you need to type:
shell:sendto






