Quick Introduction to JSON

JavaScript Object Notation (JSON) is a lightweight standard for data interchange. It offers several advantages over XML for data interchange such as it can be used for serializing and transmitting…

vi editor

The VI editor is a screen-based editor. It is very powerful and has been around for more than a decade. Programmers are especially fond of the VI editor due to…

Using Pandas to read file data

Python library for data manipulation and analysis. It can work with many different data types including: symbol separated data (tsv, csv, etc.) ordered and unordered time series data matrix and…

PHP: How to validate email

Validating email is more difficult than one might think. Recently I found this this code at PHP.net and I feel a need to republish this to emphasize its effectiveness and…

Quick Introduction to BioPerl

BioPerl is a collection of Perl modules that facilitate the development of Perl scripts for bioinformatics. It is open source and widely used in the bioinformatics community. Bioperl provides software…

What user is apache running as?

You often need to know the username of Apache to assign proper permissions to certain files it will be accessing. To find out: You will probably see multiple users. Ignore…