This gist's comment stream is a collection of webdev apps for OS X. Feel free to add links to apps you like, just make sure you add some context to what it does — either from the creator's website or your own thoughts.
— Erik
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
| #coding: utf-8 | |
| import feedparser | |
| import urllib | |
| import bs4 | |
| import keychain | |
| import console | |
| import pickle | |
| # Get your token at: | |
| # http://pinboard.in/settings/password |
| import argparse | |
| import json | |
| import re | |
| import os | |
| from time import time | |
| parser = argparse.ArgumentParser(description='Convert to Quiver Format') | |
| parser.add_argument("src", help="The Source File You want to Convert") | |
| args = parser.parse_args() | |
| cells = [] |
| #!/bin/bash | |
| # easily "docker exec" into a running Docker container | |
| # latest version: https://gist.github.com/ljm42/2b3bfd8ff886015bbce8 | |
| # for unRAID, place this script on your flash drive as /boot/custom/docker-shell | |
| # then add this to your go script (without the leading pound sign): | |
| # cp /boot/custom/docker-shell /usr/local/bin | |
| CONTAINERS=`docker ps | awk 'NR==1 {offset=index($0,"NAMES")};NR>1{print substr($0,offset)}' | sort -f | tr "\n" " "` |
| import requests | |
| from bs4 import BeautifulSoup | |
| import sys | |
| def get_content(url): | |
| r = requests.get(url) | |
| r.raise_for_status() | |
| return r.text |
| import json | |
| import uuid | |
| from pathlib import Path | |
| from urllib.parse import urlparse | |
| from datetime import datetime | |
| import html2text | |
| import requests | |
| from bs4 import BeautifulSoup |
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
| #! /usr/bin/env bash | |
| nbWorkers=10 | |
| wallabag_path='/var/www/app.wallabag.it' | |
| workers[0]='pocket' | |
| workers[1]='instapaper' | |
| workers[2]='readability' | |
| workers[3]='wallabag_v1' | |
| workers[4]='wallabag_v2' |