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
import urllib2 | |
from lxml import etree | |
import json | |
class Browser(object): | |
def get(self, url): | |
response = urllib2.urlopen(url) | |
return response.read() | |
if __name__ == '__main__': |
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 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> | |
<xsl:param name="menuId"/> | |
<xsl:param name="menuClass"/> | |
<xsl:param name="defaultPage">index</xsl:param> | |
<xsl:variable name="depth" select="3"/> | |
<xsl:template match="/"> | |
<!-- <xsl:apply-templates select="//system-folder[@current='true']/system-page[dynamic-metadata[name='show-in-nav' and value='yes']]"/> --> |
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
CREATE OR REPLACE FUNCTION FNC_HG_MAJOR (PIDM_IN SPBPERS.SPBPERS_PIDM%TYPE, | |
TERM_IN SFRSTCR.SFRSTCR_TERM_CODE%TYPE) | |
RETURN VARCHAR2 AS | |
HG_MAJOR_VALUE SOVLFOS.SOVLFOS_MAJR_CODE%TYPE; | |
BEGIN | |
HG_MAJOR_VALUE := NULL; | |
BEGIN |
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>Jonahlyn subscriptions in Google Reader</title> | |
</head> | |
<body> | |
<outline text="Bokardo" title="Bokardo" type="rss" | |
xmlUrl="http://bokardo.com/feed/" htmlUrl="http://bokardo.com"/> | |
<outline | |
text="Computer Science 169, 001|Spring 2012|UC Berkeley" |
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
<script> | |
$(function(){ | |
var today = new Date(), | |
expiration = new Date('2012-12-31'); | |
if( today <= expiration ){ | |
var newicon = $('<span class="new"> new!</span>'); | |
newicon.css({ |
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
/** | |
* Playing with Tab Styles | |
*/ | |
/* Tab Styles for Search UNM */ | |
#searchnav li a { | |
background: linear-gradient(top, #F40046 0%, #C10037 100%); |
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
/** | |
* Sticky Header for UNM Template | |
*/ | |
#unm_header { | |
z-index: 11; | |
margin-top: -13em; | |
width: 100%; | |
position: fixed; |
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
import groovy.text.SimpleTemplateEngine | |
def text = '''Hello $name, | |
This is a mult-line string.''' | |
def binding = [name: "Jonahlyn"] | |
def engine = new SimpleTemplateEngine() | |
template = engine.createTemplate(text).make(binding) |
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
import groovy.xml.MarkupBuilder | |
def mkp = new MarkupBuilder() | |
mkp.html { | |
body { | |
p "Hello" | |
} | |
} |