Drag from an existing node to add a new node or link. Click to select/deselect nodes/links. Hit the DELETE key to remove the selected node or link. Drag to pan. Scroll to zoom.
Built with D3.js.
Drag from an existing node to add a new node or link. Click to select/deselect nodes/links. Hit the DELETE key to remove the selected node or link. Drag to pan. Scroll to zoom.
Built with D3.js.
| sudo dtrace -n 'JavaScriptCore*:::profile-will_execute{ trace(arg0); trace(copyinstr(arg1)); trace(copyinstr(arg2)); trace(arg3) }' -n 'JavaScriptCore*:::profile-did_execute{ trace(arg0); trace(copyinstr(arg1)); trace(copyinstr(arg2)); trace(arg3) }' | |
| arg0: profileGroup (int) | |
| arg1: function (string) | |
| arg2: file-url (string) | |
| arg3: line (int) | |
| From: http://developer.appcelerator.com/question/121573/how-do-i-use-so-library-in-module | |
| Place .so files in mymodule/lib/armeabi | |
| Add this to build.xml: | |
| <target name="post.jar"> | |
| <copy todir="${libs}"> | |
| <fileset dir="lib"> | |
| <include name="**/*.so"/> |
| view.post(new Runnable() { | |
| @Override | |
| public void run() { | |
| int width = view.getWidth(); | |
| int height = view.getHeight(); | |
| //do something cool with width and height | |
| } | |
| }); |