Eli Grey

rot13 DejaVu fonts

I found myself wondering how to rot13 cipher text in a web browser without JavaScript or server-side interaction. I then came up with this idea, rot13 fonts. I have made rot13 equivalents for 2 DejaVu fonts, Sans and Serif. I only have the fonts use the rot13 affected characters, a-z; A-Z, Unicode ranges: U+0041-005a, U+0061-007a. This is so it would be more suitable for web use because the DejaVu fonts are 500KB+ each. The rot13 fonts are 12kb to 14kb large.

You can test these fonts to view “Uryyb Jbeyq!” (rot13 “Hello World!”) at this test page. The test page requires Firefox 3.1+ or Safari 3.1+ or for both rot13 DejaVu Sans and Serif to be installed on your computer.

The fonts are available for download here.

rot13 DejaVu Fonts being rendered in Safari 3.1.2

rot13 DejaVu Fonts being rendered in Safari 3.1.2

rot47 DejaVu fonts may be added when I get the time.

Noteboard

I made a simple notepad called Noteboard out of my necessity to make notes while browsing the web but not wanting to have to open up a seprate application to put the notes down and not wanting to store them on an external server. It is called Noteboard because it’s main use for most people would to a notepad to store text off of your clipboard. My solution was to make a webapp that uses the JavaScript globalStorage object to locally store what is typed into the text box. It also supports the tab key. To make it even more secure from someone (aka. me) from reading what you have locally stored for Notepad I have put this webapp on it’s own subdomain so I can’t use globalStorage on the main site to find out what you are typing on Noteboard. Noteboard currently only works for Firefox 3 and up.

Noteboard – noteboard.eligrey.com

Alternate Noteboard – noteboard.nfshost.com (this one uses the domain, nfshost.com, so there is NO possibility of me reading your notes.)

Embedded Edition – Everything in one file.

You may host Noteboard on your site as long as you keep the CC license in it.

I may also get a new domain just for noteboard if I can find one that isn’t already registered. (maby something like noteboard.it)

Bookmarklet to launch a Notepad popup: Noteboard (drag to bookmarks)

Update: I also added a status bar that displays the word stats and Noteboard doesn’t use the browser statusbar anymore because most people have JavaScript changing status bar text disabled.

Example:

<tab>Hello world! My name is Elijah Grey.
I am 123 years old. My website is www.eligrey.com

Returns these stats: Lines: 2; Words: 15; Characters: 87; Spaces: 14; Numbers: 3; Tabs: 1; Total Whitespace: 16

Custom protocols

I just made a site for using custom protocols with Firefox 3. The purpose of this tool is to remove the extra <protocol>: from <protocol>:example because Firefox sends the whole uri including the protocol. Example of google:example – http://www.google.com/search?q=google:example becomes http://www.google.com/search?q=example. Double forward slashes (//) are also removed from the redirect. The site has no images or css because of: a) I only made the site for function, not style. b) Just in case the site suffers from the Digg effect. (Which is more likely to happen to this blog with css anyways though.)

You can try these links to test out your new custom protocols after you install the google and wiki protocols in Firefox 3 – google://site:www.eligrey.com, wiki:protocol. There’s even a protocol: protocol for finding more custom protocols!

If you want me to add a protocol, please email me at custom.protocols {.at.} eligrey {.dot.} com with the following things but first view this list with all the protocols to make sure the :

  • The protocol, ie “google:”
  • The url that the protocol will redirect to, example: “http://www.google.com/search?q=%s” (%s is everything after <protocol>:)
  • The protocol name, ie “Google Search Protocol”
  • Optional link to site, ie “http://www.google.com/”

Custom protocols: p.eligrey.com

PS. I do not collect any of your personal data. I only redirect you to where you want to go with custom protocols. If you don’t trust me, don’t use this service.

Update: Sorry, I’ve taken the site down. I may re-launch a similar site way later in the future.