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"?> | |
<books-of-the-bible> | |
<entry handle="01"> | |
<name handle="genesis">Genesis</name> | |
<testament handle="old-testament" abbreviation="OT">Old Testament</testament> | |
<chapters>50</chapters> | |
</entry> | |
<entry handle="02"> | |
<name handle="exodus">Exodus</name> | |
<testament handle="old-testament" abbreviation="OT">Old Testament</testament> |
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"?> | |
<!-- | |
BEGIN:VCALENDAR | |
CALSCALE:GREGORIAN | |
X-WR-TIMEZONE;VALUE=TEXT:US/Central | |
METHOD:PUBLISH | |
PRODID:-//Park Cities Presbyterian Church\(PCA\)//iCal 1.0//EN | |
X-WR-CALNAME;VALUE=TEXT:Park Cities Presbyterian Church Events Feed | |
VERSION:2.0 | |
BEGIN:VEVENT |
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
require 'sass' | |
## install Linguistics gem, sudo install gem linguistics | |
require 'linguistics' | |
Linguistics::use( :en ) # extends Array, String, and Numeric | |
## this is the linguistics gem, | |
## instructions on how to use, http://deveiate.org/projects/Linguistics/wiki/English | |
## 5.en.numwords would output 'five' |
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
// .sass syntax | |
// NOTE: This Sass stylesheet is dependent on the Custom Sass Function, convert-number-to-word, | |
// which is available here, https://gist.github.com/1439296 | |
/* Arfully Masterminded by ZURB | |
/* Grid :: This is the mobile-friendly, responsive grid that lets Foundation work much of its magic. | |
// Using Default Number of Columns that Foundation starts off with, 12 columns |
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
## Regular Expressions | |
## Removing <font> tag from HTML | |
</?font\s*[^>]*>? |
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] | |
;;;;;;;;;;;;;;;;;;; | |
; About php.ini ; | |
;;;;;;;;;;;;;;;;;;; | |
; PHP's initialization file, generally called php.ini, is responsible for | |
; configuring many of the aspects of PHP's behavior. | |
; PHP attempts to find and load this configuration from a number of locations. | |
; The following is a summary of its search order: |
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] | |
;;;;;;;;;;;;;;;;;;; | |
; About php.ini ; | |
;;;;;;;;;;;;;;;;;;; | |
; PHP's initialization file, generally called php.ini, is responsible for | |
; configuring many of the aspects of PHP's behavior. | |
; PHP attempts to find and load this configuration from a number of locations. | |
; The following is a summary of its search order: |
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"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output method="xml" encoding="UTF-8" indent="yes" omit-xml-declaration="yes"/> | |
<!-- | |
TO USE TEMPLATE, CALL TEMPLATE LIKE SO... | |
<xsl:call-template name="video-media"> | |
<xsl:with-param name="width" select="640"/> |