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/sh | |
# | |
# Startup script for the Jenkins Continuous Integration server for Amazon EC2 Linux | |
# (via jar execution) | |
# | |
# chkconfig: - 85 15 | |
# description: Jenkins Continuous Integration Server | |
# processname: jenkins | |
# pidfile: /var/run/jenkins.pid |
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"?> | |
<beans | |
xmlns="http://www.springframework.org/schema/beans" | |
xmlns:aop="http://www.springframework.org/schema/aop" | |
xmlns:context="http://www.springframework.org/schema/context" | |
xmlns:mvc="http://www.springframework.org/schema/mvc" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation=" | |
http://www.springframework.org/schema/mvc | |
http://www.springframework.org/schema/mvc/spring-mvc.xsd |
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
# Archive your Twitpic photos and metadata | |
# | |
# A cleaned-up fork of Terence Eden's original archiver: | |
# http://shkspr.mobi/blog/2013/08/exporting-twitpic-images-python/ | |
# | |
# License: MIT | |
import shutil | |
import urllib2 | |
import socket |
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
convert -density 256x256 -background transparent favicon.svg -define icon:auto-resize -colors 256 favicon.ico |
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
# (c) Azamshul Azizy, 2014 | |
# | |
# Original files: | |
# https://github.com/dockerfile/java/tree/master/oracle-java7 | |
# https://github.com/clifton/docker-debian-base/master/Dockerfile | |
# Pull base image. | |
FROM debian:7 | |
MAINTAINER Azamshul Azizy <[email protected]> |
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
# (c) Azamshul Azizy, 2015 | |
# | |
# Debian based container for fontcustom | |
# Ref: https://github.com/FontCustom/fontcustom/ | |
# Ref: http://pivotallabs.com/generate-icon-fonts-automatically-with-fontcustom/ | |
# | |
# TODO: install ttf2eot | |
# | |
# Usage example: | |
# docker run -v /home/me/svgs:/target -t azamshul/fontcustom compile /target --output /target/output |
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/sh | |
sudo yum -y update | |
sudo wget https://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo | |
sudo sed -i s/\$releasever/6/g /etc/yum.repos.d/epel-apache-maven.repo | |
sudo yum -y install java-1.8.0-openjdk-devel apache-maven git | |
sudo alternatives --set java /usr/lib/jvm/jre-1.8.0-openjdk.x86_64/bin/java |
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 | |
# This script is intended to be run as preparation script | |
# during creation of ec2 instance, which is executed as root. | |
# So we don't need to run these commands with sudo over here. | |
wget https://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo | |
sed -i s/\$releasever/6/g /etc/yum.repos.d/epel-apache-maven.repo | |
# NOTE: execute this 4 commands if you change repo, ie redhat to redhat-stable | |
# rm -f /var/lib/rpm/__db* | |
# rpm --rebuilddb | |
# yum clean all |
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
/** | |
* stack.js | |
* (c) 2015 Azamshul Azizy | |
* | |
* [description] | |
* @param {[type]} factory [description] | |
* @return {[type]} [description] | |
*/ | |
(function(stackjs) { | |
// if (typeof(define) === "function" && typeof(define.amd) !== "undefined") { |
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
Show hidden characters
// Settings in here override those in "Default/Preferences.sublime-settings", | |
// and are overridden in turn by file type specific settings. | |
{ | |
"draw_white_space": "all", | |
"rulers": [80], | |
"font_face": "Ricty Diminished", // https://github.com/yascentur/RictyDiminished | |
"font_size": 11, | |
"font_options": ["directwrite"], | |
"line_padding_top": 0, | |
"line_padding_bottom": 0, |
OlderNewer