This file contains 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
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'bundler/setup' | |
require 'png_quantizator' | |
require 'tempfile' | |
speed = ENV['SPEED'] || 1 | |
ARGV.each do |png_path| | |
puts "Processing #{png_path}..." | |
file = PngQuantizator::Image.new(png_path) |
This file contains 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
*.csproj text=auto merge=union | |
*.sln -text merge=union |
This file contains 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
# update packages | |
sudo apt-get update | |
# Install git | |
sudo apt-get install git-core | |
# Install jdk | |
sudo apt-get install openjdk-6-jdk | |
# Setup Maven |