Category Archives: tips and tricks
To quickly test an imap server using telnet
telnet server 143 01 LOGIN username password 02 LIST “” * 03 SELECT mailbox Line 02 shows you all available mailboxes. To show the information about a mailbox: 04 STATUS mailbox (MESSAGES) Between () you can place one or more … Continue reading
Nokia 5230 isync plugin
Shockingly it doesn’t exist on the Nokia website and the telephone doesn’t appear in the list of the supported! The solution: 1- Download and unzip this: Nokia 5230 isync plugin 2- Place the bundle in “/Library/PhonePlugins/” (create it if it … Continue reading
Using R for Introductory Statistics
Data Quickly entering in small data sets is the c function: >typos = c(2,3,0,3,1,0,0,1) >typos [1] 2 3 0 3 1 0 0 1 Note: The assignment operator is a = and it can be a <- [1] indicates the … Continue reading
The ssl perfect guide
Unfortunately this website doesn’t have a name, nerthless the explanations are really accurate: http://209.197.80.93/article/setting-ssl-certificates-apache
Configuring PostFix
Once postfix is running… it is better to store the main.cf in a post! I spent to much time # See /usr/share/postfix/main.cf.dist for a commented, more complete version # Debian specific: Specifying a file name will cause the first # … Continue reading
Accelerometers and Flight Dynamics
roll = -arctan2(acceleration.x, -acceleration.z); pitch = arctan2(acceleration.y, -acceleration.z);
Dev Team releases free iPod touch 2G jailbreak
Well, that didn’t take long — hot on the heels of the $15 NitroKey Slipstream iPod touch 2G jailbreak, the Dev Team’s released their free version. Continue
Debian 5.0 Lenny released!
Wow wow wow wow wow! A new release have been burned out… cool guys cool! We can’t wait to update our servers. Let’s take a look on what this release will bring us.
Connect POP3 account via telnet
Ok… it happens sometimes we need to check our pop3 account and we don’t really want to configure our mail client. The solution is to just open our terminal and telnet it: telnet mail.scoditti.com 110 Trying 82.246.188.84… Connected to mail.scoditti.com. … Continue reading