- 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
- Compass - Open source CSS Authoring Framework.
- Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
- Font Awesome - The iconic font designed for Bootstrap.
- Zurb Foundation - Framework for writing responsive web sites.
- SASS - CSS extension language which allows variables, mixins and rules nesting.
- Skeleton - Boilerplate for responsive, mobile-friendly development.
- jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
- Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
- AngularJS - Conventions based MVC framework for HTML5 apps.
- Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
- lawnchair - Key/value store adapter for indexdb, localStorage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
:: Possible bin path | |
:: Windows SDK | |
:: 10: C:\Program Files (x86)\Windows Kits\10\bin\x64 | |
:: 8.1: C:\Program Files (x86)\Windows Kits\8.1\bin\x64 | |
:: 8: C:\Program Files (x86)\Windows Kits\8.0\bin\x64 | |
:: 7: C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\bin | |
:: Visual Studio | |
:: 2015: C:\Program Files (x86)\Windows Kits\10\bin\x64 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Dilbert | |
""" | |
import random | |
import urllib | |
import re | |
def random_dilbert(logger): | |
""" | |
Retrieve url of a random dilbert |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
xkcd | |
""" | |
import xkcd | |
def random_xkcd(logger): | |
""" | |
Retrieve url of a random xkcd | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Fortune and cowsay | |
""" | |
import subprocess | |
def fortune_cow(logger): | |
""" | |
Run: fortune | cowsay -f $(ls /usr/share/cowsay/cows/ | shuf -n1) | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import bcrypt | |
def main(): | |
""" | |
simple script to get a hashed password from text | |
""" | |
parser = argparse.ArgumentParser() | |
parser.add_argument('--text', required=True, help='input text') |
Documentation: https://letsencrypt.readthedocs.org/en/latest/
Source on Github: https://github.com/letsencrypt/letsencrypt
Quick start guide: https://community.letsencrypt.org/t/quick-start-guide/1631
$ sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
$ sudo nano /etc/apt/sources.list.d/docker.list
------
# remove: deb https://get.docker.com/ubuntu docker main
# add:
deb https://apt.dockerproject.org/repo ubuntu-trusty main
OlderNewer