This is the reference point. All the other options are based off this.
|-- app
| |-- controllers
| | |-- admin
| package com.aaplab.android.robird.utils; | |
| import android.view.View; | |
| import com.nineoldandroids.animation.Animator; | |
| import com.nineoldandroids.view.ViewHelper; | |
| import com.nineoldandroids.view.ViewPropertyAnimator; | |
| /** | |
| * Created with IntelliJ IDEA. | |
| * User: user |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| # First install tmux | |
| brew install tmux | |
| # For mouse support (for switching panes and windows) | |
| # Only needed if you are using Terminal.app (iTerm has mouse support) | |
| Install http://www.culater.net/software/SIMBL/SIMBL.php | |
| Then install https://bitheap.org/mouseterm/ | |
| # More on mouse support http://floriancrouzat.net/2010/07/run-tmux-with-mouse-support-in-mac-os-x-terminal-app/ |
| #!/bin/bash | |
| # | |
| # Lee Robert's Base Ubuntu Installation script for use on Digital Ocean (Or any other ubuntu install really.) | |
| # Made and tested with Ubuntu 13.04 64bit | |
| # | |
| # Steps: | |
| # 01. Secure Root User | |
| # 02. Make .bashrc print out pretty colors (and root's prompt will be red) | |
| # 03. Create a local user | |
| # 04. Update sudoers file so only root + local user can use sudo |
At the top of the file there should be a short introduction and/ or overview that explains what the project is. This description should match descriptions added for package managers (Gemspec, package.json, etc.)
Show what the library does as concisely as possible, developers should be able to figure out how your project solves their problem by looking at the code example. Make sure the API you are showing off is obvious, and that your code is short and concise.
| #!/usr/bin/env python2 | |
| # Quick and dirty demonstration of CVE-2014-0160 by Jared Stafford ([email protected]) | |
| # The author disclaims copyright to this source code. | |
| import sys | |
| import struct | |
| import socket | |
| import time | |
| import select |