The Matrix Contents
1 What is the Matrix
2 Resisting the Matrix
3 Subverting the Matrix
3.1 Gift Culture
3.2 Information Anarchy
3.3 The Anonymous Internet Economy
sudo apt install build-essential libssl-dev libpcre3 libpcre3-dev binutils libproj-dev gdal-bin python3-pip postgresql-client | |
sudo -H pip3 install virtualenvwrapper | |
#bashrc | |
VIRTUALENVWRAPPER_PYTHON='/usr/bin/python3' | |
source /usr/local/bin/virtualenvwrapper.sh | |
export WORKON_HOME=$HOME/.virtualenvs |
First Name | Last Name | Email Address | Company | Position | |
---|---|---|---|---|---|
Gianmarco | Passalacqua | [email protected] | Rockstar Coders | Vice President Human Resources | |
Craig | Wilcock | [email protected] | IT Recruitment Works | Senior Technical Consultant - Headhunter | |
Veronica | Gimenez | [email protected] | Globant | Talent Acquisition Manager | |
ruchi | saxena | [email protected] | Pyramid Consulting, Inc | AM-Recruitment | |
Soledad | Heguy | [email protected] | BairesDev | Recruiting Manager | |
Luisanna | Moreau | McKinsey & Company | MBA Recruiter | ||
Catalina | Velez | [email protected] | Huge | Talent Director | |
Martina | Pifarre | [email protected] | Globant | Recruiting Team Lead | |
Valentín | Martínez | [email protected] | WAVSYS | SR IT and Oil&Gas Recruiter |
The Matrix Contents
1 What is the Matrix
2 Resisting the Matrix
3 Subverting the Matrix
3.1 Gift Culture
3.2 Information Anarchy
3.3 The Anonymous Internet Economy
shape_types = { | |
"point": "Point", | |
"linestring": "LineString", | |
"polygon": "Polygon", | |
"multipoint": "MultiPoint", | |
"multilinestring": "MultiLineString", | |
"multipolygon": "MultiPolygon", | |
"geometrycollection": "GeometryCollection" | |
} |
#!/bin/bash | |
if [[ $(echo $*) ]]; then | |
searchterm="$*" | |
else | |
read -p "Enter your search term: " searchterm | |
fi | |
searchterm=$(echo $searchterm | sed -e 's/\ /+/g') | |
open http://www.google.com/search?q=$searchterm | |