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
glyphicon glyphicon-asterisk | |
glyphicon glyphicon-plus | |
glyphicon glyphicon-euro | |
glyphicon glyphicon-minus | |
glyphicon glyphicon-cloud | |
glyphicon glyphicon-envelope | |
glyphicon glyphicon-pencil | |
glyphicon glyphicon-glass | |
glyphicon glyphicon-music | |
glyphicon glyphicon-search |
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"?> | |
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your blog. --> | |
<!-- It contains information about your blog's posts, comments, and categories. --> | |
<!-- You may use this file to transfer that content from one site to another. --> | |
<!-- This file is not intended to serve as a complete backup of your blog. --> | |
<!-- To import this information into a WordPress blog follow these steps. --> | |
<!-- 1. Log into that blog as an administrator. --> | |
<!-- 2. Go to Manage: Import in the blog's admin panels. --> | |
<!-- 3. Choose "WordPress" from the list. --> |
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} |
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
{ | |
"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
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
<?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
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
<?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
(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); |