Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| # DISCLAIMER: | |
| # - Code is provided "as is" and any expressed or implied warranties are disclaimed. | |
| # - Errors and omissions excepted. | |
| # NOTE: | |
| # - Read it carefully, some commands might have to be changed for your system. | |
| # - BLAS/LAPACK compilation commands will most likely have to be changed based on the | |
| # stackoverflow link below. | |
| # - Running this shell file as a script is NOT recommended. Copy/pasting one command at a time is | |
| # okay as long as you monitor the output for any possible errors/warnings. |
| # iPython Notebook with per-user storage and config | |
| # | |
| # Based on crosbymichael/ipython | |
| # Creates a Docker image with IPython Notebook installed. | |
| # | |
| # It expects to be run like this: | |
| # | |
| # docker run -v /home/eduard/notebooks/eduard:/notebooks benthoo/ipython-user | |
| # | |
| # You provide a folder per user on the host system. This folder will hold the users notebooks and also needs to contain the |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| *~ | |
| *.pyc | |
| .vagrant | |
| venv |
| from fabric.api import * | |
| from fabric.colors import green as _green, yellow as _yellow | |
| import boto | |
| import boto.ec2 | |
| from config import * | |
| import time | |
| def create_server(): | |
| """ | |
| Creates EC2 Instance |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
| # Simple, scrappy UDP DNS server in Ruby (with protocol annotations) | |
| # By Peter Cooper | |
| # | |
| # MIT license | |
| # | |
| # * Not advised to use in your production environment! ;-) | |
| # * Requires Ruby 1.9 | |
| # * Supports A and CNAME records | |
| # * See http://www.ietf.org/rfc/rfc1035.txt for protocol guidance | |
| # * All records get the same TTL |
| Presentation slides and list of commds are available at: | |
| https://github.com/gregmalcolm/unix_for_programmers_demo | |
| NOTE: I used a Mac with OSX for this demo. Other unixes will differ slightly in behavior! | |
| Examples are all written in Python 2.7 | |
| =========== | |
| Preparation | |
| =========== |
| ### MATPLOTLIBRC FORMAT | |
| # This is a sample matplotlib configuration file - you can find a copy | |
| # of it on your system in | |
| # site-packages/matplotlib/mpl-data/matplotlibrc. If you edit it | |
| # there, please note that it will be overridden in your next install. | |
| # If you want to keep a permanent local copy that will not be | |
| # over-written, place it in HOME/.matplotlib/matplotlibrc (unix/linux | |
| # like systems) and C:\Documents and Settings\yourname\.matplotlib | |
| # (win32 systems). |