I hereby claim:
- I am adamwiggall on github.
- I am adamwiggall (https://keybase.io/adamwiggall) on keybase.
- I have a public key ASCyidHqrNS5L7RZcMpdmrB3RdIwkcDWLKsPcVKGIvzJ0Qo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
class DateRange | |
attr_accessor :range, :format, :custom_start_date, :custom_end_date | |
def initialize(range, options = {}) | |
@range = range ? range.to_s : options[:default].to_s | |
@format = options[:format] | |
@custom_start_date = options[:start_date].to_formatted_date(@format) if options[:start_date] | |
@custom_end_date = options[:end_date].to_formatted_date(@format) if options[:end_date] | |
end | |
def to_a |
class DateRange | |
attr_accessor :range, :format, :custom_start_date, :custom_end_date | |
def initialize(range, options = {}) | |
@range = range ? range.to_s : options[:default].to_s | |
@format = options[:format] | |
@custom_start_date = options[:start_date].to_formatted_date(@format) if options[:start_date] | |
@custom_end_date = options[:end_date].to_formatted_date(@format) if options[:end_date] | |
end | |
def to_a |
(function() { | |
var mapThat; | |
mapThat = function() { | |
var geojson, map, markerLayer; | |
if (!$('#map').length) { | |
return; | |
} | |
map = mapbox.map('map'); |
defmodule Collatz do | |
def conjecture(int) when int < 2 do | |
raise ArgumentError, message: "Requires an integer value greater than 1" | |
end | |
def conjecture(int), do: conjecture(int, 0) | |
defp conjecture(1, 1), do: "Reduced to 1 in 1 step" | |
defp conjecture(1, steps), do: "Reduced to 1 in #{steps} steps" |
{ | |
// Which file extensions go with this file type? | |
"extensions": | |
[ | |
"md", | |
"mdown", | |
"mdwn", | |
"mmd", | |
"txt" | |
], |
// Better indenting by swapping the indent command around | |
{ "keys": ["super+shift+v"], "command": "paste" }, | |
{ "keys": ["super+v"], "command": "paste_and_indent" } |
From the command line | |
$ touch your/path/to/expressionengine/cache/.gitkeep | |
In your .gitignore file | |
your/path/to/expressionengine/cache/* | |
!your/path/to/expressionengine/cache/.gitkeep |
Page {if segment_3}{exp:simple_math calculate="{segment_3}/{rows_per_page}+1"}{if:else}1{/if} of {exp:simple_math calculate="ceil({gallery_images:total_rows}/{rows_per_page})"} | |
site URLs work like ...com/gallery/gallery-name/{n} |
myNamespace.worldPeace = function() { | |
var worldProblems = document.getElementById('big_problems'); | |
// if we don't have any problems just return | |
if (!worldProblems.length) return; | |
// if we got this far we have some solving to do | |
// so write some great code and restore peace to the world! | |
... |