Skip to content

Instantly share code, notes, and snippets.

View panchicore's full-sized avatar
👽

Luis Pallares panchicore

👽
View GitHub Profile
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
@panchicore
panchicore / thematrix.md
Last active June 3, 2018 15:29
Some NLP text classification tests - Anarchism

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

@panchicore
panchicore / cache.py
Last active May 11, 2018 12:09
geo shape type to geojson type lookup database
shape_types = {
"point": "Point",
"linestring": "LineString",
"polygon": "Polygon",
"multipoint": "MultiPoint",
"multilinestring": "MultiLineString",
"multipolygon": "MultiPolygon",
"geometrycollection": "GeometryCollection"
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@panchicore
panchicore / Colombia.kml.json.json.json.json.geojson
Last active May 3, 2018 12:40
Colombia UNDSS security level aggrement 05/2018
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@panchicore
panchicore / goo
Created March 19, 2018 10:22
Search from console / Open google with query string from console
#!/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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.