blog.robin-ann.net

My BLOGS: Curriculum Vitae | blog.robin-ann.com | blog.nH
Webpages in Progress: bally duff | nH.org | nH.com
Tools: DNS | domains | di.fm | ebay | csscreator | Site Experts

this iz RA'z FuN rezidense

blog.robin-ann.net is an extension of robin-ann.com and is proclaimed as the site for fun, quirky, nonsensical, cool, crazy, daffy, dizzy, flaky, foolish, for grins, freaked out, freaky, gagged up, goofball, idiotic, illogical, inane, incongruous, irrational, jokey, joshing, kooky, laughable, looney, ludicrous, monkey, nutty, preposterous, sappy, screwy, senseless, sensational, shtick, silly, stupid, tomfool, unusual, unreasonable and wacky posts!


Monday, June 19, 2006

The Nashua History Dotcom News

Working on Nashua History Dotcom News


Wednesday, June 14, 2006

live@robin-annDotcom

Onsite today with Robin-Ann.com


Tuesday, May 30, 2006

Desktop Emergency

My HP sparked and smoked last Wednesday... I'm tapping on my old gateway to log certain limited events....


Wednesday, May 03, 2006

Nav Looking for a Timeout

Please see my http://www.robin-ann.net/SE/example--nav-looking-for-a-timeout.htm page for the example since I really do NOT feel like adding an iframe on this page.


Friday, April 28, 2006

Table Image Rollover Rotator

It's good to have friends...


I combined two scripts from posts on www.siteexperts.com and created this neat little do-da which is inserted on the page by iframe since blogger does not allow such crazy behaviors such as javascript.

refs:
MHenke : http://www.siteexperts.com/forums/getMessage.asp?m_id=83020
raphpell : http://www.siteexperts.com/forums/getMessage.asp?m_id=84262


Saturday, April 22, 2006

Speaking at the Christa McAuliffe Planatarium


link to the Planatarium


Tuesday, February 21, 2006

ROT-13 Javascript Spam Defender

From the Rose Garden emerges a nice javascript to confuse spam-bots. This ROT-13 code will defend against most of those evil buggers from harvesting your email address.

<!-- Script to hide email address using ROT-13 -->
<script language='JavaScript'>
<!--
function rot13 (string) {
  var aCode = 'a'.charCodeAt();
  var zCode = 'z'.charCodeAt();
  var ACode = 'A'.charCodeAt();
  var ZCode = 'Z'.charCodeAt();
  var result = '';
  for (var c = 0; c < string.length; c++) {
    var charCode = string.charCodeAt(c);
    if (charCode >= aCode && charCode <= zCode)
      charCode = aCode + (charCode - aCode + 13) % 26;
    else if (charCode >= ACode && charCode <= ZCode)
      charCode = ACode + (charCode - ACode + 13) % 26;
    result += String.fromCharCode(charCode);
  }
  return result;
}
// -->
</script>

<p>Here is my email address: <script language="JavaScript">
<!--
var name="ebova-naa@ebova-naa.pbz";
document.write('<a href=\"mailto:' + rot13(name) + '\">');
document.write(rot13(name) + '<\/a\>');
// -->
</script></p>
<!-- End of example code -->