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

Posted in Ph.D., Programming, tips and tricks | Tagged , , , , | Leave a comment

Show Available Disk Space on Linux

df -h

Posted in How To, Server, Serveradmin, Unix, shell | Tagged , , , | Leave a comment

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

Posted in OS X, Unix, tips and tricks | Tagged , , , , | Leave a comment

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

Posted in How To, Programming, Serveradmin, tips and tricks, wordpress | Tagged , , , | Leave a comment

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

Posted in tips and tricks, wordpress | Tagged , , | Leave a comment