0
votes
2answers
96 views
Rendering images with Processing.org on Java servlet
How to render Processing.org images on Java servlet?
My scala code is:
class Image extends PApplet {
override def setup {
size(200,200)
background(0)
}
override de …
1
vote
1answer
89 views
When should you not use the new parallel loop functions in c#
For maintainability purposes, my impulse is to simply use parallel processing all the time. For simple loops it sounds like there is overhead which could actually slow the function …
2
votes
3answers
29 views
Guidelines for determining the maximum frequency to process an SSAS cube?
We have an Analysis Services cube that needs to be as real-time as possible. It's a relatively small cube that currently takes a couple of seconds to process.
Are there any guide …
-1
votes
1answer
36 views
How would I go about plotting “live” stock market data with Processing, jQuery, Pure Data or Max/MSP?
This is intended as a question quite open to any suggestions, hints or pointers. I wish to start playing around with home brewed automated investment models, the beginnings of whic …
0
votes
4answers
73 views
Checking for content in Django request.POST
I feel like such a n00b asking this question but it's late and I'm tired. ;)
I am accepting data via request.POST like this:
if request.method == 'POST':
l = Locat …
0
votes
1answer
13 views
how to set java library path for processing
Hi,
I'm using pde to run a processing app , and I got the following error :
"Verify that the java.library.path property is correctly set" .
could anyone of you tells me how to s …
1
vote
2answers
46 views
Java - Zoom / 3D Data Visualization Libraries
What are the best libraries/frameworks for doing 3D and/or Zoom interfaces in Java?
I'd like to be able to do some prototyping of creating new types of interfaces for navigating wi …
0
votes
1answer
69 views
Is there a way to manipulate code generated by Processing.js via Javascript?
I would like to call some functions or alter some variables after the Processing.js code has been parsed. Right now the only way to do this is to manipulate the source code, and th …
0
votes
2answers
30 views
Basic DSP question
I'm new to DSP programming, and I'm wondering how best to carry out the seemingly basic operation of level adujustment. Say I have an 8 bit number that represents the amplitude I …
0
votes
2answers
22 views
project help on image processing
how to start a project on image processing? what are the initial steps?
what to read or which language/library to use?
1
vote
3answers
45 views
C# solution for analysing files as they are written/modified
I have several projects that require me to monitor files, and then edit them as they are getting written to disk. I have a feeling that what I am looking for is operationally the s …
0
votes
3answers
55 views
How to extract the second record from my plist?
I have a sample database file called albums.plist
It is structured as below (very simple layout).
I am new to Objective-C programming and would learn a lot if someone is able to h …
0
votes
3answers
16 views
AJAX textarea blocked for writing when processing request
I have a textarea where people can write comments and click a button to post them. The processing is done with AJAX and so I want that as long as the server is processing the user …
1
vote
3answers
184 views
Using JSON from Processing-JS
OKay, I'm a bit of a javascript n00b, so forgive me if this seems like an obvious question.
I want to write an application using processing-JS, and I'd like to be able to load i …
6
votes
3answers
92 views
Processing / .NET interop?
I'd like to call into a .NET assembly for some data and library functions from a Processing user interface. What's the best way to achieve this? Expose a web service? A RESTful API …
