Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

98
votes
14answers
31k views

How do you split a list into evenly sized chunks in Python?

I have a list of arbitrary length, and I need to split it up into equal size chunks and operate on it. There are some obvious ways to do this, like keeping a counter and two lists, and when the second ...
35
votes
12answers
4k views

What is the most “pythonic” way to iterate over a list in chunks?

I have a Python script which takes as input a list of integers, which I need to work with four integers at a time. Unfortunately, I don't have control of the input, or I'd have it passed in as a list ...
4
votes
7answers
2k views

splitting a list of arbitrary size into only roughly N-equal parts

what is the best way to divide a list into roughly equal parts? for example, if I have a list with 54 elements and i want to split it into 3 roughly equal parts? I'd like the parts to be as even as ...
3
votes
4answers
138 views

R reshape, restructure dataframe by chunks

I am trying to reshape a dataframe: Currently it looks like this: ID | Gender |A1 | A2 | A3 | B1 | B2 | B3 ID_1 | m | 3 | 3 | 3 | 2 | 3 | 2 ID_2 | f | 1 | 1 | 1 | 4 | 4 | 4 I ...
3
votes
3answers
150 views

Find the sum of subsets of a list in python

This is probably very simple and I'm overlooking something... I have a long list of integers, in this case representing daily visitors to a website. I want a new list of weekly visitors. So I need ...
3
votes
2answers
377 views

Writing memory to socket in chunks in C

I'm attempting to write memory contents to a socket in chunks. I can write files that are smaller than my buffer, but anything else and I'm in deep water. /* allocate memory for file contents */ char ...
2
votes
2answers
107 views

Requesting direction for loading my file in chunks (Only needing advice)

I've been working for the last few days on a method to compress 144 million tile representation for my xna game down to a very small size when saved. Having managed to pull that off I now find myself ...
2
votes
2answers
157 views

Splitting a string into chunks by numeric or alpha char with Javascript

So I have this: var str = A123B234C456; I need to split it into comma separated chunks to return something like this: A,123,B,234,c,456 I thought regex would be best for this but i keep getting ...
2
votes
1answer
252 views

Fuzzy matching/chunking algorithm

Background: I have video clips and audio tracks that I want to sync with said videos. From the video clips, I'll extract a reference audio track. I also have another track that I want to synchronize ...
2
votes
4answers
593 views

What does Filestream.Read return value mean? How to read data in chunks and process it?

I'm quite new to C# so please bear with me. I'm reading (using FileStream) data (fixed size) to small array, process the data and then read again and so on to the end of file. I thought about using ...
2
votes
2answers
582 views

How do you split a csv file into evenly sized chunks in Python?

In a basic I had the next process. import csv reader = csv.reader(open('huge_file.csv', 'rb')) for line in reader: process_line(line) See this related question. I want to send the process line ...
2
votes
4answers
177 views

Packing differently sized chunks of data into multiple bins

EDIT: It seems like this problem is called "Cutting stock problem" I need an algorithm that gives me the (space-)optimal arrangement of chunks in bins. One way would be put the bigger chunks in ...
2
votes
2answers
340 views

How to read data in chunks from notepad file in Matlab?

My data is in following format: TABLE NUMBER 1 FILE: ReservoirModel_CMGBuilder.irf WELL: ...
1
vote
2answers
101 views

Gradient for chunks in QProgressBar

