2
votes
6answers
220 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_m …
0
votes
4answers
97 views
Array of buffers in C programming?
I am trying to create an array of buffers. I need to store an integer into each buffer. I'm not quite sure how this should be done.
int BUFFER_LENGTH = 50; //the size of each b …
0
votes
2answers
81 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 …
1
vote
3answers
150 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
1answer
139 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 e …
5
votes
2answers
225 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 wri …
0
votes
3answers
118 views
Reading and writing to a buffer
Hi,
I have 2 classes, one that writes multiple 96bit objects to a buffer (32bits at a time - 3x int32), and one that i want to read from the same buffer.
The first class (Writer) …
0
votes
1answer
81 views
Unable to limit Ctrl-O to open only current buffers in Vim
I get the old buffers to be opened when I press
Ctrl-O
I want only to browse buffers which I have opened in the current Vim session.
How can you browse fast between current buf …
7
votes
8answers
1k 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 w …
3
votes
3answers
301 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 …
2
votes
3answers
93 views
Inherited Stream; buffering in Read()
Hello, 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 …
9
votes
4answers
473 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. ( …
