Tag Archives: code
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
Show Available Disk Space on Linux
df -h
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
Simply personalize PRE and CODE tags
It happens to write some code in a post… I found a fast-to-implement solution by visiting the wordpress codex and I personalized it with another comment found in the web! So I actually modified/added two css style in my theme … Continue reading
Correct WordPress Private Link behavior
In wordpress 2.7.1 the private link have a strange behavior, or at least different from the private post one! In order to correct it, we need to modify “post.php” and “classes.php”! Here is a nice How To, but it modifies … Continue reading