Skip to content

Instantly share code, notes, and snippets.

View nipe0324's full-sized avatar

nipe0324 nipe0324

  • Japan
View GitHub Profile
@nipe0324
nipe0324 / ImageMagick 6.9.9-10 Homebrew Formula.md
Last active June 21, 2018 05:02 — forked from afaur/ImageMagick 6.9.7-3 Homebrew Formula.md
Homebrew Formula for ImageMagick 6.9.10-2

Homebrew Formula patching old ImageMagick release 6.9.9-10

Install

$ brew install  https://gist.githubusercontent.com/nipe0324/676047ff7cfd57cb41816dc7b9860e46/raw/87b0f14890248b24944f4f49150942f6ab250981/imagemagick.rb

Tested

@nipe0324
nipe0324 / db.rake
Created July 30, 2016 05:36 — forked from hopsoft/db.rake
Rails rake tasks for dump & restore of PostgreSQL databases
# lib/tasks/db.rake
namespace :db do
desc "Dumps the database to db/APP_NAME.dump"
task :dump => :environment do
cmd = nil
with_config do |app, host, db, user|
cmd = "pg_dump --host #{host} --username #{user} --verbose --clean --no-owner --no-acl --format=c #{db} > #{Rails.root}/db/#{app}.dump"
end
puts cmd