Tagged Questions
The buffers tag has no wiki summary.
23
votes
12answers
10k views
How do you prefer to switch between buffers in Vim?
I've tried MiniBufExplorer, but I usually end up with several windows showing it or close it altogether. What I'd like is something like LustyJuggler with incremental search, the way I switch between ...
14
votes
2answers
3k views
Diff two tabs in Vim
Scenario: I have opened Vim and pasted some text. I open a second tab with :tabe and paste some other text in there.
Goal: I would like a third tab with a output equivalent to writing both texts to ...
10
votes
4answers
951 views
What makes this the fastest JavaScript for printing 1 to 1,000,000 (separated by spaces) in a web browser?
I was reading about output buffering in JavaScript here, and was trying to get my head around the script the author says was the fastest at printing 1 to 1,000,000 to a web page. (Scroll down to the ...
8
votes
3answers
1k views
ViM: How to redirect ex command output into current buffer or file?
How can I redirect or pipe the output of an ex command into my current buffer or a file?
For example, I want to read the contents of all the registers into the current buffer, which in ex mode is ...
8
votes
5answers
1k views
Possible to calculate MD5 (or other) hash with buffered reads?
I need to calculate checksums of quite large files (gigabytes). This can be accomplished using the following method:
private byte[] calcHash(string file)
{
...
7
votes
3answers
161 views
Are direct buffers in Java initialized to a default value like arrays?
When I initialize an array in Java like:
float[] array = new float[1000];
all elements are initialized to 0. Is that also the case when I allocate a direct buffer like this:
FloatBuffer buffer = ...
7
votes
3answers
633 views
Too many split screens opening in Emacs!
Ever since I installed emacs on a new machine I have seen an ugly behaviour. Unfortunately, my old .emacs files are rather fragmented and I can't determine whether I used to have elisp that took care ...
6
votes
2answers
127 views
Testing whether buffers have been flushed in R
I have some big, big files that I work with and I use several different I/O functions to access them. The most common one is the bigmemory package.
When writing to the files, I've learned the hard ...
5
votes
3answers
220 views
Buffer switching in Emacs
I would like to emulate Alt-Tab as it works with individual windows on GTK, but with Ctrl-Tab within buffers in emacs.
So, for example, if I have ten buffers open in emacs, and I am working on two at ...
5
votes
4answers
355 views
How to survive the transition from tabbed-based to buffer-based coding (Vim)
I recently changed from notepad++ to Vim. In notepad++ I used to be aware of my open files by
seeing them as tabs, so when I wanted to close or change them I just pressed Shit-Tab or Ctrl-W. In Vim ...
4
votes
3answers
470 views
Deallocating Direct Buffer Native Memory in Java for JOGL
I am using direct buffers (java.nio) to store vertex information for JOGL. These buffers are large, and they are replaced several times during the application life. The memory is not deallocated in ...
3
votes
3answers
44 views
Ignoring certain commands in the wrong vim window
It's pretty common that I'm in a quickfix, nerdtree, or other special window and hit Ctrl-O, thinking I'm in my main window. What I'm trying to do is go back to my previous location in my main ...
3
votes
2answers
118 views
char buffers comparison
i have two char buffers which i am trying to compare parts of them. i am having a weird problem. i have the following code:
char buffer1[50], buffer2[60];
// Get buffer1 and buffer2 from the network ...
3
votes
2answers
145 views
How to move to non-hidden buffer that exists in some window on some tab?
I work in Vim with lots of open buffers in various windows on various tabs. I know it's simple to just load one of the existing buffers into my current window. However, some of my buffers for large ...
3
votes
4answers
1k views
Unable to have the reverse of Ctrl-O in Vim
I want to have the reverse of
Ctrl-O
to be
Shift-Ctrl-O
The original reverse is
Ctrl-i
How can you remap the reverse of Ctrl-O in Vim to be Shift-Ctrl-O?
3
votes
3answers
832 views
Editing multiple buffers in vim: “((1) of 3)” in status line
When I switch between buffers in vim with ":bn" and ":bp", my status line shows the following handy information:
"foo.txt" 43 lines --88%-- ((1) of 3) 38,1 All
(I ...
2
votes
1answer
80 views
How to pass a larger buffer size to DCPCrypt 'UpdateStream' Procedure
I have a program that currently hashes files using just SHA1. No other options. It hashes them using the SHA1 hash function that's part of the Lazarus and Free Pascal Compiler.
I've since added the ...
2
votes
2answers
66 views
emacs persistant buffer list
In vim, I can have a nice small window that lists all my open buffers by using minibufexplorer. I can navigate to it and switch buffers.
Is there a persistant buffer list plugin for emacs?
I'm ...
2
votes
1answer
374 views
Delphi XE threading: how to realize function calling buffer?
I am trying to realize a function calling buffer. My problem is function tied to user's answer. So functions can be executed for long (due to waiting for user to answer) and my functions must be ...
2
votes
1answer
143 views
Same registers for different VIM tabs
I'm trying to make a copy paste from 1 file I have opened in a tab to another file I have opened in another tab.
So I use the visual block to get my selection, yank it, but when I switch to other ...
2
votes
1answer
169 views
Are there any c# Protocol buffers tcp messaging libs out there?
Basically i want to pub/sub Protocol buffer messages over a tcp async socket.
Are there any open-source libs that pub/sub Protocol buffer messages over tcp?
thanks
2
votes
1answer
128 views
Vim Buffer has been modified [closed]
Possible Duplicate:
What is a vimrc function to determine if a buffer has been modified?
I am trying to implement an AutoCmd in Vim that needs to be executed when the current buffer has ...
2
votes
2answers
448 views
response.write failure in Nodejs
i am trying to make a proxy server that gets a page from "www.xxx.com" for example, cache the response, and then send it to the requesting browser.
To do so, in the server i create an httpClient that ...
2
votes
2answers
275 views
Boost serialization multiple objects
Im trying to build a persistence module and Im thinking in serialize/deserialize the class that I need to make persistence to a file. Is possible with Boost serialization to write multiple objects ...
2
votes
2answers
170 views
What should I use as a buffer in C++ for receiving data from network sockets?
I'm using sockets with C++. The program simply requests an HTTP page, reads it into a buffer buf[512], and then displays the buffer. However pages can contain more data than the buffer, so it will cut ...
2
votes
6answers
1k views
Buffer size in C
When provided with a buffer size in C, how do I know how much is left and when do I need to stop using the memory?
For example, if the function I am writing is this:
void ascii_morse (lookuptable ...
2
votes
3answers
191 views
Inherited Stream; buffering in Read()
I have inherited Stream class, in which I don't know how to implement Read() function properly, so I won't end up with a lot of nested ifs and hard to debug code. The point is that reading from source ...
1
vote
1answer
87 views
Buffers per tab in vim
Is there a way I can configure vim to remember buffers based on their tab?
I am currently working on two projects, and I have each project in it's own tab, with it's own local directory. To navigate ...
1
vote
1answer
89 views
opengl 1.1 messes up at launch (randomly)
I have this problem with openGL ES 1.1 on iPhone. I have made myself c++ engine that makes all the job in opengl and a view that shows the rendered content. The problem is that sometimes it works ok ...
1
vote
1answer
51 views
How Can I Read a Large Integer from a Buffer into an Integer in iOS?
I am having difficulty getting an integer from a buffer in iOS.
To read a string, I am using:
output = [[NSString alloc] initWithBytes:buffer lenght:len encoding:NSASCIIStringEncoding];
But there ...
1
vote
1answer
265 views
bidirectional communication with Thrift or Protocol Buffers
(sorry for my english)
It's possible to build an application (2 in deed ) that implement bidirectional communication between process?.
I know two "Frameworks" to communicate different process (in ...
1
vote
1answer
183 views
Is there any example of Google Protocol Buffers service on Java?
Google Protocol Buffers generates service Java interface. The documentation introduces some Java interfaces and methods about service. But it doesn't demonstrate enough on implementing it. Is there ...
1
vote
0answers
253 views
OpenGL on Windows uses Tons of CPU when SwapBuffers is called on a RenderThread
Ok, so I have been running into some threading issues with OpenGL on Windows. I'm using C# .NET to wrap GL. I'm on Windows7 x64.
So ive tried two different tests. In each test i'm rendering a ...
1
vote
2answers
123 views
Vim: Changing Buffer Numbers
I usually like to use buffer numbers to go to buffers quickly. Unfortunately, after many searches, opening some files, etc., the buffer numbers get crazy:
Is there anyway to assign buffer numbers ...
1
vote
2answers
253 views
Protocol buffers logging
In our business, we require to log every request/response which coming to our server.
At this time being, we are using xml as standard implementation.
Log files are used if we need to debug/trace some ...
1
vote
3answers
526 views
Unloading vertex buffers in OpenGL
I have an Android live wallpaper that I suspect is leaking memory, probably either textures or vertex arrays. I'm calling glDeleteTextures on my texture IDs, but don't see any sort of equivalent for ...
1
vote
2answers
2k views
Creating accessing shared memory in C
So I have a problem that I don't really know how to go about. I was hoping maybe you could let me know how to deal with it.
I need to allocate N number of buffers in shared memory. Each buffer should ...
0
votes
0answers
26 views
WaitHandle.WaitAny in Streaming Buffers (Direct Sound)
I am trying to play a wav file with streaming buffers using direct sound. i have set a buffer size and updated the first buffer. I also set 2 notifications but I am having trouble in the ...
0
votes
0answers
29 views
Playing Wave Files using Streaming Buffers
I am trying to allocate a buffer using directsound and constantly updating it using 2 notification points. I have converted a wav file into an array called 'Sample1' (except for the header file).
...
0
votes
1answer
88 views
OpenGL sending vertex pointers or generating buffers
I just started OpenGL for iPhone, using GLKit. My programming background is almost just java and objective c with little,little experiences with C, C++ over ten years ago. All what remained is a ...
0
votes
1answer
48 views
Circular (ring or cyclic) buffers in hardware: possible usage in microprocessors?
It is known that circular buffers are a useful part of DSP's like made by TI for efficient video or sound data processing.
Are there possible uses of these buffers in general type microprocessors ...
0
votes
1answer
114 views
Java protocol buffers Ascii serialization
It is probably a stupid question, sorry.
I recently started using protobufs and I do not seem to figure out how would I parse an ascii file in the protocol buffer defined message?
ParseFrom(...) does ...
0
votes
0answers
28 views
About buffers in streamwriter
I have a winform-app. reading and writing txt files.
For writing I use
using ( StreamWriter file = new StreamWriter(pathToBetween, true))
{}
It's a great file with about 728000 lines in it.
I have ...
0
votes
0answers
109 views
Strange issue with Obj C and Java via Google Protocol Buffers
I'm trying to communicate from my iPhone client to my Java server via Google Protocol Buffers. I'm using Aysnccocca on the iPhone side of things
My Obj Code for writing is:
- ...
0
votes
2answers
78 views
How can I take a network buffer and pass it into a function that is expecting a FILE in C
I am looking to be able to download a file over a network socket from an HTTP server (A jpeg). I then need to pass the downloaded file into c-jpeg-steganography ...
0
votes
2answers
62 views
How to stop overflowing file descriptors in C
I am writing a message to a file descriptor that is 88kb. The file descriptor on my linux system only can hold 64kb. Once the data gets put on the file descriptor it gets read and piped into a tcp ...
0
votes
4answers
153 views
What does the beginning of this HTML optimization code do?
The difficult part is trying to figure out what the stripwhitespace() function does. stripbuffer() is fairly straightforward, but I've been staring at this little piece of code for a while now trying ...
0
votes
2answers
152 views
MASM compare uninitialized buffers
I'm stuck writing my program
Here's what I wanted it to do:
display a welcome message inside a console
Wait for the user to imput a number from 0 to 9]
compare that number to 0
display a message if ...
0
votes
2answers
255 views
What are the units of UDP buffers, and where are docs for sysctl params?
I'm running x86_64 RedHat 5.3 (kernel 2.6.18) and looking specifically at net.core.rmem_max from sysctl -a in the context of trying to set UDP buffers. The receiver application misses packets ...
0
votes
2answers
91 views
emacs can invoke shell and execute commands— can they act on Emacs buffers?
I use Alt-! (Alt-Bang) a lot in Emacs. One of the big things I use it for is
Alt-! cat $logfile | grep 'this' # show me one kind of event
or sometimes
Alt-! cat $logfile | grep 'this' | wc -l # ...