Tagged Questions
The unbuffered tag has no wiki summary.
3
votes
3answers
311 views
Unbuffered IO in perl
I have a Perl application which writes logs to a file using open and print calls.
open (FH, "d:\\temp.txt");
print FH "Some log";
close (FH);
However during an abrupt shutdown of the machine, the ...
3
votes
3answers
1k views
Unbuffered I/O in ANSI C
For the sake of education, and programming practice, I'd like to write a simple library that can handle raw keyboard input, and output to the terminal in 'real time'.
I'd like to stick with ansi C as ...
2
votes
1answer
138 views
read url content, unbuffered php
all,
this function reads an url
function get_url_contents($url){
$crl = curl_init();
$timeout = 5;
curl_setopt ($crl, CURLOPT_URL,$url);
curl_setopt ($crl, CURLOPT_RETURNTRANSFER, ...
1
vote
1answer
87 views
Unbuffered Multi-line Comments in CoffeeScript?
Correct me if I'm wrong, the only way to have unbuffered (doesn't output to .js) comments in CoffeeScript is
# This is the only way to mute this single-line comments
The ### buffers comments for ...
1
vote
0answers
222 views
Implementing a FUSE Filesystem: iostream, FILE* or plain file descriptors?
I implemented a small read-only FUSE filesystem in C++ that reads the data from a certain multi-file archive. I used iostreams (actually boost::filesystem::ifstream) in order to read the files. Now I ...
1
vote
2answers
109 views
Buffering Standard Output (STDOUT)
By default, is STDOUT unbuffered? If not what is the type of its default buffering
Thanks
0
votes
0answers
44 views
Unbuffered uploads to IIS server with NTLM authentication
I need to upload large files to IIS with NTLM authentication. By default IIS is configured to authenticate each request, as a result entire file should be buffered in memory on a client side during ...
0
votes
1answer
108 views
How can I create an unbuffered I/O multiplexer in Python?
I want a console python script that will receive input on stdin and immediately write it out to stdout and stderr simultaneously. This should be unbuffered both on input and output.
How would I do ...
0
votes
1answer
205 views
Type of Linux/Unix I/O
i have to make a presentation about Linux/Unix I/O: File I/O,Standard I/O, buffered/unbuffered I/O and formatted/unformatted I/O.
i'm not sure how to order these kinds of I/O to make sense.
here is ...