Neko and haxe.Timer.delayed()
As every haXe developer knows, you could use haxe.Timer.delayed() to delay function call for some time. But this function doesn't exist for neko at all. Is there a way to achieve the same results? ...
As every haXe developer knows, you could use haxe.Timer.delayed() to delay function call for some time. But this function doesn't exist for neko at all. Is there a way to achieve the same results? ...
I'd like to use a virtual machine like NekoVM into a small device but to build it, it requires Boehm GC, however there is no port of that GC to that small device so I was wondering if there is any alternative to it, something that could be done exclusively with C code? ...
For a web project I need the possibility to generate jpg and animated gif images very fast. As server platform I will use Linux and the NekoVM (behind a apache via mod_tora). As there is no library for image generation for haXe and neko I am about to write a own one. Neko itself is written in c, and you can simply extend the VM writing ...
I'm trying to compile the Neko VM on Mac OS X (10.5.7) using GCC 4.01 and I'm completely stuck, because it stops while compiling saying: vm/threads.c:202: error: conflicting types for 'neko_thread_register' vm/neko_vm.h:37: error: previous declaration of 'neko_thread_register' was here I've tried googling this and some say it's becaus...
i new to neko vm. may i know in order to use it, i need to download the vm and install on client's browser? it is the same like java vm right? what is the different from java applet using jvm? ...
Hi guys, I currently working on a library for the NekoVM to create a binding to Freetype 2. It is written in plain c and it all works really nice, except when the user enters some unicode chars like "ü", "Ä" or "ß" they will be transformed into to some ugly square-like letters. When I recieve the data from the NekoVM you use val_string ...
hi all I'm trying to parse a DOM tree using Neko/Xerces in Java. NodeList divs = this.doc.getElementsByTagName("DIV"); for(int i=0; i < divs.getLength(); i++) { NodeList images = divs.item(i).parentNode().getElementsByTagName("IMG"); // operate on these } is what I'd ideally like to do. It seems I can only call getElementsByT...
while parsing html source with nekohtml whether it parses anchor tag with block elements like div h1 etc.. correctly. For example: (HTML source) <a href="http://www.abc.com">link<div>example<a href="http://www.ghj.com">ghj link</a></div><h1>link here</h1></a> Expected Result(After parsing) <a href="ht...