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
// Tumblr bookmarklet script | |
javascript: | |
var%20d = document, | |
w = window, | |
e = w.getSelection, | |
k = d.getSelection, | |
x = d.selection, | |
s = (e?e():(k)?k():(x?x.createRange().text:0)), | |
f = 'http://www.tumblr.com/share', |
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
ServerPath /repo/ | |
RewriteEngine On | |
RewriteRule ^(/repo/.*) /path/$1 |
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
$(document).ready(function() { | |
jQuery.fn.commentform = function(){ | |
return this.each(function(){ | |
$("#slider").slideToggle("slow").toggleClass('open'); | |
$(this).toggleClass("active"); | |
if($(this).attr('id')){ | |
var replyData = /reply-([\d]{1,})-([\w]{1,})/.exec($(this).attr('id')); | |
var userSelection = getSelectedText(); | |
if(userSelection){ |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<script type="text/javascript" src="http://digitalmash.com/assets/js/jquery.js"></script> | |
</head> | |
<body> | |
<script type="text/javascript" charset="utf-8"> |
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
$(document).ready(function() { | |
$('input:file').each(function(index) { | |
$(this).wrap('<label class="file-input"></label>').wrap('<div class="file-wrapper" style="position:relative;"></div>'); | |
$('.file-wrapper').prepend('<span class="file-input-title">Upload file</span>').append('<span class="file-input-path">...</span>'); | |
$(this).css({'opacity':'0.0', 'position':'absolute', 'top':'0', 'left':'0'}); | |
$(this).change(function(){ | |
var value = $(this).val(); |
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
from django.conf import settings | |
from django.contrib.auth.decorators import user_passes_test | |
@user_passes_test(lambda u: u.has_perm('foo.bar'), login_url=settings.LOGIN_URL) | |
def widgetize(request): | |
""" Clever, clever, clever... """ | |
pass |
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"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>nginx</string> | |
<key>Program</key> | |
<string>/usr/local/sbin/nginx</string> | |
<key>KeepAlive</key> | |
<true/> |
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
<li> | |
<% editors = Editor.all() %> | |
<select class="<%= (editors.map(&:id).include?(params[:id].to_i)) ? 'active' : '' %>"> | |
<option value="">filter</option> | |
<option value="everyone">everyone</option> | |
<% editors.sort_by(&:friendly_name).each do |editor| %> | |
<option value="<%= editor.id %>" <%= (params[:id] == "#{editor.id}") ? 'selected' : '' %>><%= editor.friendly_name %></option> | |
<% end %> | |
</select> | |
</li> |
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
[2011-07-30 11:59:39,749: WARNING/MainProcess] [email protected] has started. | |
[2011-07-30 11:59:39,777: WARNING/MainProcess] Traceback (most recent call last): | |
[2011-07-30 11:59:39,777: WARNING/MainProcess] File "/Users/justin/Sites/_virtualenvs/cobracommander/bin/django-admin.py", line 5, in <module> | |
[2011-07-30 11:59:39,777: WARNING/MainProcess] management.execute_from_command_line() | |
[2011-07-30 11:59:39,778: WARNING/MainProcess] File "/Users/justin/Sites/_virtualenvs/cobracommander/lib/python2.7/site-packages/django/core/management/__init__.py", line 429, in execute_from_command_line | |
[2011-07-30 11:59:39,778: WARNING/MainProcess] utility.execute() | |
[2011-07-30 11:59:39,778: WARNING/MainProcess] File "/Users/justin/Sites/_virtualenvs/cobracommander/lib/python2.7/site-packages/django/core/management/__init__.py", line 379, in execute | |
[2011-07-30 11:59:39,778: WARNING/MainProcess] self.fetch_command(subcommand).run_from_argv(self.argv) | |
[2011-07-30 11:59:39,779: WARNING/MainProcess] File "/Users/justin/Sit |
OlderNewer