Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am dpappa on github.
* I am dpappa (https://keybase.io/dpappa) on keybase.
* I have a public key whose fingerprint is 2EC2 0F95 D53A FA41 5CB0 ABCE A884 47FE FEBD 00BA
To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am dpappa on github.
  • I am dpappa (https://keybase.io/dpappa) on keybase.
  • I have a public key whose fingerprint is EE8A C419 159C CC7F E0F5 DA8D 8DD9 4211 DECD 419D

To claim this, I am signing this object:

# Install linux update, followed by GCC and Make
sudo yum -y update
sudo yum install -y gcc make
# Install Nginx and PHP-FPM
sudo yum install -y nginx php-fpm
# Install PHP extensions
sudo yum install -y php-devel php-mysql php-pdo \
php-pear php-mbstring php-cli php-odbc \
@dpappa
dpappa / lab_practice1.cpp
Last active August 29, 2015 14:01
Insertion Sort
//main
#include <iostream>
#include <string>
#include <fstream>
#include <vector>
using namespace std;
#define sourcefilepath "unsorted.txt"
#define destinationfilepath "sorted.txt"