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
// output a warning or message to the console | |
// depending on how the test passed | |
function assert(test, description){ | |
console[!!test ? 'log' : 'warn']('Test %s: returned %s', description, test); | |
} |
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
// modified version of http://www.guffa.com/Programming_archive.aspx?id=16 | |
var getQuerystring = function (key, from){ | |
var re = new RegExp('(?:\\?|&)'+key+'=(.*?)(?=&|$)','gi') | |
, r = [] | |
, m | |
; | |
while ((m=re.exec(from)) != null) r.push(m[1]); | |
return (r.join(',') || '').replace('/',''); |
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
git config --global merge.tool p4merge | |
git config --global mergetool.p4merge.path 'C:\Program Files\Perforce\p4merge.exe' |
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
[mergetool] | |
prompt = false | |
keepBackup = false | |
keepTemporaries = false | |
[merge] | |
tool = winmerge | |
[mergetool "winmerge"] | |
name = WinMerge |
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
adobe.brackets.extract | |
bigeyex.brackets-wordhint | |
bracket-match-highlighter | |
brackets-beautify | |
brackets-code-folding | |
brackets-css-color-preview | |
brackets-eco | |
brackets-emmet | |
brackets-html5codehints | |
brackets-indent-guides |
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
atom-beautify | |
atom-erb | |
atomatigit | |
autocomplete-paths | |
color-picker | |
emmet | |
minimap | |
pathfinder | |
recent-files | |
seti-syntax |
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
<!--[if lt IE 7 ]> <html lang="en" class="no-js lt-ie10 lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
<!--[if IE 7 ]> <html lang="en" class="no-js lt-ie10 lt-ie9 lt-ie8"> <![endif]--> | |
<!--[if IE 8 ]> <html lang="en" class="no-js lt-ie10 lt-ie9"> <![endif]--> | |
<!--[if IE 9 ]> <html lang="en" class="no-js lt-ie10"> <![endif]--> | |
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]--> |
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
// sort numberAges for the dynatable | |
var dynatableSettings = { | |
dataset: { | |
records: jsonTable | |
, sortTypes: { | |
'%': 'numberSort' | |
, 'Total': 'numberSort' | |
} | |
} | |
, features: { |
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
archetypedir = "archetype" | |
# hostname (and path) to the root eg. http=//spf13.com/ | |
baseurl = "" | |
# include content marked as draft | |
buildDrafts = false | |
# include content with datePublished in the future | |
buildFuture = false | |
canonifyUrls = false | |
# config file (default is path/config.yaml|json|toml) | |
config = "config.toml" |
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
{ | |
"name": "hello.hugo", | |
"version": "1.0.0", | |
"description": "Test gohugo.io project", | |
"main": "browserSync.js", | |
"dependencies": {}, | |
"devDependencies": {}, | |
"config": { | |
"port": "4646", | |
"theme": "hyde" |