The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
0answers
26 views

Where can I find a online data stream [closed]

I'm looking for an online regularly updated data stream. What I mean by data stream is a single (or set of) number that is shown for a specific time. I want this to change in a unpredictable way but ...
0
votes
0answers
6 views

What does it mean the acronym S-A, S-B and P06/99 in corporate bond name?

I have the following problem: I am not able to understand what does it mean the following acronyms in corporate bond names downloaded from Thompson Datastream: S-A S-B S-C S-D P06/99 For istance, ...
1
vote
2answers
26 views

Datastreams floating point Java

If the next statement is true: DataStreams uses one very bad programming technique: it uses floating point numbers to represent monetary values. In general, floating point is bad for precise ...
0
votes
1answer
20 views

Qt C++ QDataStream read the number 13

I want to write a binary file with QDataStream. The problem is with the code below, when I write my_string = "13", I read 0 ; when my_string is not equal to "13" ("12", "14", "20", ...), I read the ...
-5
votes
2answers
101 views

Input File Stream “Unhandled Exception” [closed]

I am trying to get my code to take input from the .dat file to input in my program. This is a portion of my code below, but I am getting this error: "Unhandled exception at 0x77bf15de in 5.exe: ...
3
votes
0answers
202 views

How to correctly stream data via Bluetooth to Android

I'm in the process of developing an application which reads data from a DAQ that streams its data over Bluetooth. The packet sizes can change, as can the sampling rate (1Hz - 512Hz), and I'm able to ...
7
votes
2answers
446 views

Java based library for sensor data collection

I'm looking for an embeddable Java library that is suitable for collecting real-time streams of sensor data in a general-purpose way. I plan to use this to develop a "hub" application for reporting on ...
0
votes
3answers
67 views

Data Stream catches exception

I wrote up this class based on some examples I found online for Data Streams and I'm getting an EOFException at the end of each run. When I looked it up it said the end of the stream had been reached ...
0
votes
1answer
193 views

what does this mean 'Parsing a text file or data stream' and does it apply with serializables

This is my second post and I am getting used to the function of things on here now! this is more of a theory question for computer science but, my question is what does this mean? 'Parsing a text ...
0
votes
1answer
101 views

Max & Min in stream of integers

Given a stream of integers (I can only go through them once), what is the best solution to find maximum and minimum? I suppose that in case I have enough time to proccess each number the easiest ...
0
votes
0answers
58 views

Data Abstract and .NET Table cannot be found in data packet

We have a Delphi server and we want to make an ASPX web interface. The server load the schema dynamically on startup and it's working very well with Delphi based client applications. We made a ...
3
votes
1answer
175 views

Capturing printer data stream in ruby

anyone knows where a printer data stream is stored, and how to capture it a ruby executable? (for later pdf conversion for example) I'm questioning this one, related to another question of mine. So ...
15
votes
4answers
423 views

Disk-persisted-lazy-cacheable-List ™ in Scala

I need to have a very, very long list of pairs (X, Y) in Scala. So big it will not fit in memory (but fits nicely on a disk). All update operations are cons (head appends). All read accesses start ...
6
votes
1answer
2k views

FIFO/Queue buffer specialising in byte streams

Is there any .NET data structure/combination of classes that allows for byte data to be appended to the end of a buffer but all peeks and reads are from the start, shortening the buffer when I read? ...
0
votes
1answer
154 views

Advice - Real time data processing from client to server

I am looking for advice/guidance on how to achieve the following: I have a circuit mounted and connected to an Arduino and I am able to easily retrieve data from it, using Python and the pySerial ...
0
votes
1answer
139 views

Is mySQL suitable for storing a data stream coming in at 250ms update, having 30 bytes of information per update, and serving to the web?

The title says most of it, I'm wondering if MySQL is suitable, (and if not, what else would do better) for storing this data? It would be most likely 3 to 6 floating point numbers delivered every ...
0
votes
1answer
393 views

Sliding Window for Data Streams

I wish to add a sliding window to my data mining approach in order to handle a data stream. Does anyone have any helpful information with regards to implementing this? maybe a paper or some advice of ...
0
votes
1answer
70 views

(C) View socket data header?

After accepting data from a socket, can I view the header for the data? I want to know what ip adress the packet was sent to as I am listening on multiple interfaces.
1
vote
1answer
296 views

Download PDFs through proxy

I have a list of URLs linking directly to PDFs on a database website. It would be very easy to automate the download process, except for the fact that I have to access the website through a proxy ...
1
vote
1answer
367 views

Streaming data and updating screen in C#

I am dealing with a stream of data on serial port. The baud rate is 19200 kbps, leaving a shot time (about 100 ms) to process data and display the result on the screen. There is no issue with data ...
0
votes
0answers
123 views

Switching between servers for faster data stream

here the thing; i have 15 servers from where i upload/download data. all servers have the same data just the speed varies from one to another, i want to write a windows service app in C# which will ...
0
votes
3answers
569 views

HTML client receiving continous stream of server output data

What would be best mechanism, for achieving ability, for users, that are logged in, receive messages, generated by server. As there is no way for a server, to send information to user, when it has new ...
3
votes
2answers
666 views

Hash algorithm for dynamic growing/streaming data?

Are there any algorithm that you can continue hashing from a known hash digest? For example, the client upload a chunk of file to ServerA, I can get a md5 sum of the uploaded content, then the client ...
0
votes
1answer
84 views

Foursquare Updating

No, not another question that asks, "How can I make my messages flow like on Foursquare???" What I want to know is, how they are getting their messages in the right order and timeframe. Here's my ...
1
vote
1answer
481 views

Data streaming between two processes

I have two java processes and I have to write data generated from one process as an input to the other java process. The data stream generated will be of the size of 5GB . How can I do that. Do I ...
-1
votes
1answer
53 views

HTTPS Events from datastream

How do I get the HTTPS event from raw data?
2
votes
1answer
132 views

Does perforce supports file streams on Windows?

Does Perforce supports file streams on Windows, on NTFS?
0
votes
2answers
835 views

Using terminal to record/save a data stream

I want to be able to save a data stream which i am returning using the curl command. I have tried using the cat command, and piping it the curl command, however i'm doing it wrong. The code im ...
18
votes
3answers
18k views

Stream data with Node.js

I want to know if it is possible to stream data from the server to the client with Node.js. From what I can understand all over the internet is that this has to be possible, yet I fail to find a ...
1
vote
1answer
52 views

Better to filter a stream of data at its start or end?

I'm working on a project in which I need to process a huge amount (multiple gigabytes) of comma separated value (CSV) files. What I basically do is as follows: Create an object that knows how to ...