Implemented with: https://github.com/bminer/node-twilio-api
🧙♀️
Discussion: mochajs/mocha#362
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
# Fix Github Pages | |
# Usage: fgp YOUR-GITHUB-PROJECTS-SSH-REPO-URL | |
function fgp { | |
git clone $1 fixit | |
cd fixit | |
git checkout gh-pages | |
git push origin :gh-pages | |
git push origin --all | |
cd .. | |
rm -Rf fixit |
A GUI, or rather a CMS interface for DocPad is the big next step. It was also one of the first proof of concepts I used to ensure DocPad would be able to scale into the web development platform of the future.
Back in the first early months of DocPad, I created three plugins:
- Authenticate: To authenticate you against the project's maintainers to ensure that you have read and write access
- REST: Provided authenticated users the ability to update documents via HTTP POST requests using JSON
This is an example proposal for: http://wiki.ecmascript.org/doku.php?id=strawman:default_operator
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
# Export Plugin | |
module.exports = (BasePlugin) -> | |
# Define Plugin | |
class TextPlugin extends BasePlugin | |
# Plugin name | |
name: 'text' | |
# Get the text | |
getText: (opts) -> | |
# Prepare |
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
### | |
# Colors | |
export RED="\[\033[0;31m\]" | |
export RED_BOLD="\[\033[01;31m\]" | |
export BLUE="\[\033[0;34m\]" | |
export CYAN='\[\e[0;36m\]' | |
export PURPLE='\[\e[0;35m\]' | |
export GREEN="\[\033[0;32m\]" |
post.html.eco
used for displaying prev and next page links on your current page (static site friendly)posts.html.eco
used for displaying a content listing, that is split up onto multiple pages (requires dynamic site)- paged plugin used for splitting a document into a different pages, very neat (static site friendly)