Top "Buffer" questions

A buffer is an area of memory set aside for temporary storage of data while it is being moved from one place to another.

Buffered files (for faster disk access)

I am working with large files and writing directly to disk is slow. Because the file is large I cannot …

file delphi io stream buffer
What is the recommended way of allocating memory for a typed memory view?

The Cython documentation on typed memory views list three ways of assigning to a typed memory view: from a raw …

python memory memory-management buffer cython
nodejs write raw image data to jpeg file?

I am getting data from a get request. The data (in the body of the response) looks something like this: ... ÿÀ���"�ÿÄ��������������ÿÄ�…

javascript node.js buffer fs
Max size for Vertex Buffer Objects (OpenGL ES 2.0)

Is there a max size for vertex buffer objects binded to GL_ARRAY_BUFFER or GL_ELEMENT_ARRAY_BUFFER??? Originally, …

opengl-es buffer vbo vertex
How do I use a buffer in an Assembly procedure?

So, I understand the general abstract concept of a buffer: It's an allocation in memory that holds data before it …

assembly buffer procedure
PHP ob_start() and ob_start('ob_gzhandler')

What is the difference between using ob_start() and ob_start('ob_gzhandler') ? How does it affect the page speed ?

php buffer content-encoding
Ansible: Unexpected templating type error: expected string or buffer

I have a register with the following contents: ok: [hostname] => { "changed": false, "msg": { "changed": true, "cmd": "cd /tmp\n ./…

string ansible conditional buffer templating
PHP Flush() not working in Chrome

I stumbled upon this function which promised to work across IE, FF & Chrome. But it does not work in …

php google-chrome buffer flush
Sending a post query sent via HTTParty

I'm working with the Buffer App API with HTTParty to try and add posts via the /updates/create method, but …

ruby-on-rails ruby buffer httparty
Specifying the maximum string length to scanf dynamically in C (like "%*s" in printf)

I can specify the maximum amount of characters for scanf to read to a buffer using this technique: char buffer[64]; /* …

c io size buffer scanf