Malicious enjoyment derived from observing someone else’s misfortune
 

Tag Archives: problem

Javascript blur problem

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’);” />

First Post, What to say

Well, I finally got this damn blog working thanks to bish0p. Turns out that you have to change the shebang line from #!/usr/bin/env ruby to #!/usr/local/bin/ruby 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: <%= render_sidebar %> Thanks to This dude. I generated a new GPG keypair today (Public Key). Get it like [...]