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
############################################################################## | |
# Logs messages with a configurable logging level and format, accepting input | |
# from either stdin (such as a pipe) or as arguments | |
# | |
# Author: Stephen Roberts <[email protected]> | |
# | |
# Globals: | |
# LOGLEVEL - arbitrary integer for desired log output level (default: 0) | |
# | |
# Arguments: |
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/sh | |
# | |
# Time a command with a timeout | |
# | |
# Author: Stephen Roberts <[email protected]> | |
# Version: 1 | |
# | |
# Usage: twto [OPTIONS] TIMEOUT COMMAND | |
# |
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
'use strict' | |
headConfig = [ | |
{ | |
name: 'title' | |
selector: 'title' | |
template: '<title></title>' | |
html: true | |
} | |
{ |
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
getResponse = (method, type, params) => | |
@promises ||= {} | |
promiseKey = (method + type + JSON.stringify params).replace(/[\{\}",:\-\._\[\] ]/g, '') | |
return @promises[promiseKey] if @promises[promiseKey] | |
console.log promiseKey | |
deferred = $q.defer() | |
params ||= {} | |
params.access_token = contentfulConfig.access_token |
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
'use strict' | |
reviewProto = { | |
getTitle: -> | |
@fields.title if @fields and @fields.title | |
getAlias: -> | |
@fields.alias if @fields and @fields.alias | |
getSuperLabel: -> | |
@fields.category if @fields and @fields.category | |
getShortDescription: -> |
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
{ | |
file: { | |
url: "http://someimage.jpg", | |
title: "Some Image" | |
} | |
} |
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
{ | |
file: { | |
url: "http://someimage.jpg", | |
title: "Some Image" | |
} | |
} |
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
'use strict' | |
data = ($injector) -> | |
init = -> | |
registerModels() | |
service = {} | |
registerModels = -> |
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
# This is a template .gitignore file for git-managed WordPress projects. | |
# | |
# Fact: you don't want WordPress core files, or your server-specific | |
# configuration files etc., in your project's repository. You just don't. | |
# | |
# Solution: stick this file up your repository root (which it assumes is | |
# also the WordPress root directory) and add exceptions for any plugins, | |
# themes, and other directories that should be under version control. | |
# | |
# See the comments below for more info on how to add exceptions for your |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="digitollsoftware" default="dist"> | |
<tstamp /> | |
<!-- Load local properties --> | |
<property file="./build.properties" override="true" /> | |
<!-- Get package version from the latest tag in git --> |
NewerOlder