- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
- They are the people who get things done. Effective Engineers produce results.
from lxml import html | |
import requests | |
import unicodecsv as csv | |
import argparse | |
import json | |
def clean(text): | |
if text: | |
return ' '.join(' '.join(text).split()) |
#!/bin/bash | |
# One Click LAMP Server Installer (Ubuntu/Debian) - Roskus | |
# @author Gustavo Novaro | |
# @version 3.3.1 | |
# @url https://gist.github.com/gnovaro/5295150774be1794028c15c83313c16e | |
# Run: sudo ./lamp_setup.sh | |
############################################### | |
#Servidor Web http | |
apt-get install -y nginx |
{ | |
"workbench.colorTheme": "Night Owl", | |
"editor.wordWrap": "on", | |
"editor.rulers": [72,79,100], | |
"editor.cursorBlinking": "solid", | |
"editor.cursorStyle": "line", | |
"editor.renderWhitespace": "all", | |
"editor.minimap.enabled": false, | |
"terminal.integrated.fontFamily": "monospace", | |
"files.trimTrailingWhitespace": true, |
# Status update interval | |
set -g status-interval 1 | |
# Basic status bar colors | |
set -g status-bg black | |
set -g status-fg cyan | |
# Left side of status bar | |
set -g status-left-bg black | |
set -g status-left-fg green |
#!/bin/bash | |
########## | |
# contents | |
########## | |
# contents | |
# notes | |
# script setup | |
# git config files |
# Aliases | |
alias g='git' | |
alias gst='git status' | |
alias gl='git pull' | |
alias gup='git fetch && git rebase' | |
alias gp='git push' | |
alias gc='git commit -v' | |
alias gca='git commit -v -a' | |
alias gco='git checkout' | |
alias gcm='git checkout master' |
# Insomnia Configuration | |
## Run the test query | |
{ | |
shop { | |
id | |
name | |
} | |
} | |
# Query Structure Examples |