Stanley comments on [META] Alternatives to rot13 and karma sinks - Less Wrong
You are viewing a comment permalink. View the original post to see all comments and the full post content.
You are viewing a comment permalink. View the original post to see all comments and the full post content.
Comments (31)
This is a great solution! And it could be made even easier by readers not having to install the bookmarklet, but to include the "Rot 13" button directly in the LW pages. With "position:fixed" it would be always on screen.
Like this:
<script type="text/javascript">
function rot13() {
// rot13 code here
}
</script>
<style type="text/css">
#tools { position: fixed; }
</style>
<div id="tools">
<p><a href="javascript:rot13();">Rot 13</a>
</div>
I've made a ro13 function here. It returns a RO13'd version of it's arguments.