I hereby claim:
- I am sammyherring on github.
- I am sammy_herring (https://keybase.io/sammy_herring) on keybase.
- I have a public key ASDlYEu05CkOzFaUv4EVO1haDDOQ6oRessQIIm2-XjHtmAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| https://bootstrap.pypa.io/get-pip.py |
| parent = dict() | |
| rank = dict() | |
| def make_set(vertice): | |
| parent[vertice] = vertice | |
| rank[vertice] = 0 | |
| def find(vertice): | |
| if parent[vertice] != vertice: | |
| parent[vertice] = find(parent[vertice]) |
| ### Lists as Stacks (LIFO) | |
| stack = ["a", "b", "c"] | |
| # add an element to the end of the list | |
| stack.append("e") | |
| stack.append("f") | |
| print (stack) | |
| # pop operation | |
| stack.pop() | |
| print (stack) | |
| # pop operation |
| #Import Random Module for Array Generation | |
| import random | |
| #BubbleSort Algorithm for given array in parameters | |
| def bubbleSort(listsort): | |
| for num in range(len(listsort)-1,0,-1): | |
| for i in range(num): | |
| if listsort[i]>listsort[i+1]: | |
| x = listsort[i] | |
| listsort[i] = listsort[i+1] |
| sudo groupadd -f -g33 www-data | |
| sudo apt-get update | |
| sudo apt-get install apache2 php5 libapache2-mod-php5 | |
| sudo apt-get install mysql-server mysql-client php5-mysql | |
| sudo apt-get install phpmyadmin | |
| sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl apt-show-versions python | |
| mkdir webmin | |
| cd webmin | |
| wget http://prdownloads.sourceforge.net/webadmin/webmin-1.870.tar.gz |
| @ECHO OFF | |
| start | |
| END |