Tagged Questions
3
votes
4answers
55 views
Option to display formatted C program in iOS
What are the option that I can use to display formatted C Program in iOS. What I can think of right now is
1. Make a HTML file with code in it, and find some CSS to display in web view. Not a good ...
0
votes
1answer
58 views
HTML & C Programming
I am writing a dynamic webpage that is compiled and dynamically loaded using a C program. I have been writing the code by using:
printf ("<p><h1>Hello world!</h1></p>\n");
...
1
vote
1answer
32 views
How do i read a data from stdout of linux to ajax and get a certain string?
I have a c program in linux that reads data sent by php using fwrite and output a string in linux.
AJAX
$.ajax({
type: "POST",
data: {cmd:"IN"},
url: ...
1
vote
1answer
126 views
When asm.js is faster than normal JS code, why should I write new code in JS?
Emscripten could generate faster code from C/C++ than JS code wrote by hands, so is that means we should write new code in C/C++ and compile them to run on Web?
I read the Emscripten FAQ, it says "By ...
2
votes
0answers
34 views
XMLHttpRequestProgressEvent manipulation from PHP
I'm struggling with this issue: I have a web interface that connects, using sockets, to various C programs running on some routerboards. Every time the C application sends something through the ...
2
votes
0answers
53 views
In a native node module, how can I make sure that my async code is always running on the same thread?
I'm writing a native node module in C++ which will be a binding for a C library.
Some of the objects in this library must only be used by a single thread. Which means that if I use uv_queue_work I ...
0
votes
2answers
129 views
Writing optimised JS for asm.js
There is quite a bit of excitement on asm.js and how it will be able to run some very heavy applications. However, it is compiled from C++ code. Is it still possible to get the benefit of current ...
1
vote
2answers
50 views
C-like Code snippets definition in javaScript
In C, you can do something like this:
#define NESTEDFOR(i,j,n) for(i=0; i<n; i++) for(j=0; j<n; j++)
So you can use NESTEDFOR(x,y,200) to save time, because it will be replaced with for(x=0; ...
0
votes
1answer
88 views
Lightweight, embedded JavaScript engine for C++ [closed]
We are planning to integrate a server-side scripting engine inside Orthanc, an open-source DICOM store (similarly to what is done in CouchDB).
Because Orthanc is built upon Web technologies, we would ...
-3
votes
1answer
36 views
Javascript injection from npapi plugin [closed]
I want to inject some javascript into a webpage from my npapi plugin?? I just read this article
But i didn't get the result i was waiting for. (nothing in the javascript console)
0
votes
0answers
34 views
Code Coverage Tool supporting for C/C++ , Java & Javascript fully? [duplicate]
I'm looking for code coverage tool supporting for all following language.
; C, C++, Java, Javascript
Would you please let me know any experience or information?
Thanks~
-1
votes
0answers
83 views
how to retrieve particular field from last inserted record from oracle database and display that in a text box in JSP
*I have a student login form where i am inserting student data such as student id,name,degree,semester,branch,year,email,username,password into "student" database(Oracle 10g).
I have another ...
-5
votes
1answer
53 views
How to loop hex in Javascript? [closed]
In C, the output is what I expect. In Javascript, the output is not what I expect. In Javascript, the hex loops in decimal not in hexadecimal.
C:
#include<stdio.h>
int main(){
for(int ...
2
votes
2answers
67 views
Accessing native c functions from javascript
I have a javascript application which will be running on an embedded platform. It has to call some c APIs which are already implemented in the platform. This is a proprietary application and is meant ...
1
vote
0answers
40 views
Webkit crashing on WinCE
I am working on a port of Webkit for WinCE 6 (ARM) and am running into Javascript issues.
Code base: https://github.com/masali-hp/webkit
Javascript Engine: JavascriptCore
I am using Masali's code ...
-1
votes
1answer
96 views
Time or Cost To Customize Chrome As File Explorer [closed]
How much time do you think it would take a programmer to download the Chrome browser source-code, and edit it to function like my windows Vista default file browser (Windows Explorer). Basically I ...
0
votes
1answer
52 views
Signed to Unsigned and Vice Versa (arithmetical)
How to convert a number from unsigned to signed?
signed: -32768 to 32767
unsigned: 0 to 65535
I am solving the problem in JavaScript. The situation is that I have a number that goes e.g. from 0 to ...
-1
votes
3answers
113 views
Why does the switch statement execute a case block even when a match is not found?
switch(1){
case 1: print 1; // prints 1 (as expected)
case 2: print 2; // prints 2 (even though match is not equal?)
case 3: print 3; // prints 3 (even though match is not equal?)
}
I ...
0
votes
0answers
79 views
Sending intensive calculations not suited for JavaScript to a different language
I would like to make a website that has a number of intensive visual projects (chess engine, fractals, etc.) and have been told JavaScript will not perform very well with these projects. In a ...
0
votes
0answers
50 views
gdb output noise [closed]
An example of output as seen from gdb console:
17 printf("*stopped,reason=\"Output example\"\n"); v=5;
And same output with noise:
<< ~"17\t printf(\"*stopped,reason=\\\"Output ...
0
votes
0answers
88 views
Components or Structure for concept homomorphic communication with webserver
I don't know much of the components needed to do this so I wanted to ask for guidance or tutorials so I can have more of an idea of what I need to read on.
The point is to build a little concept web ...
1
vote
4answers
114 views
Calling javacript in codebehind
I am calling javascript via codebehind. Giving object expected error. How can I pass some value through ShowDialog() function?
here is my code in codebehind
...
-4
votes
1answer
116 views
How to write the equivalent operation as JavaScript's String.fromCharCode.apply in C [closed]
I have a array of numbers which will be decoded using String.fromCharCode.apply. How do the equivalent operation in C language? any help would be much appreciated.
In JavaScript I have
...
-2
votes
1answer
121 views
Converting C Program Code to Javascript, producing different Result?
I'm converting a pretty simple program I made in C code into Javascript. The code are identical, however I changed the code into Javascript syntax. For some reason my simple calculation in javascript ...
1
vote
0answers
59 views
LEAK with WebkitGTK
I'm experimenting with WebkitGTK. Using a simple "hello world" style app that does nothing but download a webpage and then quit, WebKit reports leaked objects after running the program:
LEAK: 1 ...
1
vote
1answer
140 views
Encoding Huffman in C and decoding the same in javascript
The scenario of my problem:
Some data in a file that should be compressed to smaller size.
The content of this file is required by the HTML on the fly by using the javascript.
So basically i need to ...
0
votes
0answers
45 views
How to parse Javascript text in C? [duplicate]
I have some Javascript text, but I have to parse it and get the output in C . I searched the net and found many JS Engine s but most of them were only for C++, like V8, Spidermonkey, etc.
Can you ...
4
votes
2answers
151 views
ECMAScript-262 implementation in C?
Possible duplicate: Tiny javascript implementation?
I have searched around for a C implementation of Javascript, but I couldn't find one. I need this for an ultra-portable application that will ...
2
votes
2answers
75 views
Javascript callback coding style in C?
Ok this question may be shocking for javascript haters and hard-core developers, forgive me!
I love the way I can write a callback function in javascript
var on = function(isTrue, doThis) {if ...
2
votes
1answer
30 views
Custom AJAX Server
I have been looking at writing my own server using kqueue. I can do this with really no problems as long as I can control what kind of client will be accessing our system. Realistically, however, ...
2
votes
1answer
158 views
streaming data using the LwIP server
I have an embedded system which is running the LwIP server(v1.2), I need to be able to stream a data array into the javascript on the client side? I'm looking at using chrome and some HTML5 features, ...
31
votes
4answers
759 views
How does similar_text work?
I just found the similar_text function and was playing around with it, but the percentage output always suprises me. See the examples below.
I tried to find information on the algorithm used as ...
0
votes
1answer
43 views
mongodb:close log out in mongod
I've started mongodb on my machine and the log goes to /usr/local/var/log/mongodb/mongo.log.
When I execute any query/insert/delete/update the operation is logged to that file too.
How can I supress ...
0
votes
3answers
134 views
creating login feature cgi-html in c language.(No PHP,Apache)
I am working in embedded environment. I have Atheros development board. I want to create login page using cgi and html only. I found one library libcgi. I have cross compiled that. I have checked the ...
0
votes
2answers
59 views
Updating Messages with Browser Pulling Messages from Server
I am tasked with creating a web page (think twitter) that updates when new messages are added to the database. When a message is removed from the database, it also must be removed from the client. It ...
2
votes
2answers
175 views
How to call a JavaScript function from C using JavaScriptCore?
I've written a function in JavaScript. For example:
function myName(a)
{
var k=10;
print(k);
}
Is it possible to call myName from C using JavaScriptCore? If so, how?
0
votes
1answer
116 views
Is it possible to compile C code to Javascript code?
I've found a programming tool called emscripten that can compile c++ code to Javascript code using LLVM. Is it possible to compile C to Javascript using Emscripten (or a similar tool?)
0
votes
3answers
235 views
Javascript to C
I have a program in Javascript that finds the max value of an array but now I want to translate directly into C. See below of Javascript and C code:
Javascript (works):
var tail = function(arr, pos, ...
2
votes
0answers
112 views
Flascc/Alchemy/Emscripten analog for IL/.NET?
So there is Flascc/Alchemy, Emscripten tha turn C/C++ into AS3 and JS. AS3 and JS are grate but is there any such nice compiler for IL/.NET (llvm-to-.net)?
7
votes
3answers
1k views
Are the advantages of Typed Arrays in JavaScript is that they work the same or similar in C?
I've been playing around with Typed Arrays in JavaScript.
var buffer = new ArrayBuffer(16);
var int32View = new Int32Array(buffer);
I imagine normal arrays ([1, 257, true]) in JavaScript have poor ...
2
votes
3answers
216 views
C parser in Javascript
I'd like to parse C header files in Javascript. Is there any such library available? Otherwise, any tips to help me get started?
Update: My ultimate goal is to automatically build interfaces for ...
0
votes
1answer
75 views
Javascript equivalencies of C language (*, f, -> and some more) [closed]
I found a code from internet and try to understand it. I don't know what is the programming language of the code and try to find javascript equivalencies or workarounds.
A) Which language is in ...
1
vote
3answers
165 views
How to efficiently serialize 64-bit floats so that the byte arrays preserve natural numeric order?
The project I'm working on requires me to store javascript numbers(which are doubles) as BLOB primary keys in a database table(can't use the database native float data type). So basically I need to ...
-4
votes
3answers
57 views
Javascript Object , Making similar in C
In JavaScript i would usually do..
var myObject = { "Name" : "Liam", "Address" : "UK"};
How do i make something similar in C?
Preferably something of the structure
myObject { CHAR : INT}
0
votes
1answer
54 views
How do Javascript optimizations compare to C optimizations
I'm currently in a low level C class, but I program Javascript as my job.
Here are a couple C optimizations/Problem areas my book has gone over so far (Just started so I don't have much):
Procedure ...
-1
votes
1answer
90 views
Using C library in Javascript OSX app
I know about libuv and extensions for node.js, but I want to know if it is possible to use a C library from client-side javascript. Specifically it's a driver for usb peripherals such as force ...
1
vote
2answers
185 views
libmagic. text/plain instead of text/javascript text/css
I use libmagic to get the mime type of a file in a web interface of my project. I get text/plain mime type on css and js files.
For example chromium shows below warnings:
Resource interpreted as ...
0
votes
1answer
73 views
What's the equivalent call() apply() of JavaScript in C? [closed]
In Java it is:
java.lang.reflect.Method
In JavaScript it is:
apply() ⟶ more like java.lang.reflect.Method
call() ⟶ more like function pointer in C
In C it is:
type (*varname)(Type1 ...
4
votes
3answers
245 views
why i^=j^=i^=j isn't equal to *i^=*j^=*i^=*j
In c , when there is variables (assume both as int) i less than j , we can use the equation
i^=j^=i^=j
to exchange the value of the two variables. For example, let int i = 3, j = 5; after computed ...
1
vote
0answers
156 views
Best practice for an AJAX call to running C code?
I have an underlying C application driving some pretty intensive hardware. I'm currently designing a web interface for the device, the majority of it's function is to present status information to the ...




