3 out of 4 girls working in conjectPM development have their birthdays within 2 days… that’s why we only brought 1 cake. A home made three-tier nougat cake with ourselves modelled in marzipan on top. And we’re still trying to find out who in the company ate the figures (that is, us!) – or took them home to perform some voodoo magic with them, we’re not sure.
With JDK 6 new possibilities open to developers. JDK 6 includes scripting API and one its implementation – Mozilla Rhino – Javascript execution engine. This technology allows us to execute Javascript code within JRE and to call Java code from Javascript running by this engine. Following code will run without any additional libs in classpath:
-
ScriptEngineManager manager = new ScriptEngineManager(); // get ScriptEngineManager
-
//get Mozilla Rhino implementation of ScriptEngine interface
-
ScriptEngine jsEngine = manager.getEngineByExtension("js");
-
jsEngine.eval("print(‘Hello world!’);"); // run hello world
If you want to create an ad hoc distribution profile for your app, you need to know the identifier (UDID) of each and every iPhone you want to install the app on.
Use this great page to help your beta testers find out their UDID:
http://www.innerfence.com/howto/find-iphone-unique-device-identifier-udid
Thanks guys.