Is it possible to set a common gradient for all QProgressBar chunks? If use something like this: QProgressBar::chunk:horizontal { background: qlineargradient(x1: 0, y1: 0.5, x2: 1, y2: 0.5, ...
1
vote
1answer
107 views

Do we have ChunkExecutionContext similar to StepExecutionContext in Spring Batch?

Spring Batch Version: 2.1.8 We want to do something after each chunk is written, and set some data inside a context which is valid only for the chunk. This data is then used inside ChunkListener's ...
1
vote
3answers
271 views

How to use PNG's IDAT chunk?

I'm trying to understand how data are stored into IDAT chunk. I'm writing a little PHP class and I can retrieve most of chunks information but what I get for IDAT doesn't match pixels of my image : ...
1
vote
2answers
108 views

libcurl: Detect chunk boundaries of chunk-encoded responses

I am using libcurl, currently the easy api. I am making a request to a web server that responds with HTTP Chunked Encoding. I would like to know if there is a way to know when a chunk from the server ...
1
vote
2answers
331 views

How to encrpyt / decrypt data in chunks?

I'm quite new to C# and encryption so please have patience with me. I want to save some binary data ("objects" - in fact mostly only parts of objects, thus I can't / don't use serialization, ...
1
vote
0answers
609 views

SQL Server 2005 – How to split multiple Insert into… Output Select TOP (z)…From if (Approximate) Max number of child rows in a Transaction is known

I have these staging tables: - Order (PK=OrderID), - SubOrder(PK=SubOrderID, FK=OrderID) and - Item(PK=ItemID, FK1=SubOrderID, FK2=OrderID). I established relationships on the client (C#.NET and ...
0
votes
1answer
17 views

Chunk upload to Windows Azure Blob by using WCF REST

I'm using Windows Azure Blob Storage and WCF REST Services together to upload large files with chunk. I can upload one part files easily, but I have to find a method to merge this chunks in an Azure ...
0
votes
0answers
27 views

How can I play chunks of a video coming through a HTML5 websocket?

Let's say I have an ogg video. I can play it like that : <video width="640" height="480"> <source src="myvideo.ogg" type=video/ogg> </video> Now if I managed to stream 1ko chunks ...
0
votes
2answers
59 views

How to split an array based on a condition?

I'm working on a PHP/MySQL app and I have a very simple table that looks like this: id | name | came_with 1 John null 2 Jane 1 3 Dean null It has about 50 records but the main ...
0
votes
0answers
109 views

How to decode the HTML 5 FileReader ReadasBinaryString() encryption from c sharp?

I am working on new file uploader and using the HTML 5 FileReader API to cut the file to chunks. Then I send the current chunk to C Sharp handler and want to write the current chunk to the disk. The ...
0
votes
1answer
53 views

Chunk string with XSLT

I have an XML with a text node, and I need to split this string into multiple chunks using XSLT 2.0. For example: <tag> <text>This is a long string 1This is a long string 2This is a ...
0
votes
0answers
39 views

extract email chunks by separating response structure

Does anyone know a library which can divide a given email text (see code below) into single "mails"/chunks? In the exmample below I would like to get 3 single messages. The problem is: the library ...
0
votes
2answers
249 views

WebClient.OpenRead download data in chunks

I am trying to download data using a Webclient object in chunks of 5% each. The reason is that I need to report progress for each downloaded chunk. Here is the code I wrote to do this task: ...
0
votes
1answer
40 views

Reading Lightwave LWO binaries, UV problem

Okay, so I'm trying to make CSHARP Lightwave 3D model converter to convert my LWOs into a Javascript object. So far I have the guts of the program working, and I'm please. But I've run into trouble ...
0
votes
1answer
194 views

wcf upload/download large files (i.e. Img, mp3) in chunks with windows service

I have a window service and i want it to be able to upload/download large (around 4MB) files (Img, music etc.) in chunks. I tried to do that by changing the 'maxBufferSize' 'maxRecivedMessageSize' ...
0
votes
0answers
41 views

What is the purpose of chunking samples in the ISO audio format?

I'm writing an app that splits and merges audio files in ISO format (3gp, mp4, etc.) I have the basics down, but I need to come up with a strategy for organizing the audio samples into "chunks". As ...
0
votes
0answers
146 views

Loop Async Web Request (with Abort) for chunked file upload

I'm working on a project that uploads files over http. The files are broken into chunks. I need to have the option for the user to cancel the request. What's happening is that the request is being ...
0
votes
0answers
113 views

In QT file format,can chunks in the mdat atom be identified without the help of moov atom

I am trying to understand .mov file format. With the help of sample table atom, iam able to traverse mdat atom to identify chunks. But if moov atom is missing in a .mov file , is it possible to ...
0
votes
1answer
66 views

Chunk of memory in SQL Server 2008 and LAPACK bindings

What is it LAPACK bindings How do I use them to read that chunk of memory? How to make a memory chunk containing this matrix "table" in SQL Server 2008? If that is not possible, a memory pointer, ...
0
votes
2answers
868 views

Java - Read text file by chunks

I want to read a log file in different chunks to make it multi threaded. The application is going to run in a serverside environment with multiple hard disks. After reading into chunks the app is ...
0
votes
1answer
367 views

Trying upload file (image) in chunks and after merging uploaded bytes file is corrupted why?

Trying to create custom upload control in silverlight app for uploading large file. I've very small image for testing 753 bytes size. When i set chunk size = 753 everything works fine, control ...
0
votes
2answers
256 views

Download Manager: How to re-construct chunks fetched by multiple connections

so i am developing my own download manager for educational purpose. I have multiple connections/threads downloading a file, each connection works on a particular range of the file. Now after they have ...
0
votes
1answer
150 views

Paging python lists in slices of 4 items [closed]

Possible Duplicate: How do you split a list into evenly sized chunks in Python? mylist = [1, 2, 3, 4, 5, 6, 7, 8, 9] I need to pass blocks of these to a third party API that can only deal ...
0
votes
2answers
579 views

HttpWebResponse, and chunked http. How to read one single chunk?

There's a binary file on a remote server, that I wish to stream to my client. I issue a GET request and the response is an HTTP header + body that has the binary file, in chunks. The problem is, each ...
0
votes
1answer
525 views

Read Oracle BLOB data as chunks

I have the following queries on fetching a BLOB data from Oracle ( I am trying to use OracleDataReader - .Net to read the BLOB value.): Is it possible to read a BLOB data on Oracle database as chunks ...
0
votes
3answers
127 views

Autoextend on chunks informix

Does anyone know if Informix has the same capability as Oracle with respect to the autoextend feature. With Oracle I can create a datafile and by using the autoextend feature Oracle will automatically ...
0
votes
1answer
508 views

PHP: Split string into chunks of 8, how do I do this?

I have binary basically, say it's 300 in length. How would I split (much like using explode) it into 8 bit chunks? I look at chunk_split() but it only seems to have an 'end' parameter, not an option ...
0
votes
1answer
770 views

cancel stream request from WCF server to client

I posted about stream request here [wcf-chunk-data-with-stream]:http://stackoverflow.com/questions/853448/wcf-chunk-data-with-stream I solved that task but now when i close request in client part ...