Updated 2026-08-29: replaced easy_install with pip, and dropped the bundled-zmq build flag since pyzmq ships wheels and pip removed --install-option.
These are my notes for installing Eastein’s announce. It’s a IRC bot that will receive a message and do text to speech on the message: https://github.com/eastein/announce
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.”
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
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();
}