Tag Archives: how to
intellij-idea-9-code-formatting-settings

How to Make IntelliJ Re-combine Split Lines (Ignore Newline Characters)

If you are an IntelliJ user and were wondering how to have IntelliJ reformat an entire file – including throwing out newline characters that were splitting lines and re-combine them – you are in luck. As it turns out IntelliJ IDEA already supports this feature, unfortunately it is just hidden in an unexpected place (at [...]

Read full storyComments { 0 }

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

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 [...]

Read full storyComments { 0 }
windows-7-huge-folder-cannot-delete

Disable 'Indexing' in Windows 7 to Speed Up Deletion of Many Files

I’ve been on Windows 7 since the RC was released — that coupled with the fact that I’m a blogger makes me an expert, you should trust me and take my word on everything unconditionally — and while I’ve been overall pretty happy (20 tips and tricks, 8GB performance) there have been a few niggles [...]

Read full storyComments { 0 }
how-to-crack-any-padlock

How to Crack any Padlock

Pretty awesome real-world algorithm guide for cracking any padlock out there — not that secure for folks in-the-know:

Read full storyComments { 0 }

How to Remove reycross.com WordPress Malware

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 [...]

Read full storyComments { 7 }

Did You Know enums Can Define Their Own Methods?

… 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 [...]

Read full storyComments { 4 }
share-my_project

How to Setup an SVN Server to use in Eclipse

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 [...]

Read full storyComments { 0 }