Skip to content

Instantly share code, notes, and snippets.

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__':
@jonahlyn
jonahlyn / strip_tags.py
Last active December 17, 2015 22:49 — forked from braveulysses/strip_tags.py
Updated for BeautifulSoup4
from bs4 import BeautifulSoup
def strip(untrusted_html):
"""Strips out all tags from untrusted_html, leaving only text.
Converts XML entities to Unicode characters. This is desirable because it
reduces the likelihood that a filter further down the text processing chain
will double-encode the XML entities."""
ssoup = BeautifulSoup(untrusted_html, "xml")
safe_html = ''.join(soup.findAll(text=True))
@jonahlyn
jonahlyn / gist:5323128
Created April 5, 2013 22:19
Panel Menu for Cascade Server
<?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']]"/> -->
@jonahlyn
jonahlyn / gist:4755357
Last active December 12, 2015 09:59
retrieve a student's current major
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
<?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"
@jonahlyn
jonahlyn / gist:3996350
Created November 1, 2012 20:38
Append a new tag to something using jquery
<script>
$(function(){
var today = new Date(),
expiration = new Date('2012-12-31');
if( today <= expiration ){
var newicon = $('<span class="new"> new!</span>');
newicon.css({
@jonahlyn
jonahlyn / dabblet.css
Created September 12, 2012 16:34
Playing with Tab Styles
/**
* Playing with Tab Styles
*/
/* Tab Styles for Search UNM */
#searchnav li a {
background: linear-gradient(top, #F40046 0%, #C10037 100%);
@jonahlyn
jonahlyn / dabblet.css
Created September 12, 2012 16:26
Sticky Header for UNM Template
/**
* Sticky Header for UNM Template
*/
#unm_header {
z-index: 11;
margin-top: -13em;
width: 100%;
position: fixed;
@jonahlyn
jonahlyn / gist:3231283
Created August 1, 2012 22:31
Groovy SimpleTemplateEngine Example
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)
@jonahlyn
jonahlyn / gist:3231270
Created August 1, 2012 22:29
Groovy Markup Builder Example
import groovy.xml.MarkupBuilder
def mkp = new MarkupBuilder()
mkp.html {
body {
p "Hello"
}
}