原创 MySQL 5.5 installation

tar xf mysql-5.5.49.tar.gzcd mysql-5.5.49cmake -DCMAKE_INSTALL_PREFIX=/webapp/marlonm/mysql5.5.49 .makemake installcd /w

原创 Git Installation

1) Install Dependencies    sudo yum install yum install curl-devel expat-devel gettext-devel   openssl-devel zlib-devel 

原创 Flask

$ export FLASK_APP=hello.py $ flask run --host=0.0.0.0 * Running on http://127.0.0.1:5000/$ export FLASK_APP=hello.py $ 

原创 python 3 socket

server.py:import socketdef main():    host = '127.0.0.1'    port = 5000    server_socket = socket.socket()    server_soc

原创 awk

1, shell var$ word=world$ echo hello | awk '{ print $1,$word; }'  # Both are treated as awk variables, so it