- RequetBin - http://requestb.in/
- NGrok - https://ngrok.com/
- Man In the Middle Proxy - http://mitmproxy.org/
- PostMan - http://getpostman.com/
- Hurl.it - http://www.hurl.it/
- PonyDebugger - https://github.com/square/PonyDebugger
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
#!/bin/bash | |
# A simple script to backup an organization's GitHub repositories. | |
GHBU_BACKUP_DIR=${GHBU_BACKUP_DIR-"github-backups"} # where to place the backup files | |
GHBU_ORG=${GHBU_ORG-"<CHANGE-ME>"} # the GitHub organization whose repos will be backed up | |
GHBU_API=${GHBU_API-"https://api.github.com"} # base URI for the GitHub API | |
GHBU_GITHOST=${GHBU_GITHOST-"<CHANGE-ME>.github.com"} # the GitHub hostname (see comments) | |
# I recommend using an API token so it is easily trackable and removable. | |
# Note that you MUST have SSH keys for a user with the access to all repos set up |
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
<?xml version="1.0"?> | |
<!DOCTYPE module PUBLIC | |
"-//Puppy Crawl//DTD Check Configuration 1.2//EN" | |
"http://www.puppycrawl.com/dtds/configuration_1_2.dtd"> | |
<!-- | |
This file contains a Checkstyle configuration that checks for compliance with | |
Mozilla's Java style conventions. | |
The file defines the modules and properties in alpabetical order. Each property |
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
<?xml version="1.0"?> | |
<!DOCTYPE module PUBLIC | |
"-//Puppy Crawl//DTD Check Configuration 1.2//EN" | |
"http://www.puppycrawl.com/dtds/configuration_1_2.dtd"> | |
<module name="Checker"> | |
<!--module name="NewlineAtEndOfFile"/--> | |
<module name="FileLength"/> | |
<module name="FileTabCharacter"/> |
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
<?xml version="1.0"?> | |
2<!DOCTYPE module PUBLIC | |
3 "-//Puppy Crawl//DTD Check Configuration 1.2//EN" | |
4 "http://www.puppycrawl.com/dtds/configuration_1_2.dtd"> | |
5 | |
6<module name="Checker"> | |
7 | |
8 <!-- Checks that a package-info.java file exists for each package. --> | |
9 <!-- See http://checkstyle.sf.net/config_javadoc.html#JavadocPackage --> | |
10 <!-- |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE module PUBLIC | |
"-//Puppy Crawl//DTD Check Configuration 1.3//EN" | |
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd"> | |
<!-- This is a checkstyle configuration file. For descriptions of | |
what the following rules do, please see the checkstyle configuration | |
page at http://checkstyle.sourceforge.net/config.html --> | |
<module name="Checker"> |
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
# install chef-solo one line ! | |
curl -L https://www.opscode.com/chef/install.sh | bash | |
# cookbooks have their rep: check the dir name == cookbook name | |
mkdir -p /opt/cookbooks | |
git clone https://github.com/hw-cookbooks/graphite | |
git clone https://github.com/opscode-cookbooks/apache2.git | |
git clone https://github.com/opscode-cookbooks/python.git | |
git clone https://github.com/opscode-cookbooks/runit.git | |
git clone https://github.com/opscode-cookbooks/memcached.git |
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
# Reference: The maven documentation for archetype is not comprehensive and has issues. Please refer the below link for better reference. | |
# https://community.jboss.org/wiki/MavenArchetypeCreationGuidelines | |
cd <example mvn project which needs to be archetyped> | |
mvn clean archetype:create-from-project -Dinteractive=true | |
#This would create the archetype in target folder. | |
# To generate a sample project from the archetype created locally. | |
mvn archetype:generate -DarchetypeCatalog=local -DgroupId=com.softmentor.examples -DartifactId=example-thrift -DarchetypeArtifactId=maven-archetype-apache-thrift |
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
#%RAML 0.8 | |
--- | |
#=============================================================== | |
# Example Hello World API - RAML example | |
# References: | |
# - RAML Specification - http://raml.org/spec.html | |
# - RAML Projects - http://raml.org/projects.html | |
# - RAML Tools - http://www.apihub.com/raml-tools | |
#=============================================================== | |
title: Example Hello World API |
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
#################################### | |
# BASIC REQUIREMENTS | |
# http://graphite.wikidot.com/installation | |
# http://geek.michaelgrace.org/2011/09/how-to-install-graphite-on-ubuntu/ | |
# Last tested & updated 10/13/2011 | |
#################################### | |
cd | |
sudo apt-get update | |
sudo apt-get upgrade |