Tableizer
Freaking brilliant tool that converts spreadsheet format things to HTML: http://tableizer.journalistopia.com/tableizer.php
Freaking brilliant tool that converts spreadsheet format things to HTML: http://tableizer.journalistopia.com/tableizer.php
If you’re using Phonegap Build, you don’t need to include cordova-2.4.0.js or any other specific version of cordova/phonegap. Just use phonegap.js, but you don’t actually need to include phonegap.js in the file you upload to Phonegap Build.
Quote from the Phonegap Build site:
“Once you’ve included the necessary assets, remove the
phonegap.js(cordova.js) as Build will automatically inject it during compile time.”
If your sharepoint lists crash IE as soon as they open, try disabling the following IE addons:
This macro will ask the user to input an excel file, then open that excel file:
Sub RunMacro()
Dim vaFiles As Variant
Dim i As Long
vaFiles = Application.GetOpenFilename _
(FileFilter:="Excel Filer (*.xls),*.xls", _
Title:="Open File(s)", MultiSelect:=False)
If Not IsArray(vaFiles) Then Exit Sub
With Application
.ScreenUpdating = False
For i = 1 To UBound(vaFiles)
Workbooks.Open vaFiles(i)
Next i
.ScreenUpdating = True
End With
End Sub
Since Java SE 6 Update 10, Java has had an updated interface called Nimbus. Comparison pictures are below.
All I needed to do to use it was add this import to the top of the .java file with my main() method: import javax.swing.UIManager.*;
And this code to the top of the main() method (http://stackoverflow.com/questions/4617615/how-to-set-nimbus-look-and-feel-in-main):
public static void main(String[] args) {
try {
for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (Exception e) {
// If Nimbus is not available, fall back to cross-platform
try {
UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
} catch (Exception ex) {
// not worth my time
}
}
new Controller();
}
Default: 
Nimbus: 
Note: This blog post says it is slightly slower than the default: http://www.pushing-pixels.org/2008/06/17/lightbeam-measuring-performance-of-swing-look-and-feels.html
Want to disable the IE7 pop-up saying “Protected mode is currently turned off”?

Solution: Just right-click the message and click “Don’t show this again”.
This is a simple one. You’re asking java to return an Array as a string.
Solution: Put Arrays.toString( ) around your Array.
“Exception is the base class for all exceptions”
“Thus any exception that may get thrown is an Exception (Uppercase ‘E’).”
Meaning, catch(Exception e) will catch any type of exception that is thrown, as opposed to specific Exceptions.
Example:
try {
// code
}catch(Exception e)
{
//catch all exceptions
}
“The lower case ‘l’ refers to the locality (city).”
This website has code to help get rid of the jerking effect on Jquery SlideUp in IE9: https://siderite.dev/blog/jquery-slideup-flickers-in-internet.html
You just add this code after you include your Jquery library:
(function(){
// Define overriding method.
jQuery.fx.prototype.hide = function(){
// Remember where we started, so that we can go back to it later
this.options.orig[this.prop] = jQuery.style( this.elem, this.prop );
this.options.hide = true;
// Begin the animation
this.custom(this.cur(), 1);
}
})();