Tagged Questions
The neko tag has no wiki summary.
5
votes
5answers
1k views
What alternatives to Hans Boehm GC are out there for small devices?
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 ...
2
votes
1answer
167 views
Is haXe really good for php-targetting server side development?
I have such a conception, to build a simple web application using some php/mysql hosting service. I'd also like to create a local version of that app. The local version should work similarly as the ...
2
votes
3answers
260 views
Errors while compiling Neko VM OS X
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 ...
2
votes
3answers
539 views
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?
1
vote
1answer
60 views
How to configure nekohtml parser to properly close the anchor tag?
I'm using the nekohtml parser to parse my html code. Sometime my mistake while using anchor tag the content has been written like this.
<a href="http://abc.com"><a ...
1
vote
1answer
53 views
Compiling NekoVM dll on win32
Neko is a virtual machine for the HaXe languge. I am having some problem with compiling it on win32. The version in question is neko-1.8.1.tar.gz, which can be downloaded from ...
1
vote
2answers
244 views
neko vm ? need to download like jvm?
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?
0
votes
0answers
36 views
having problems with extra field while reading zip64 archive
I'm trying to get a file from a zip archive. in case archive is zip64 (4th bit in flags is '1') na exception is thrown. Zip reader embeded in haXe does not support extra fields. The question is ...
0
votes
2answers
199 views
NekoHTML: how to write contents of Document Object to String
I am using NekoHTML to parse contents of some HTML file..
Everything goes Ok except for extracting the contents of the Document Object to some string..
I've tried uses
TransformerFactory ...
0
votes
2answers
256 views
How to configure the Nekohtml html parser to turn <br> into <br />
I'm evaluating the Nekothml parser among other Java HTML parsers, and I'm trying to make it replace all my <br> with <br /> elements. Can this be done using the Nekohtml API?
Any feedback ...
0
votes
2answers
261 views
Can't call getElementsByTagName on a node in Xerces or Neko?
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 = ...
0
votes
2answers
355 views
Unicode issue with freetype (C)
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 "ü", "Ä" ...
0
votes
2answers
621 views
Fast server side image generation library?
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 ...