You can't be 3l33t until you have one of these in your closet. :)


1 comment(s) | link to this entry | edit this entry

Messenger Plus Extension has a new version out! Cop it~~ :)


0 comment(s) | link to this entry | edit this entry

So what is Google going to do with Blogger???


0 comment(s) | link to this entry | edit this entry

Here's a very simple script I wrote that some of you may find useful...

Javascript snippet that will hide all elements that appear before this code.

<div id="myHeader"></div>
<script>
<!--
b = document.getElementById("myHeader");
if (b) {
     o = b.previousSibling
     while (o) {
        if (o.style) {
             o.style.display = "none";
        }
        o = o.previousSibling;        
     }
} 
// -->
</script>
Here's another one... Javascript snippet that will hide tables that have table headings that contain a certain sequence of characters. The code hides table with the heading "Table Title", but you can just change that to whatever title you want. Of course, you can hide more than one table.

<script>
<!--
function hideTable(tables, title)
{
     var rexp = new RegExp(title);
     for (var i = 0; i < tables.length; i ++) {
          var ths = tables.item(i).getElementsByTagName("th");
          if (ths.length > 0) {
               var th = ths.item(0);
               if (th.innerHTML.search(rexp) > 0) {
                    tables.item(i).style.display = "none";
              }
          }
      }
}

window.onload = function() {
     var tables = document.getElementsByTagName("table");
     hideTable(tables, "Table Title");
}
// -->
</script>

Provided as is, without any implied warranties. :)


1 comment(s) | link to this entry | edit this entry

I don't normally listen to music when I'm working, cuz for some odd reason I don't like having headphones on when I'm working. It becomes distracting... When I get in the zone I don't really hear anything... I just stare at the monitor, think about design and logic in my head, and my hand just magically types away. Perfect harmony, in my opinion. :) But if I'm not in the zone, then I hear stuff... conversations going on around me, people walking by, or hums from nearby gadgets that have fans or what not... I just realized that one of the PCs I have sound like it's about to come apart and just die... I should find out why the hell the fan is grinding away like that... -.-;;


0 comment(s) | link to this entry | edit this entry

Joe directed my attention to Konfabulator which presumably makes it very easy to create Mac OS X Desktop Widgets... As I read about it more and more, I want to go and try this damn thing out... This could be pretty damn cool, if it does what it seems to claim... *GRIN*


0 comment(s) | link to this entry | edit this entry

Want some more? Dig in to the archive for past entries.