4
votes
24answers
538 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 …
3
votes
5answers
65 views
Easy Ruby libraries to understand for beginner
Hi. 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 b …
1
vote
2answers
70 views
Fastest way to read a file line by line with an arbitrary number of characters in each
Ok, I'm trying to figure out which way would be faster to read a text file that I'm working with. The contents of the file look like this
1982 3923 3542 4343
2344 3453 2
334 4234 …
1
vote
2answers
173 views
MSMQ slow queue reading
I am using an open source .Net library which uses MSMQ underneath. After about a week or 2, the service slows down (not timed exactly but general guess). It appears that what is …
10
votes
7answers
149 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 …
1
vote
4answers
124 views
Reading long ASCII-files in C.
In C, if I read a line from the file by function fgetc, there might be a stack overflow. Suppose that some has written a program which outputs a a huge line of ASCII data in one li …
1
vote
1answer
72 views
What is reading source on an ebook reader like?
There are a few open source projects I would really like to read through the code of to understand better / improve on. The problem is, for me, reading for a long time on the compu …
6
votes
14answers
411 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, libr …
3
votes
2answers
129 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 fo …
2
votes
6answers
372 views
How do I read hex numbers into an unsigned int in C [Solved]
I'm wanting to read hex numbers from a text file into an unsigned integer so that I can execute Machine instructions. It's just a simulation type thing that looks inside the text …
0
votes
1answer
18 views
Reading label Data from MVC view using Model binders
We are having MVC view where user can select few fields.
I want to read the data from the view.
Currently using model binders i am able to read only the changeable data (from text …
0
votes
3answers
127 views
What’s the quickest (code execution) way to execute an XML reading?
I have to read the XML:
<items>
<item>
<prop1>value1</prop1>
<prop2>value2</prop2>
<prop3>value3</prop3>
…
3
votes
10answers
294 views
How to read a technical book to remember most of it?
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 the …
0
votes
2answers
216 views
How to read a text file upto certain position in C?
I am passing a string as an argument to my program and extracting its position in a text file.
Can we read a text file only upto this certain position in C?? If yes, then please t …
0
votes
3answers
190 views
Embedding a binary file inside a class library
Hi,
Is it possible to embed a custom binary file inside a C# class library and then at runtime read it with a binary reader?
I'm guessing it might be possible through resources.
…
