Skip to content

Instantly share code, notes, and snippets.

View albertogalan's full-sized avatar

Alberto F Galan albertogalan

  • Madrid
View GitHub Profile

University of Alcala de Henares

World University Ranking

Number of students : 19,438

QS Global Ranking: 481

Status: Public

Alberto Galan Bio

Alberto Galan is a Steam Teacher, expertise in Cybernetics and Neurolinguistic Programming (NPL), a famous methodology to increase the efficiency in learning and achieve the excelence. Through Anchoring, persuading and couching techniques makes the students to learn a faster pace discovering their potential growth.

He maintains connection with NASA engineers co-investigators in Mars 2020 Mission. Additionally has more than 20 years of experience in different fields as Biotechnology ( Switzerland, Biorad ), Automated Warehouses ( Switzerland, Kardex ), High Voltage Power Systems ( China, Grandtop ), received education from Spai

Alberto Galan Bio

Alberto Galan is a Steam Teacher, expertise in Cybernetics and Neurolinguistic Programming (NPL), a famous methodology to increase the efficiency in learning and achieve the excelence. Through Anchoring, persuading and couching techniques makes the students to learn a faster pace discovering their potential growth.

He maintains connection with NASA engineers co-investigators in Mars 2020 Mission. Additionally has more than 20 years of experience in different fields as Biotechnology ( Switzerland, Biorad ), Automated Warehouses ( Switzerland, Kardex ), High Voltage Power Systems ( China, Grandtop ), received education from Spain and England Universities and working with Spanish, German, Switzerland and Norway Entrepreneurs.

Alberto actively participates in Hacker and Colearning communities: Coderbunker (2015-now) Linux Colearning Leader, teaching advanced computer skills. Biohacker Barcelona (2014) organizing and collaborating to create laboratory machines.

He i

#!/bin/bash
if [[ $# -eq 0 ]]; then
echo "$red This command $reset"
echo "Usage: ${FUNCNAME[0]} $green {word} $reset"
exit 0
fi
word="$1"

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@albertogalan
albertogalan / linkedin_extract.py
Created April 9, 2019 08:00 — forked from lobstrio/linkedin_extract.py
Scraping Linkedin profiles information through Selenium Python
# python package
import csv
import time
import random
import sys
import os
# selenium package
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
@albertogalan
albertogalan / linkedin_scraper.py
Created April 9, 2019 07:57 — forked from scrapehero/linkedin_scraper.py
Python script to scrape a company details from a public company page on LinkedIn.com. Written as part of How to Scrape educational post - https://www.scrapehero.com/tutorial-scraping-linkedin-for-public-company-data/
from lxml import html
import csv, os, json
import requests
from exceptions import ValueError
from time import sleep
def linkedin_companies_parser(url):
for i in range(5):
try:
#!/bin/bash
# create a new issue if not found (requires hub cli client)
# checks brew and cargo for homepage + description
function tld {
tldr $* 2>/dev/null && return
local repo=~/code/tldr # replace with location to tldr repo
local info=("${(@f)$(brew info --json=v1 $1 2>/dev/null | jq -r '.[].homepage,.[].desc')}")
test $#info -gt 1 || info=("${(@f)$(cargo show $1 2>/dev/null | awk '/^homepage|description/ { $1=""; print }')}")