Tagged Questions
The reading tag has no wiki summary.
1414
votes
328answers
316k views
What is the single most influential book every programmer should read? [closed]
If you could go back in time and tell yourself to read a specific book at the beginning of your career as a developer, which book would it be?
I expect this list to be varied and to cover a wide ...
61
votes
52answers
4k views
How do you make time to read technical books?
I have always wondered how people make time to read technical books. Because after working for 8-10 hrs a day (sometimes even 12 hrs) first thing I want to do is to keep myself away from the technical ...
23
votes
9answers
8k views
How do you actually read source code?
Reading source code is a good way to improve as a programmer, but I've never seen a great explanation of how to do it. We often read textbooks & novels linearly, perhaps taking notes along the ...
11
votes
7answers
461 views
What should I be reading for intermediate Cocoa programming instruction?
I'm looking for reading material to bridge the gap between "read Hillegass multiple times" and "productive Cocoa programmer". What materials do you suggest?
I am not particularly looking for ...
8
votes
14answers
777 views
Required reading for a soon-to-be web developer
I am about to start working with web development after doing (non-web) server and client development for about ten years.
I'm not looking for info on any particular framework, library or about TCP/IP. ...
7
votes
2answers
22k views
Reading a text file or XML file in Android java
I am currently working on a group project to build an Android game. I have been delegated the task of building a PC based level editor (which is all done).
All I have to do now is decide on the file ...
7
votes
4answers
735 views
C#: Whats the fastest way of reading and writing binary?
I'm currently optimizing an application, one of the operations that is done very often is reading and writing binary. I need 2 types of functions:
Set(byte[] target, int index, int value);
int ...
7
votes
17answers
2k views
How to read a technical book to remember most of it? [closed]
There are many technical books that become thinker and thicker and the pressure from the technical society is more and more to read them and remember many concepts described in them. But it's so hard ...
6
votes
11answers
354 views
Code reading sources
I have heard a lot of people saying that to be a good programmer one needs to read a lot of good code. Can you help me find some good code in Java? Thanks.
6
votes
10answers
476 views
Programming books from cover to cover in one-shot? [closed]
Is it a good idea to just read the entire programming-related book, assuming within your grasp of 250-400 pp.? Or take it slow and go through it taking your time trying to understand absolutely ...
6
votes
3answers
848 views
How can the Kindle be used as a source code reading tool?
I'm a programmer. I want to be a better programmer. I want to read more source code written by other people (especially open source projects). Also, I'd like to be able to have a on-hand searchable ...
6
votes
25answers
886 views
Tech Books you have but never read
Let's be honest.
Many of us have books that were bought thinking "I might need this some day".
That day has never come.
Or maybe you spent $50+ on the book but only used it a few times.
Or you ...
6
votes
3answers
9k views
How can I read an Http response stream twice in C#?
I am trying to read an Http response stream twice via the following:
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
stream = response.GetResponseStream();
RssReader reader = new ...
5
votes
2answers
228 views
C#: How to read information in File summary tab? [closed]
Possible Duplicate:
Read/Write 'Extended' file properties (C#)
Does anyone know how to read information in a file's summary tab using C#?
Summary tab: Right click on file, then ...
5
votes
4answers
167 views
Do you prefer to read/reference your technical books in print or digital form?
Wondering about stack overflow's reading habits. Feel free to include other interesting quirks. For example, if you have your own search engine for this purpose!
5
votes
7answers
800 views
Fastest file reading in C
Right now I am using fread() to read a file, but in other language fread() is inefficient i'v been told. Is this the same in C? If so, how would faster file reading be done?
5
votes
3answers
8k views
reading integers from binary file in python
I don't know if the question title is correctly set.
I'm trying to read a BMP file in python. I know the first two bytes
indicate the bmp firm. Next 4 bytes are the file size. When I excecute:
fin ...
4
votes
3answers
95 views
python: deleting numbers in a file
I need to delete numbers from a text file on windows XP. I am new to python and just installed it for data scrubbing.
I have stored the test file in C:\folder1\test1.txt
The contexts on test1.txt is ...
4
votes
3answers
239 views
How can I read data faster?
Hmmm... its kinda challenging to find a method for reading/writing data faster enougth to get ACCEPTED in this problem ( https://www.spoj.pl/problems/INTEST/ ) using F#.
My code ( ...
4
votes
1answer
901 views
reading a barcode with a webcam
Hey,
I'm trying to read a EAN-13 barcode from my webcam.
I already wrote a class to do that work.
I'm taking a picture from my webcam, trimming it to show ONLY the barcode,
and reading the barcode ...
4
votes
4answers
627 views
Why is the FileInputStream read() not blocking?
I've got a Writer program that writes one line of text to a file, then waits until the user hits return before it writes another line and then exits. Only after that is the file closed. The code:
...
4
votes
3answers
529 views
Fancy way to read a file in C++ : strange performance issue
The usual way to read a file in C++ is this one:
std::ifstream file("file.txt", std::ios::binary | std::ios::ate);
std::vector<char> data(file.tellg());
file.seekg(0, std::ios::beg);
...
4
votes
12answers
254 views
UI design so users will actually *read* disclaimer screen/text?
Client insists that users see disclaimer/legal/iAccept screen/text on their way into the web application. Same Client already perceives users as not reading that sort of text when presented with it.
...
4
votes
3answers
414 views
How do I read a large file gradually?
I'm having some problems reading a file with java. It is absolutely huge (2,5G) and adjusting my memory doesn't help. The data is all on a single line so I can't read it one line at a time. What I ...
4
votes
5answers
161 views
Easy Ruby libraries to understand for beginner
I'm at the point in learning Ruby where I'd like to look at some small-ish libraries' source code to see how they were built. I do not know what is considered a small library but was hoping SO could ...
3
votes
1answer
57 views
xElement Linq Creating List
I have created new class to read the data from xml file.
I have declared class like
public class Validations
{
public string id { get; set; }
public List<string> lhsList { ...
3
votes
3answers
72 views
Saving and reading from specific parts of a .txt file
Aspiring programmer here!
You can skip this part if you find it irrelevant.
Im currently working on a project where i give every program a username and i let people edit their own part of of each ...
3
votes
3answers
83 views
Reading data from file
I have .txt file which contains data as follows
[12,25],[36,45] i.e numbers are enclosed in square brackets separated by comma from each other
I want to read such file through C++ program
I referred ...
3
votes
3answers
329 views
Java InputStream reading problem
I have a Java class, where I'm reading data in via an InputStream
byte[] b = null;
try {
b = new byte[in.available()];
in.read(b);
} catch (IOException e) {
...
3
votes
2answers
140 views
Java reading different variables with ObjectInputStream
I have an ObjectInputStream which needs to read two different inputs which are a String and my own created object. I have a thread which constantly waits for an input and depending on the input be it ...
3
votes
4answers
223 views
How would i go about reading this in?
I have this text file with customer, account and transaction information in. Each item appears in the order just mentioned line by line.
Dr
James
M
Magee
12/05/1978
12
Dakedon Avenue
Mutley
Plymouth
...
3
votes
4answers
725 views
Vector subscript out of range error, C++
When I try to run this program I get an error that halts the program and says, "Vector subscript out of range"
Any idea what I'm doing wrong?
#include <vector>
#include <string>
#include ...
3
votes
6answers
1k views
c reading a text file into array line by line and print them
i have the following c# code snippet
string[] lines = File.ReadAllLines(@"C:\test.txt");
for(int i=0; i<lines.Length; i++)
...
3
votes
2answers
307 views
Generically reading a well-formed binary file
I'm trying to read contents of a game's map/model files into a program for the purposes of writing a small model viewer and testing out some DirectX features. The model/map file formats are chunked in ...
2
votes
0answers
66 views
Processing - Firmata with Arduino Mega 1280, can't read all input pins
Hi and a happy new year!
I got an Arduino Mega 1280 and want to communicate with it via Firmata. That sounds easy...
So my problem: If I use the StandardFirmata Firmware for the Arduino, which is ...
2
votes
8answers
91 views
Multithreading - Counting total amount of words from several files
I made a program to count words from individual files,
but how can i modify my program, so it gives the total amount of words from all files (as ONE value).
My code looks like this:
public class ...
2
votes
3answers
112 views
Java - Fastest Way to Reading Text Files Char by Char
I have nearly 500 text files with 10 million words. I have to index those words. What is the fastest way to read from a text file character by character? Here is my initial attempt:
InputStream ist = ...
2
votes
3answers
81 views
Reading integers from file, with a string in between
I have an input file that looks like this:
3 2
5 1
3 0
XXX
2 1
3 0
I need to read each integer separately, putting it into a polynomial. The "XXX" represents where the second polynomial will start. ...
2
votes
1answer
68 views
Strange behavior: same code on different locations, one fails reading binary file
I'm having trouble with a small piece of code, I'm trying to read a binary file, if I have this code on a separate file, build and run it, it reads the file perfectly, but if I put the same code on a ...
2
votes
2answers
58 views
File reading and writing projects to make sure you understand the concept
New to programming, and I'm beginning to tackle file reading and writing. I understand the basic concept, but I was wondering what kind of projects or tasks I should be able to do in order to fully ...
2
votes
1answer
135 views
How to read big bufferedimage
I am reading 100 MB picture into my app it works with inside eclipse, but not when i export project to jar i get "Can't read input file!"
Since i need to edit it a lot i used bufferedimage.
private ...
2
votes
1answer
109 views
Avoid grabbing nothing from string stream
I'm working on an assembler for a very basic ISA. Currently I'm implementing parser function and I'm using a string stream to grab words from lines. Here's an example of the assembly code:
; This ...
2
votes
3answers
262 views
Reading other process console output
I have problem when console output is returned in 'waves'. For example console outputs something every second, and for example event triggers 60 times every minute (all events at he same time).
My ...
2
votes
4answers
594 views
What does Filestream.Read return value mean? How to read data in chunks and process it?
I'm quite new to C# so please bear with me. I'm reading (using FileStream) data (fixed size) to small array, process the data and then read again and so on to the end of file.
I thought about using ...
2
votes
3answers
326 views
 appearing before some characters in xml feed
I have a xml feed with some html in one of my nodes.
So basically making it like this in php
<user_id>'.$review[user_id].'</user_id>
...
2
votes
2answers
279 views
Class for reading MP3 files
I am writing a game that is a bit depending on the soundtrack so I want to read mp3 file and use it's data (like the speed of music, beat and stuff). Is there any class (preferably) I could use or ...
2
votes
3answers
196 views
How to read a file starting at a specific cursor point in C#?
I want to read a file but not from the beginning of the file but at a specific point of a file. For example I want to read a file after 977 characters after the beginning of the file, and then read ...
2
votes
2answers
72 views
Resource on advance topics of XNA development
I need resources books/reading/tutorials on more advance topics of XNA development.
It doesn’t necessary need to be free!
2
votes
4answers
231 views
Parse a log file and get entry data
I have a big log file with multiple lines separated by new line. Each line entry stores four values.
If I am reading the log file and want to store this information, what data type/object should I ...
2
votes
4answers
640 views
Best practice for reading csv (with variable number of lines) into data structures
Hey guys, I'm writing a small program to read in a csv with a variable number of lines and have a question about best practices:
Is the best way to create storage for the data on each line to make an ...