Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
8answers
11k views

How do I close a single buffer (out of many) in Vim?

I open several files in Vim by, for example, running vim a/*.php which opens 23 files. I then make my edit and run the following twice :q which closes all my buffers. How can you close only ...
29
votes
5answers
834 views

Why do I need std::get_temporary_buffer?

For what purpose I should use std::get_temporary_buffer? Standard says the following: Obtains a pointer to storage sufficient to store up to n adjacent T objects. I thought that the buffer will ...
20
votes
7answers
4k views

VIM Replace word with contents of paste buffer?

I need to do a bunch of word replacements in a file and want to do it with a vi command, not an EX command such as :%s///g. I know that this is the typical way one replaces the word at the current ...
13
votes
2answers
1k views

Open a buffer as a vertical split in VIM

If you are editing a file in VIM and then you need to open an existing buffer (e.g. from your buffer list: :buffers) how can you open it in a vertical split? I know that you already can open it with ...
13
votes
8answers
7k views

How do you determine the ideal buffer size when using FileInputStream?

I have a method that creates a MessageDigest (a hash) from a file, and I need to do this to a lot of files (>= 100,000). How big should I make the buffer used to read from the files to maximize ...
13
votes
3answers
13k views

Binary buffer in Python

In Python you can use StringIO for a file-like buffer for character data. Memory-mapped file basically does similar thing for binary data, but it requires a file that is used as the basis. Does Python ...
12
votes
1answer
873 views

Speeding up the rate that IIS/.NET/LINQ retrieves data from the Network Buffers

When doing a TCP analysis of the traffic between my web servers and database servers I see the network buffers (TCP Window) filling up frequently. The web servers then send TCP messages to the ...
11
votes
3answers
5k views

C# FileStream : Optimal buffer size for writing large files?

Suppose I'm writing a couple of files to disk, between 2MB and 5GB. What are sensible buffer values for the FileStream ? Is it sensible to work with buffersizes of several megabytes, or should I ...
11
votes
1answer
7k views

Byte array of unknown length in java

I am constructing an array of bytes in java and I don't know how long the array will be. I want some tool like Java's StringBuffer that you can just call .append(byte b) or .append(byte[] buf) and ...
11
votes
14answers
3k views

Should a buffer of bytes be signed or unsigned char buffer?

Should a buffer of bytes be signed char or unsigned char or simply a char buffer? Any differences between C and C++? Thanks.
11
votes
7answers
9k views

CharBuffer vs. char[]

Is there any reason to prefer a CharBuffer to a char[] in the following: CharBuffer buf = CharBuffer.allocate(DEFAULT_BUFFER_SIZE); while( in.read(buf) >= 0 ) { out.append( buf.flip() ); ...
10
votes
7answers
275 views

Is it a common practice to re-use the same buffer name for various things in C?

For example, suppose I have a buffer called char journal_name[25] which I use to store the journal name. Now suppose a few lines later in the code I want to store someone's name into a buffer. Should ...
10
votes
3answers
801 views

How can I get the compilation buffer on the bottom rather than on the right in Emacs 23?

I've installed Emacs 23 and have found that the compilation buffer (when using M-x compile) appears in a different position than it did in Emacs 22. The currently open buffer appears on the left and ...
10
votes
6answers
4k views

When to use .NET BufferedStream class?

The MSDN site states: A buffer is a block of bytes in memory used to cache data, thereby reducing the number of calls to the operating system. Buffers improve read and write performance. A ...
10
votes
4answers
6k views

Why doesn't Ruby have a real StringBuffer or StringIO?

I recently read a nice post on using StringIO in Ruby. What the author doesn't mention, though, is that StringIO is just an "I." There's no "O." You can't do this, for example: s = StringIO.new s ...
9
votes
2answers
231 views

Flushing Perl STDIN buffer

Is there any way to clear the STDIN buffer in Perl? A part of my program has lengthy output (enough time for someone to enter a few characters) and after that output I ask for input, but if characters ...
9
votes
2answers
103 views

Buffers per frame

Is it possible to have get subset of related buffers with each emacs frame when switching and displaying buffers I mean A frame that is dedicated for GNUS will show only gnus buffers A frame that ...
9
votes
4answers
811 views

Using read() directly into a C++ std:vector

I'm wrapping up user space linux socket functionality in some C++ for an embedded system (yes, this is probably reinventing the wheel again). I want to offer a read and write implementation using a ...
9
votes
2answers
857 views

emacs lisp, how to get buffer major mode?

I have tried to search Google and look in the manual, but still cannot find how to get major mode of a buffer object. Can you help me with an example or a reference. Thanks only solution I could ...
9
votes
4answers
1k views

How to flush a TFileStream?

TFileStream provides buffered output, which is great in most cases, but in some cases (especially during debugging) it's nice to flush the buffer immediately. Thing is, I don't know of any way to do ...
9
votes
5answers
9k views

MemoryStream.Read doesn't copy bytes to buffer - c#

I don't really get it and it's driving me nuts. i've these 4 lines: Image img = Image.FromFile("F:\\Pulpit\\soa.bmp"); MemoryStream imageStream = new MemoryStream(); img.Save(imageStream, ...
8
votes
2answers
124 views

C standard I/O vs UNIX I/O basics

Here's a very basic question I have. In my professor's lecture slide, there is a example I dont really get. She wrote: printf("u"); write(STDOUT_FILENO, "m", 1); printf("d\n"); ...and she said ...
8
votes
4answers
139 views

Why won't int variable come before char array in terms of addressing no matter how I code it in C?

I'm reading Hacking: The Art of Exploitation (2nd Edition), and I'm currently on the section about buffer overflows. In the first example, the variables are declared/initialized in this order: int ...
7
votes
4answers
226 views

Playing Audio in .Net / C#

I'm an experienced MFC programmer of many years, who for the more recent years has been developing commercial apps in Objective C for Mac and iOS - I'm trying to get up to speed with .Net and C# (as ...
7
votes
2answers
1k views

Linux memory: buffer vs cache

i am not clear what's the difference of the two linux memory concept :buffer and cache , i have read through the post: Buffer and cache Difference ? . seems the difference of buffer and cache is the ...
7
votes
3answers
696 views

Buffered files (for faster disk access)

I am working with large files and writing directly yo disk is slow. Because the file is large I cannot load it in a TMemoryStream. It seems that TFileStream is not buffered so I want to know if ...
7
votes
4answers
643 views

C# creating buffer overflow

I'm trying to create a buffer overflow with C# for a school project: unsafe { fixed (char* ptr_str = new char[6] {'H', 'a', 'l', 'l', 'o', ','}) { fixed (char* ptr_str2 = new char[6] ...
7
votes
6answers
510 views

Example of a buffer overflow leading to a security leak

I read many articles about unsafe functions like strcpy, memcpy, etc. which may lead to security problems when processing external data, like the content of a file or data coming from sockets. This ...
7
votes
4answers
910 views

Efficient C# byte queue for parsing stream of bytes for binary message packets

I'm trying to replace what I would usually implement as a circular-buffer+. The function of the queue is to buffer incoming bytes (eg. from serial port or some other stream of data), whilst a parser ...
7
votes
6answers
361 views

What's a buffer?

As far as my understanding of languages goes, a buffer is any portion of memory in which a data is stored like an int,float variables, character arrays etc. However, I was reading buffer overflows and ...
7
votes
3answers
966 views

How to delete multiple buffers in Vim?

Assuming I have multiple files opened as buffers in Vim. The files have *.cpp, *.h and some are *.xml. I want to close all the xml files with :bd *.xml. However, Vim does not allow this (E93: More ...
7
votes
5answers
3k views

How to effectively draw on desktop in C#?

I want to draw directly on the desktop in C#. From searching a bit, I ended up using a Graphics object from the Desktop HDC (null). Then, I painted normally using this Graphics object. The problem is ...
7
votes
1answer
7k views

Specifying UDP receive buffer size at runtime in Linux

In Linux, one can specify the system's default receive buffer size for network packets, say UDP, using the following commands: sysctl -w net.core.rmem_max=<value> sysctl -w ...
7
votes
3answers
1k views

Is there a buffer size attached to stdout?

I am trying to find some information on data limits related to stdout on Windows. I can't seem to find the information on MSDN. Is there a limit to how much data can be written to stdout? If so, ...
7
votes
3answers
3k views

vim — How can I search buffers?

I am looking for some command like: :b1!g/something_here/ where I supposedly search for a word "something_here" in the buffer "b1". How can I do it?
7
votes
7answers
3k views

What does it mean by buffer?

I see word BUFFER everywhere but I am unable to grasp what it exactly is. Would anybody please explain what is buffer in layman's language? When is it used? How is it used? Thanks.
7
votes
3answers
5k views

What is the best resizable circular byte buffer available in Java?

I need a byte buffer class in Java for single-threaded use. I should be able to insert data at the back of the buffer and read data at the front, with an amortized cost of O(1). The buffer should ...
6
votes
4answers
46 views

CharBuffer.put() didn't working

I try to put some strings to CharBuffer with CharBuffer.put() function but the buffer is left blank. my code: CharBuffer charBuf = CharBuffer.allocate(1000); for (int i = 0; i < 10; i++) { ...
6
votes
3answers
101 views

How to do a memset with Python buffer object?

How can I do a fast reset for a continue set of values inside a Python buffer object? Mainly I am looking for a memset :) PS. The solution should work with Python 2.5 and modify the buffer itself ...
6
votes
4answers
98 views

Longest common prefix using buffer?

If I have an input string and an array: s = "to_be_or_not_to_be" pos = [15, 2, 8] I am trying to find the longest common prefix between the consecutive elements of the array pos referencing the ...
6
votes
1answer
175 views

Need to exploit buffer overflow. Can't figure out how to uncorrupt the stack after executing exploit code?

Basically the function I am exploiting is this: int getbufn() { char buf[512]; Gets(buf); return 1; } When I run the main program the function executes 5 times and each time the ...
6
votes
2answers
212 views

Does reactive extensions support rolling buffers?

I'm using reactive extensions to collate data into buffers of 100ms: this.subscription = this.dataService .Where(x => !string.Equals("FOO", x.Key.Source)) ...
6
votes
5answers
199 views

Shortcut for moving between Vim windows

Let's say I have single Vim tab displaying 9 buffers (equally separated, like a table 3x3). Currently, to get from the top left window to the bottom right one, I have to press 3, Ctrl+W, J, and then ...
6
votes
2answers
184 views

What is the fastest (possibly unsafe) way to read a byte[]?

I'm working on a server project in C#, and after a TCP message is received, it is parsed, and stored in a byte[] of exact size. (Not a buffer of fixed length, but a byte[] of an absolute length in ...
6
votes
5answers
360 views

Why is buffering in C++ important?

I tried to print "Hello World" 200,000 times and it took me forever, so I have to stop. But right after I add a char array to act as a buffer, it took less than 10 seconds. Why? Before adding a ...
6
votes
3answers
1k views

File IO with Streams - Best Memory Buffer Size

I am writing a small IO library to assist with a larger (hobby) project. A part of this library performs various functions on a file, which is read / written via the FileStream object. On each ...
6
votes
4answers
310 views

Does a StringBuilder initialized with a string contain exactly (only) enough space for that string?

I'm wondering if this code ... StringBuilder sb = new StringBuilder("Please read the following messages."); ... initializes sb with a buffer exactly as large as the string passed to the ...
6
votes
1answer
634 views

emacs programmatically change window size

I would like to implement automatic collapse of compilation buffer to small size (but not close at a delete windows), such that upon successful compilation to window is shrunk to minimum size. ...
6
votes
1answer
3k views

Is there anyway to programmably flush the buffer in log4net

I'm using log4net with AdoNetAppender. It's seems that the AdoNetAppender has a Flush method. Is there anyway I can call that from my code? I'm trying to create an admin page to view all the entries ...
6
votes
4answers
9k 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, but I can not, what ...

1 2 3 4 5 19