Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env ruby
#
# A "correct horse battery staple"-style password generator. Outputs
# four random, fairly common (among the 5,000 most common words) English
# words, contracted together with hyphens.
#
# Author: Rob Miller <[email protected]>
puts DATA.each_line.to_a.sample(4).map(&:chomp).join("-")
#!/usr/bin/env ruby
#
# lightroom-groups.rb
# Author: Rob Miller <[email protected]>
#
# Mass organises presets into groups in Lightroom, based on their folder
# on disk.
#
# --
#
/* reveals koalastothemax.com without needing to move your mouse */
var mm = new Event("mousemove");
function rand(min, max) { return Math.ceil(Math.random() * (max - min) + min); }
function sorter(c1, c2) { if ( c1[0] > c2[0] ) { return -1; } if ( c1[0] < c2[0] ) { return 1; } return 0 }
function getBiggestCircle() {
var circles = [...document.querySelectorAll("#dots circle")].map(c => [c.getBBox().width, c]).sort(sorter);
return circles[0][1];
}
#!/usr/bin/env ruby
#
# Solutions to Diamond Geezer's "the digits of the year 2019 add up to twelve" puzzles:
# http://diamondgeezer.blogspot.com/2019/01/the-digits-of-year-2019-add-up-to-twelve.html
def main
# a) How many years ago did this last happen?
a = 2019 - 2018.downto(0).find { |year| sum_digits(year) == 12 }
# b) In what year?
b = 2018.downto(0).find { |year| sum_digits(year) == 12 }
@robmiller
robmiller / spider
Created May 9, 2018 12:29
Outputs all of the URLs of pages on a given site
#!/bin/bash
#
# spider
#
# Author: Rob Miller <[email protected]>
#
# Outputs all of the HTML pages on a given domain.
wget -r -nd --delete-after -w 1 "$1" 2>&1 |
@robmiller
robmiller / sort-domains.rb
Created February 13, 2018 10:57
Sort a list of hostnames so that www. versions show up next to non-www. versions of the same domain
#!/usr/bin/env ruby
#
# Sometimes you want to sort a list of hostnames/domains and want
# example.com to sort next to www.example.com. This does that.
#
# Author: Rob Miller <[email protected]>
#
# Usage:
#
# $ cat foo.txt | sort-domains
@robmiller
robmiller / smog.rb
Created January 5, 2018 16:04
A Ruby implementation of SMOG (Simple Measure of Gobbledygook) scoring for measuring text complexity.
#!/usr/bin/env ruby
#
# Calculates the SMOG (Simple Measure of Gobbledygook) score for a given
# piece of text. A CLI utility that could very easily be adapted into
# a library if I could be be bothered.
#
# More on SMOG: https://en.wikipedia.org/wiki/SMOG
#
# Author: Rob Miller <[email protected]>
#
@robmiller
robmiller / ssl-expiry.rb
Created October 23, 2017 15:53
ssl-expiry: displays the expiry date of SSL certificates associated with any domains passed on the command line
#!/usr/bin/env ruby
#
# ssl-expiry
#
# Author: Rob Miller <[email protected]>
#
# For a given domain or domains, checks to see if an SSL certificate is
# present; if one is, outputs the date of its expiry.
#
# Usage:
@robmiller
robmiller / sitemap.rb
Created September 22, 2017 11:04
Fetch a sitemaps.org-compatible sitemap file and output all of its URLs on the command-line
#!/usr/bin/env ruby
#
# sitemap
#
# Author: Rob Miller <[email protected]>
#
# Fetches and parses a sitemaps.org-compatible sitemap file, outputting
# all of the URLs stored in it; useful to start a spidering process, or
# to generate a list of URLs to later redirect.
#
@robmiller
robmiller / ssl-check.rb
Last active August 16, 2017 13:12
ssl-check: checks for expiring SSL certificates. Useful for piping into Slack on a cron
#!/usr/bin/env ruby
#
# ssl-check
#
# Checks for expiring SSL certificates, specified on the command line.
#
# Usage:
#
# $ ssl-check hosts.txt
#