0
votes
1answer
67 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
36 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: ...
0
votes
1answer
54 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 ...
0
votes
1answer
58 views

How to upload the data to DataTables plug-in from /dev/console

It seems that I need your expert opinion. I have embedded system with installed Linux. I would like to use this system to show web page with dynamically content in DataTables plug-in ...
1
vote
1answer
130 views

Json Post request with multiple parameters

When I am calling below C# WebApi with POST request. It works fine when I have one parameter in method. Let say I want to include another parameter public HttpResponseMessage Post(Member member, bool ...
11
votes
5answers
576 views

Phonegap iOS6: Proper solution to Remove form assistant bar (prev, next, done)

Another "how to remove the pre, next, done button" -question you may think. Not really actually. I've done some rather thorough research on this and tried out different approaches but no method or ...
2
votes
1answer
305 views

Real Time Bar Charts in arduino

I have written a test program to see that my pressure sensor is working correctly and it does. int redpin = 10; int greenpin = 9; int bluepin = 8; int presurepin = 0; //Program variables int time = ...
5
votes
0answers
613 views

Jsoup like parser for C++/C?

Are there any open source Jsoup/jQuery like parser/selector engine for C++/C?
2
votes
3answers
253 views

How can i do jQuery like coding in C language?

How to do jQuery like calls in C language? Say we have a packets (html for example): <div id="mymute"> <div> </div> <div> <img src="/agents/sleeping.png" /> ...
0
votes
0answers
83 views

jquery.ajax returning error when communicating with custom C server

I'm testing a custom HTTP server I'm writing. The UI side is doing an AJAX POST using jquery : $("#form").submit(function(event) { // stop form from submitting normally ...
0
votes
1answer
2k views

Odd jQuery problem - Ajax request to a C program not quite working

I have this basic setup: C program opens a socket on a specific unused port (let's say 1234) and waits, listening specifically for HTTP requests. Webpage on the same machine, written primarily in ...
2
votes
3answers
813 views

How similar are Python, jQuery, C syntax wise?

I'm trying to get a sense of the similarities between languages in syntax. How similar are Python, jQuery and C? I started programming in Actionscript 3 and then moved on to Javascript , then went on ...