Posted by hank,
Wed Apr 04 19:49:00 UTC 2007
Today, I had a problem doing this:
<input type='text' readonly onFocus="alert('manatee');this.blur();" />
The problem was it would go into an infinite alert loop. That’s not cool. The fix was to reverse the calls:
<input type='text' readonly onFocus="this.blur();alert('manatee');" />
Tags: problem
Posted by hardwarehank,
Sun May 21 01:46:40 UTC 2006
Well, I finally got this damn blog working thanks to bish0p. Turns out that you have to change the shebang line from
to
Ahh typo is nice. Other crap I learned today:
Problems with typo themes generating application errors can be solved by changing this line in layouts/default.rhtml
<%= render_component(:controller => 'sidebars/sidebar', :action => 'display_plugins') %>
To this:
Thanks to This dude.
I generated a new GPG keypair today (Public Key). Get it like this:
gpg --keyserver subkeys.pgp.net --recv-keys 46C171A0
I also integrated into Pine, which makes it simple to send signed/encrypted email.
I’m still struggling with Ruby/SVN bindings by kou. They are completely undocumented, so I have been trying to analyze the tests that are included in the svn source. Apparently, Collaboa is using them in their rails app. I will have to take a look at their code, and hopefully it will shed some light on the subject.
I upgraded phpGedView today, so it’s a secured. Home directory cleaning ensued, and now my mod0 space is much more efficiently used.
I jumped back into the old Afternet #trivia chan tonight, after about 10 minutes of trying to remember what network it was on. I had some trouble with BitchX autoignoring the triviabot, so I googled a fix for it:
# To Add someone:
/addnoflood nickname
# To list:
/addnoflood
Yay - now I can use the bot in peace. I better dump the commands so if I ever go back I don’t have to flood the chan trying to remember everything:
To play, just watch for Weirdbot to ask questions, and type in the answer.
Some useful commands to get you started:
!hint (shows some letters of the answer, helping you guess)
!repeat (if you missed the question)
!stats (to see your stats and scores)
More help is on the following topics, do !help <topic> for more information.
auth best categories commands gmail website
Commands available to you: (privileged commands)
!add (to submit new questions)
!category (to choose next period's category)
!fix (to mark the question for a spelling or fact fix)
!friend (to make a friend of the channel)
!hint (to begin showing hints)
!join (to join a team)
!ping (to request a latency ping)
!repeat (to repeat current question)
!rules (to show game rules)
!server (to show best irc server)
!seen (to show when your friend was on)
!stats (to show your stats)
!suggest (to make a suggestion)
I started trading for real today. It’s a big step, and from now on my taxes will be harder to do.
Tags: problem