Posts by 0x10203040 • 76 points
5 posts
-
1
votes1
answer51
viewsA: Problem timers js
I believe you can do different. Create a page and load the content via ajax requests. http://api.jquery.com/jquery.ajax/ You can upload content within a div, for example. The timer can request these…
-
1
votes1
answer112
viewsA: How to send the blob in real time?
Use Websockets to connect to the server and binary transfer. Note that not all browsers accept binary mode from Websockets. A good start to learning Websockets is using Node.js. Maybe I can help you…
-
1
votes1
answer352
viewsA: How to make a function return result only after click?
You can do everything through Jquery like this: var div = $("<div />").addClass("popup").appendTo($("body")); $("<button />").append("Confirmar?").appendTo(div).click(function() { var…
-
1
votes1
answer967
viewsA: Print json return text in the middle of code - Jquery/Javascript/JSON
There’s a problem here: foreach($data['mesesFuncionario'] as $func): $html .= "{"; $html .= "name: '".$data['funcionarioDados'][$func['id']]->nome."',"; unset($func['id']); $html .= "data: [ ";…
-
2
votes0
answers390
viewsQ: Unreal Engine 4, Cry Engine or Unity for networking
I need to choose between these 3 Engines in order to develop my game in 3D. The main point is that I need to connect the client to a server written in Scala with Akka through TCP. I saw that they…