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
$('<div>', { | |
class: 'question-summary', | |
id: 'question-summary-QID', | |
html: $('<div>', { | |
class: 'statscontainer', | |
html: $('<div>', { | |
class: 'statsarrow' | |
}) | |
}).append($('<div>', { | |
class: 'stats', |
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
// ==UserScript== | |
// @name Hippietrail's Stack Exchange link sharer | |
// @description Adds a place where you can select and copy the question title + link in markdown | |
// @version 0.9 | |
// @namespace hippietrail | |
// @include http://stackoverflow.com/* | |
// @include http://meta.stackoverflow.com/* | |
// @include http://serferfault.com/* | |
// @include http://meta.serferfault.com/* | |
// @include http://superuser.com/* |
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
// ==UserScript== | |
// @name Hippietrail's travel.SE enhancements | |
// @description highlight tags without tag wiki excerpts | |
// @version 0.6 | |
// @namespace hippietrail | |
// @match http://travel.stackexchange.com/* | |
// @match http://meta.travel.stackexchange.com/* | |
// ==/UserScript== | |
// |
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
<html> | |
<head> | |
<meta charset="utf-8"> | |
<!-- styles that came with the shell code --> | |
<style type="text/css"> | |
body { | |
font-family: monospace; | |
font-size: 10pt; | |
} |
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
<html> | |
<head> | |
<!--Load the AJAX API--> | |
<style type="text/css"> | |
</style> | |
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function(){ | |
// initialize stuff | |
// ... |
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
<html> | |
<head> | |
<!--Load the AJAX API--> | |
<style type="text/css"> | |
#input { | |
width:100%; | |
height:95%; | |
} | |
#text { | |
width: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
<html> | |
<head> | |
<title>Travel StackExchange / jQuery / Stack Exchange API / YQL / CORS</title> | |
<script id="jqs" type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script> | |
<style type="text/css"> | |
.container { | |
width:100%; | |
} | |
.left { | |
width:75%; |
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
#!/usr/bin/perl | |
# stripgutenberg.pl < in.txt > out.txt | |
# | |
# designed for piping | |
# Written by Andrew Dunbar (hippietrail), released into the public domain, Dec 2010 | |
use strict; | |
my $debug = 0; |