- contact us removed
- contact us added to footer
- map added to "find" page
- linked images across top of "find" page
- text link list under map on "find" page
This file contains hidden or 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/sh | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' |
This file contains hidden or 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
function print_true() | |
print("true") | |
end | |
function print_false() | |
print("false") | |
end | |
function fif(val, a, b) | |
if val then a() else b() end |
This file contains hidden or 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
#ok | |
setTimeout(-> | |
analytics.track 'Time on Site', | |
category: 'site', | |
label: 'seconds', | |
value: 60 | |
, 60000) | |
#ok | |
setTimeout( |
This file contains hidden or 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
setTimeout -> | |
analytics.track 'Time on Site', | |
category: 'site', | |
label: 'seconds', | |
value: 60 | |
, 60000 |
Year | Author | Commits(%) | Next top 5 | Number of authors |
---|---|---|---|---|
2014 | Sean Linsley | 1103 (49.4% of 2233) | Daniel Miller, Nathan Zorn, Mike Ivey, psaintgirons, Ichiro Yamamoto | 13 |
This file contains hidden or 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
$("div.timeline-comment-wrapper:not(.timeline-new-comment)").hide() | |
$("div.discussion-item").hide() | |
$("li.task-list-item").closest("div.timeline-comment-wrapper").show() |
This file contains hidden or 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
(function() { | |
var store = {}; | |
store.products = ['John','Judy','Dijion']; | |
return { | |
sayHello: function(text) { | |
return "Factory says yo: " + text; | |
}, | |
sayGoodbyeProduct: function() { | |
return "Factory says prodcucts are " + store.products[0] + ", " + store.products[1] + ", " + store.products[2]; |
This file contains hidden or 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
// This will be the function that requests and stores data. | |
app.factory('dataFactory', function( ) { | |
var store = this; | |
store.products = ['John','Judy','Dijion']; | |
return { | |
sayHello: function(text) { | |
return "Factory says yo: " + text; | |
}, | |
sayGoodbyeProduct: function() { |
This file contains hidden or 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
(function() { | |
return { | |
sayHello: function(text) { | |
return "Factory says yo: " + text; | |
} | |
} | |
})().sayHello("peace") |