stream Questions

4

I am using express.js I have a string "Hello world!" I want a user to click on <a href=/download>Download</a> The user should get Hello.txt download with the text in it, NOT open a ...
Pestilent asked 22/2, 2014 at 5:15

2

I am using nodejs streams to fetch data from my level database (using leveldb). Here is a snippet of the code I use: app.get('/my/route', function (req, res, next) { leveldb.createValueStream(o...
Chromatism asked 10/10, 2014 at 13:15

4

Solved

Is it possible to use the FromStream method of System.Drawing.Image without having to keep the stream open for the lifetime of the image? I have an application which loads a bunch of toolbar graph...
Glenine asked 2/10, 2010 at 11:29

0

I would like to be able to play simple[1] audio in realtime from GHCI, starting and stopping independent oscillators and samples ("voices"). Using Bash on Linux, it's easy[2] to pipe data into a c...
Tiger asked 24/3, 2018 at 18:25

1

Solved

For improvement purposes, I am trying to use exclusively streams to transpose a list of list. By that I mean, that I have a List of List of Doubles that contains for example 1 2 3 4 5 6 7 8 And...
Buchenwald asked 20/3, 2018 at 15:28

0

I am creating Radio application in swift. Application have list of radio station. When user click on any station they will play radio in foreground as well as background. Now I have requirement t...
Elect asked 19/3, 2018 at 6:42

3

Solved

Is there a pattern for making a stream iterable using ES6 generators? See 'MakeStreamIterable' below. import {createReadStream} from 'fs' let fileName = 'largeFile.txt' let readStream = createRe...
Sodomite asked 2/10, 2015 at 7:9

7

This is the code for downloading the file. System.IO.FileStream fs = new System.IO.FileStream(Path+"\\"+fileName, System.IO.FileMode.Open, System.IO.FileAccess.Read); byte[] ar = new byte[(int)fs....
Plyler asked 28/11, 2011 at 9:50

3

Solved

I have an enum looks like: public enum Movies { SCIFI_MOVIE("SCIFI_MOVIE", 1, "Scifi movie type"), COMEDY_MOVIE("COMEDY_MOVIE", 2, "Comedy movie type"); private String type; private int id; priva...
Grecism asked 13/3, 2018 at 3:7

3

Solved

I have a stream of Events public class Event { Location location; double turnout; //... other fields & getters } And a statistics class EventStatistics public class EventStatistics { //...
Eleanor asked 10/3, 2018 at 8:20

0

I wrote a code to read simple-text/bz2-compressed-file. I used magic-characters of bz2 file to detect the file is compressed or not NOTE "user may or may not provide file with proper extensio...
Yeung asked 8/3, 2018 at 20:59

2

Solved

I've just started experimenting with futures/tokio in Rust. I can do really basic things with just futures or just with streams. I was wondering how you can select between future and a stream. How...
Brightwork asked 21/3, 2017 at 13:22

1

I gather Text documents (in Node.js) where one document i is represented as a list of words. What is an efficient way to compute the similarity between these documents, taking into account that new...
Superdreadnought asked 21/12, 2012 at 8:17

2

Solved

I am using this article to print my rdlc directly to printer but when I am trying to create Metafile object by passing stream it gives me error. (A generic error occurred in GDI+) Code: using Sy...
Addle asked 29/7, 2017 at 13:4

2

Solved

I'm working on a music classification methodology with Scikit-learn, and the first step in that process is converting a music file to a numpy array. After unsuccessfully trying to call ffmpeg fro...
Cyanohydrin asked 4/7, 2016 at 21:54

2

Solved

My application serializes an object using Json.Net, compresses the resulting JSON, then saves this to file. Additionally the application can load an object from one of these files. These objects ca...
Goose asked 5/10, 2015 at 8:8

2

Solved

To use XMLStreamReader I am initializing it like - XMLInputFactory f = XMLInputFactory.newInstance(); XMLStreamReader reader = f.createXMLStreamReader(new FileReader( "somefile.xml")); Iteratin...
Arlyn asked 7/5, 2011 at 12:22

2

Solved

Various instances of monads model different type of effects: for example, Maybe models partiality, List non-determinism, Reader read-only state. I would like to know if there is such an intuitive e...
Byers asked 14/2, 2018 at 12:19

0

I am trying to do a sound processing project with PyAudio, but I sometimes get this error and I don't understand why. The following code plays back audio heard on my laptop mic, and then pauses f...
Leighannleighland asked 13/2, 2018 at 23:13

0

I'm trying to create a Readable Stream where the data arrives in bursts with a delay in between packets (like in a networked read). I'm having trouble testing this with jest. I have coded 2 tests ...
Latticework asked 13/2, 2018 at 13:0

3

I need to send async request to the server and get the information from the response stream. I'm using HttpClient.GetStreamAsync(), but the server response that POST should be used. Is there a sim...
Lanham asked 6/5, 2016 at 8:7

2

I am trying to achieve results as shown on the video (Method 3 using netcat) https://www.youtube.com/watch?v=sYGdge3T30o The point is to stream video from raspberry pi to ubuntu PC and process it...
Rabbin asked 2/2, 2016 at 23:56

1

Solved

While streaming a simple command like below ffmpeg -i "Alien.mkv" -f webm tcp://localhost:8080/listen.webm if I press '?' ffmpeg seems to have an interactive mode with the below options ? show...
Strumpet asked 6/2, 2018 at 4:10

1

Solved

I create a Kafka Streams application, which receives different JSON objects from different topics and I want to implement some kind of wait function, but I'm not sure about how to implement it best...
Sholom asked 5/2, 2018 at 11:42

2

What I need is a Python 3 function (or whatever) that would take a text stream (like sys.stdin or like that returned by open(file_name, "rt")) and return a text stream to be consumed by some other ...
Fauver asked 4/2, 2018 at 6:45

© 2022 - 2024 — McMap. All rights reserved.