0
votes
0answers
29 views

Realitime data translation

I'm a bit confused with sending a data to user. I'm using some api to download files from one site to be able to pass data to a user through my site. The problem is that server waits while pipe get a ...
1
vote
1answer
379 views

Transferring large amounts of json over http

I have large amounts (gigabytes) of json data that I would like to make available via a restful web service. The consumer of the data will be another service, and it will all be happening on a server ...
0
votes
0answers
81 views

Chrome Handling dataTransfer.types as Object

I'm having a really funky issue with dataTransfer in Chrome 24.0.1312.5 that I'm hoping I could get some ideas on. Basically, I have a nodeIterator that singles out some useful elements from an ...
1
vote
1answer
150 views

How can I change html code of a page from another page?

At page index.htm, I have this list: <ul id="topic"> <li id="1">Thing1.</li> <li id="2">Thing2.</li> </ul> I'd like to add and remove li itens from other page ...
3
votes
2answers
1k views

Javascript string comparison fails

I simply need to compare two strings, which contains a special char (eg. the danish å). The first one coming from event.dataTransfer.files[0].name and the second one from the server when the file ...
0
votes
0answers
767 views

Passing Data from Child Javascript Page to Parent Javascript Page

I am working with Javascript. I was using an alert to get a password from a user. However, as you may know, the alert does not mask the password from other "shoulder surfing". In an attempt to fix ...
-1
votes
1answer
830 views

Passing Data from Javascript to PHP [duplicate]

Possible Duplicate: Passing multiple parameter to PHP from Javascript I am currently trying to pass data from Javascript to PHP. I have the PHP script is accessed from the Javascript ...
0
votes
3answers
567 views

Transferring large arrays from server to client in GWT

I'm attempting to transfer a large two dimensional array (17955 X 3) from my server to the client using Asynchronous RPC calls. This is taking a very long period of time which is especially bad ...
0
votes
1answer
698 views

How could I find out the optimal performance of socket.io? In another word, what is the limit of socket.io in bytes/second?

I am using socket.io listening on my express application. When my server gets an object, the connected socket immediately does socket.emit and send that JSON object to the client. My question is that ...
1
vote
3answers
240 views

Transfer an 8 mb double array to javascript

I have a 1024x1024 double matrix (i.e. 8mb array) which I need to use in a javascript app. I found that using sylvester is quite useful for manipulating my matrix. My problem right now is simply to ...
1
vote
2answers
1k views

Is there a javascript equivalent of php's urldecode or html_entity_decode()?

I've got an associative array in php that I want to stick into a hidden form input so that I can later get the values in javascript. Because of quoting issues, I need to urlencode the json, or ...