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
# Change example.com to the correct host | |
wget -r -nd --delete-after -w 0.5 'http://www.example.com/' 2>&1 | | |
grep -B3 text/html | | |
grep -B2 '200 OK' | egrep 'https?://' | | |
cut -d' ' -f3- | | |
sort | uniq | | |
ruby -ane 'puts "rewrite ^#{$_.strip.sub(%r{^https?://[^/]+/}, "/")}$ / permanent;"' |
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 "json" | |
require "open-uri" | |
json = open("http://api.football-data.org/v1/soccerseasons/424/fixtures").read | |
fixtures = JSON.parse(json) | |
fixtures = fixtures["fixtures"] |
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 "fog" | |
hostname = ARGV.fetch(0) | |
compute = Fog::Compute.new( | |
provider: "Rackspace", | |
rackspace_api_key: ENV.fetch("RACKSPACE_API_KEY"), | |
rackspace_username: ENV.fetch("RACKSPACE_USERNAME"), |
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 | |
# | |
# enable-rs-db-root | |
# | |
# Enables the root account on a Rackspace cloud database instance. | |
# | |
# Usage: | |
# | |
# enable-rs-db-root name.of.your.instance.example.com | |
# |
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
#!/bin/bash | |
# Uses text to speech to say MESSAGE 1,000 times, ensuring that sound | |
# is unmuted and the audio device is set to the internal speakers | |
# | |
# Usage: childish MESSAGE | |
# | |
# Requires audiodevice: | |
# http://whoshacks.blogspot.co.uk/2009/01/change-audio-devices-via-shell-script.html | |
for i in `seq 1 1000` |
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 | |
# | |
# archive-github | |
# | |
# Author: Rob Miller <[email protected]> | |
# | |
# Clones a GitHub repository locally, and then deletes it from GitHub. | |
# Useful for cleaning up no-longer-needed private repos. | |
# | |
# Assumes you have an OAuth token stored in an environment variable |
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
extern crate plist; | |
use std::process::Command; | |
use std::io::{Read,Seek,SeekFrom,Cursor}; | |
use plist::StreamingParser; | |
fn main() { | |
println!("Profiling system."); | |
let profiler = Command::new("system_profiler") |
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
for user in $(cat /etc/passwd | cut -d: -f1); do; read "DELETE?Delete $user? "; [[ "$DELETE" =~ ^[Yy]$ ]] && echo "Removing $user"; done |
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
#!/bin/zsh | |
# | |
# 404s | |
# | |
# Usage: | |
# 1. Download, rename to 404s, put in path (~/bin is a good place) | |
# 2. Run the script: | |
# | |
# $ 404s http://example.com | |
# |
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 | |
# Usage: wp-audit [options] | |
# -a, --all-plugins Show all plugins, not just outdated ones | |
# -c, --[no-]color Highlight outdated versions in colour | |
# -f, --format [format] Specify output format. Accepted values: html, term (Terminal output and colours), md (Markdown, no colours). term is default. | |
# | |
# Requires: Ruby >= 2.0; a Unix-like operating system (one that ships | |
# with `find`, `less`, and `diff`) | |
# | |
# Installation: |