
Do you train Kung Fu?
Or know someone who does?
Then check out KungFuPeople.com
Mobile version of this pageLastGraph - visualizing your Last.fm usage
Next:
Tip: creating a Xapian database in Python
Related blogs
Git + Twitter = FriedcodeiPhone push notifications for Twitter with Prowl
My first Twitter app - KungFuPeople.com
ReCSS a tool to reload the CSS without reloading the whole page
Related by category
Bookmarklet to replace the current domain with localhost:8000
browser bookmarks, bookmarklet, localhost, 8000, oauth, twitter
16th of January 2010
If you, like me, have various projects that do things like OAuth on Twitter or Google or you have a development site that goes to PayPal. So you're doing some Django development on http://localhost:8000/foo and click, for example, to do an OAuth on Twitter with an app you have there. Then Twitter will redirect you back to the live site with which you've set it up. But you're doing local development so you want to go back to http://localhost:8080/... instead.
Add this bookmarklet: to localhost:8000 to your browser Bookmarks toolbar and it does exactly that.
Here's its code in more verbose form:
a = function(){
location.href = window.location.href.replace(/http:\/\/[^\/]+\//,
'http://localhost:8000/')
};
if (/Firefox/.test(navigator.userAgent)) {
setTimeout(a,0)
} else {
a()
}
})()


Save this page in del.icio.us