1
vote
2answers
73 views
Manipulate screen buffer in python
I know this is a long shot, but I was wondering if Python had a way to manipulate the screen buffer. Specifically, I want to be able to gray-out my desktop and highlight my windows …
0
votes
3answers
57 views
Manage data inside a buffer
I'm using this code to read a file into a buffer. The file is full of structs of evaluacion type (including some char and int variables).
Now I have the whole file in a buffer, how …
1
vote
5answers
148 views
Circular Buffer in Flash
I need to store items of varying length in a circular queue in a flash chip. Each item will have its encapsulation so I can figure out how big it is and where the next item begins …
1
vote
1answer
199 views
How to play MP3 sound from buffer (ByteArray/Stream) in ActionScript 3?
So.. I have a buffer with MP3 data (If I would save this buffer and call it buffer.mp3 it would play, but in this situation I should not save it to file system). I have to play it, …
0
votes
3answers
71 views
Java: Generalization possible between: streams, readers, char buffers, stringbuilder, …?
Hello everyone!
Background story:
There are these Source and Result interfaces for XML.
These are adapters between different XML technologies in Java.
Instances of these classes …
0
votes
2answers
60 views
Separating Code To Be Organized
I'm building a zipper application, but it has a declaration that I want to separate it in another file (compress-file.m), but only when I separate the files I got an error when com …
1
vote
6answers
157 views
How to design an efficient image buffer in C++?
I am trying to create a data buffer, more specifically, an image buffer, which will be shared among multiple modules. Those modules only reads from the buffer and don't communicate …
1
vote
1answer
20 views
Is it practical to include an adaptive or optimizing memory strategy into a library?
I have a library that does I/O. There are a couple of external knobs for tuning the sizes of the memory buffers used internally. When I ran some tests I found that the sizes of th …
2
votes
5answers
126 views
Circular buffer in JavaScript
I was wondering whether anyone has already implemented a circular buffer in JavaScript? How would you do that without having pointers?
3
votes
6answers
168 views
Call assembly in buffer in C
Is this possible?
I want to place intel assembly code into a char buffer, and then execute that code from within a C program
If I placed the assembly code into a buffer, could I …
0
votes
0answers
103 views
2
votes
1answer
103 views
Python: Extracting data from buffer with ctypes
I am able to successfully call a function with ctypes in Python. I now have a buffer that is filled with Structures of data I want to extract. What is the best strategy for this? …
0
votes
1answer
30 views
How to insert repeated message in google protocol buffer _pb2.py file
How to insert repeated message in google protocol buffer _pb2.py file
2
votes
14answers
515 views
Faster means of checking for an empty buffer in C?
By 'empty buffer,' I mean a buffer full of zeroes.
I am searching for a faster method of accomplishing this:
int is_empty(char * buf, int size) {
int i;
for(i = 0; i < size; …
0
votes
1answer
120 views
Uploading file with WCF streaming, tiny reads from stream
Hi
I've implemented file uploading using WCF's streaming. Everything works as expected, however i faced one issue: i'm allocating 4kb buffer to read from incoming stream, but WCF …
