Tag Archive | "how to"

Use IHeaderResponse.renderJavaScript(CharSequence,String) to Avoid Duplicates

Friday, March 5, 2010

0 Comments

Apace Wicket Quick Tip If you are working with multiple AjaxEventBehavior’s (like AjaxFormSubmitBehavior and AjaxFormValidatingBehavior) on similar components in a Page and you are using IHeaderResponse.renderJavaScript(CharSequence) it’s possible you are contributing duplicate JavaScript over and over again to the header section of your Page unecessarily. As it turns out, by simply changing to use the IHeaderResponse.renderJavaScript(CharSequence,String) method (providing [...]

Continue reading...

How to Remove reycross.com WordPress Malware

Tuesday, September 15, 2009

7 Comments

It seems that a new WordPress malware hijack is making the rounds and we got hit. Google just issued me a “this site contains malware” warning for my sites, after some quick investigation it looks like the hijack has attached a malicious <iframe> block to the end of every HTML and PHP page in the [...]

Continue reading...

Did You Know enums Can Define Their Own Methods?

Monday, April 20, 2009

4 Comments

… I sure as hell didn’t, but found myself in a position the other day where I was thinking “Damn, I wish I could define a common method in this enum that I could call and not have to write another utility method…” Well, ask and ye shall receive… or something like that. Here’s the enum [...]

Continue reading...

How to Setup an SVN Server to use in Eclipse

Monday, November 17, 2008

1 Comment

So, after thousands of lines of code you’ve managed to build an awesome, feature rich program, and you are really to label it 1.0. You want to bring in more developers because it is doing so great… What do you do? Well, regardless of whether you have hit 1.0, version control is something [...]

Continue reading...