Command: heroku pgbackups:capture --remote production
Response: >>> HEROKU_POSTGRESQL_COLOR_URL (DATABASE_URL) ----backup---> a712
Command: heroku pgbackups:url [db_key] --remote production
/** | |
* Abstract class used to create and spwan inline workers. | |
* | |
* Workers can be created by extending the WebWorker class and creating | |
* your own implementation of 'perform()'. The extended class can then | |
* be used to spawn the new worker and communicate with it. | |
* | |
* @example | |
* | |
* class StorageWorker extends WebWorker { |
function git-add-repo | |
{ | |
repo="$1" | |
branch="$3" | |
dir="$(echo "$2" | sed 's/\/$//')" | |
path="$(pwd)" | |
tmp="$(mktemp -d)" | |
remote="$(echo "$tmp" | sed 's/\///g'| sed 's/\./_/g')" |
# 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 |
sudo nmap -sP 192.168.1.0/24 | awk '/^Nmap/{ip=$NF}/B8:27:EB/{print ip}' |
/* | |
Namespace: IETranslucencyCalc | |
Converts modern CSS color values to IE filter versions. | |
File: ietranslucencycalc.js | |
About: Version | |
2.0.1 | |
Description: |