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
/* | |
Task: NepaJS | |
Does some silly things for NEPA JS | |
*/ | |
gulp.task('nepajs', function() { | |
var nepajsURL = 'https://www.meetup.com/NEPA-js/', | |
nepaJSDirWin = '/mnt/c/Users/tucker/Desktop/', | |
nepaJSDirMac = '/Users/cdevroe/Desktop/', |
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
<?php | |
/** | |
* Plugin Name: Tweet Statuses | |
* Description: A simple plugin that will tweet a status when published. | |
* Author: Colin Devroe | |
* Author URI: http://cdevroe.com/ | |
* Version: 0.1.0 | |
* | |
* TwitterAPIExchange is here: http://github.com/j7mbo/twitter-api-php | |
*/ |
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
(function (win,doc) { | |
'use strict'; | |
var submit = document.getElementById('submit'); | |
submit.addEventListener( 'click', function(){ | |
var number = document.getElementById('number'), | |
roman_numeral = document.getElementById('roman'); | |
roman_numeral.innerHTML = convert_to_roman(number.value); |
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
<?php | |
/** | |
* Determine whether a post or page is published or not. | |
* | |
* @return bool | |
*/ | |
function is_published(){ | |
$post = get_post(); | |
if ( $post->post_status == 'publish' ) return 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
Template: Client Call % Client Name % - % Date % | |
# Call information | |
Dial-in information: | |
- Number: | |
- Pin: | |
- URL: | |
Parties on call: |
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"?> | |
<opml version="1.0"> | |
<head> | |
<title>Hypertext Member Blogs</title> | |
</head> | |
<body> | |
<outline text="Hypertext Member Blogs" title="Hypertext Member Blogs"> | |
<outline type="rss" text="Colin Devroe" title="Colin Devroe" xmlUrl="http://cdevroe.com/feed" htmlUrl="http://cdevroe.com/"/> | |
<outline type="rss" text="Hypertext" title="Hypertext by Justin Blanton" xmlUrl="http://feeds.feedburner.com/jblanton" htmlUrl="http://hypertext.net"/> |
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
code () { | |
if [[ $# = 0 ]] | |
then | |
open -a "Visual Studio Code" -n | |
else | |
[[ $1 = /* ]] && F="$1" || F="$PWD/${1#./}" | |
open -a "Visual Studio Code" -n --args "$F" | |
fi | |
} |
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
{ | |
"name": "Streetshark", | |
"creator": "Plain", | |
"creator_url": "http://plainmade.com", | |
"blog": "news", | |
"content_types": { | |
"articles": "Article", | |
"releases": "Release Month" | |
}, | |
"feed": [ |
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
{ | |
"name": "Cypress - Forked for The Watercolor Gallery", | |
"creator": "Kyle Ruane and Colin Devroe", | |
"creator_url": "http://h2ocolor.com", | |
"blog": "gallery", | |
"content_types": { | |
"artspaces": "Art Space", | |
"interviews": "Artist Interview", | |
"videos": "Video", | |
"submit": "Submission Form" |
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
Hosted Unmark | |
https://unmark.it/mark/add?url=${url}&title=${title} | |
Self-hosted Unmark | |
http://YOUR-URL-HERE/mark/add?url=${url}&title=${title} |