This file contains hidden or 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
<!-- GLOBAL CORE SCRIPTS --> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
<script type="text/javascript" src="inc/colorbox.js"></script> | |
<script type="text/javascript" src="js/timeliner.min.js"></script> | |
<script> | |
$(document).ready(function() { | |
$.timeliner({ | |
startOpen:['#19550828EX', '#19630828EX'] | |
}); | |
$.timeliner({ |
This file contains hidden or 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: Ashley Blewer! | |
Github: http://github.com/ablwr | |
Blog: http://ablwr.github.io | |
Tagline: Never fear, I is here. | |
Profile Picture: http://www.ashleyblewer.com/sflop.jpg | |
Treehouse Account: http://teamtreehouse.com/ablwr | |
CoderWall Account: https://coderwall.com/ablwr | |
CodeSchool Account: http://www.codeschool.com/users/ablwr | |
Favorite Websites: | |
This file contains hidden or 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" ?><transcript><text start="0.859" dur="5.571">bro dramatist drive drive drive drive | |
drive drive drive drive drive drive</text><text start="6.43" dur="3.57">drive drive drive drive the strongest | |
rise</text><text start="10" dur="4.509">draw mister on mister on mister I just | |
reminded drive drive drive drive drive</text><text start="14.509" dur="3.081">drive drive drive drive drive</text><text start="17.59" dur="5.89">strongest rise tries to write and star | |
star star star star star my stride is no</text><text start="23.48" dur="4.76">I started not as strong as it dries | |
strongest riders tri-star his stride</text><text start="28.24" dur="1.1">stride stride</text><text start="29.34" dur="3.04">dry mister I just got my stride Stride | |
Rite Strider</text><text start="32.38" dur="4.11">Noize stride stride Stride Rite Strider | |
strongest rise and rise</text><text start="36.49" dur="4.839">strongest riders tri-star I started | |
rising star mister on mister I just know</text><text start="41.32 |
This file contains hidden or 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"?> | |
<!-- Work in progress, not for production --> | |
<MediaTrace version="0.7.73"> | |
<items offset="0" name="File Header" size="8"> | |
<item offset="0" name="Magic">1229531648</item> | |
<item offset="4" name="IFDOffset">8</item> | |
</items> | |
<items offset="8" name="IFD" size="174"> | |
<items offset="8" name="Header" size="2"> |
This file contains hidden or 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"?> | |
<!-- Work in progress, not for production --> | |
<MediaTrace version="0.7.73"> | |
<items offset="0" name="Ebml" size="47"> | |
<items offset="0" name="Header" size="12"> | |
<item offset="0" name="Name">172351395</item> | |
<item offset="4" name="Size">35</item> | |
</items> | |
<items offset="12" name="Version" info="1" size="4"> | |
<items offset="12" name="Header" size="3"> |
This file contains hidden or 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 parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
function prompt { | |
# Define some local colors | |
local RED="\[\033[0;31m\]" | |
local LIGHT_RED="\[\033[1;31m\]" | |
local CHAR="🐚 (╯°□°)╯︵" |
This file contains hidden or 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"?> | |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:mc="https://mediaarea.net/mediaarea" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0" extension-element-prefixes="xsi"> | |
<xsl:output encoding="UTF-8" method="xml" version="1.0" indent="yes"/> | |
<xsl:template match="mc:MediaArea"> | |
<MediaConch> | |
<policyChecks> | |
<xsl:attribute name="version"> | |
<xsl:text>0.1</xsl:text> | |
</xsl:attribute> | |
<xsl:for-each select="mc:media"> |
This file contains hidden or 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 'csv' | |
require 'nokogiri' | |
xml = File.read('hello.xml') | |
doc = Nokogiri::XML(xml) | |
all_the_things = [] | |
doc.xpath('//file').each do |file| | |
title = file.xpath("./title").first.text |
This file contains hidden or 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"?> | |
<document> | |
<file> | |
<title>The first file</title> | |
<name>one.mkv</name> | |
<identifier> | |
<display>My display ID: 1</display> | |
<secret secret="sesame">My secret ID: 123666</secret> | |
</identifier> | |
</file> |
This file contains hidden or 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 moonphase() { | |
/usr/bin/env ruby <<-EORUBY | |
# Convert a date to Julian. | |
def julian(year, month, day) | |
a = (14-month)/12 | |
y = year+4800-a | |
m = (12*a)-3+month | |
return day + (153*m+2)/5 + (365*y) + y/4 - y/100 + y/400 - 32045 | |
end |
OlderNewer