|
I've seen different lists based on Adam Markovitz's ( http://web.archive.org/web/20060213081516/http://blogs.borland.com/AdamMarkowitz/archive/2005/12/15/22523.aspx ) like here or on Delphi Wiki , this other one from DelphiMiracles , or this table from...
Started by François on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Note that this PDF is not a comprehensive list of IDE key combinations, but are specific.
Addenum: I just found another list in PDF of them .
A comprehensive list, all Delphi users would be very grateful.
|
|
I'm trying to put together a comprehensive regex to validate phone numbers. Ideally it would handle international formats, but it must handle US formats, including the following:
1-234-567-8901 1-234-567-8901 x1234 1-234-567-8901 ext1234 1 (234) 567-8...
Started by Nicholas Trandem on
, 19 posts
by 19 people.
Answer Snippets (Read the full thread at stackoverflow):
A comprehensive regex from scratch is usually a bad idea, unless you have good hard reasons.
|
|
I'm looking for a comprehensive and up-to-date reference (preferably in book form) on OpenGL. I'd like to find something that covers OpenGL 3.0 but also need information on OpenGL 2.1 for older hardware (my understanding is that DirectX 10 level hardware...
Started by Derrick Turk on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Well, if you want....
I would recommend the OpenGL SuperBible (even though it's only 2.1, it's quite good), and then just refer to the OpenGL Reference Pages for 3.x .
I don't know of a single, good book that covers 3.0 (or 3.2) which has been published yet .
|
Ask your Facebook Friends
|
I've just started learning C++ and I find it very hard to find short, comprehensive tutorials on how to use gnu make / gcc. Any ideas (please don't point me to the official gnu make tutorial, it's way too much in-depth for my purposes ;-)).
Started by Helper Method on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
This doesn't directly answer your question, ....
Part I of this book covers the basic concepts, which I think would help you get comfortable with GNU Make .
The entire text of this book is available online.
Check the book Managing Projects with GNU Make.
|
|
Short backstory: I am a self-taught developer. This can lend to all manner of bad habits and misconceptions, but I am constantly learning and want to improve my skills. Insofar as I want to be a developer, I want to be a good developer. With that in mind...
Started by eyelidlessness on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Introduction to unit testing and the basics of writing ... .
And it covers these subjects (as taken from the manning website) .
By Roy Osherove
The book concentrates on unit testing for the .Net developer .
“The Art of Unit Testing“.
This may be of interest.
|
|
I have only a handful of books for each of Perl, Python, and SQL. I have around a dozen books on C and C++ combined. My stack of Java books outweighs me. After perusing the bookstore shelves I can see that I could easily make a Java-like investment in...
Started by Bill the Lizard on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It's not a comprehensive guide to XML.
I'd recommend Elliotte Rusty Harold's Effective XML.
|
|
A comment at the top of system.pas states:
{ Predefined constants, types, procedures, } { and functions (such as True, Integer, or } { Writeln) do not have actual declarations.} { Instead they are built into the compiler } { and are treated as if they...
Started by Mason Wheeler on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You can find them easily with a search on "built-in types"; there's a list of {$EXTERNALSYM} declarations... .
Some of the internally defined types can be found a little further down in System.pas (around line 90 in the version shipped with Delphi 2010 Update 4) .
|
|
I am looking for a comprehensive book on data structures which covers wide range of data structures, both fundamental and advanced, with implementation code.
I have consulted a few books but all of them skip some fundamental data structures here and there...
Started by Jahanzeb Farooq on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Just had a brief look, it looks the most comprehensive.
Structures and Algorithms in C++ by Adam Drozdek.
|
|
Is there any comprehensive overview somewhere that discusses all the different types of threads and what their relationship is with the OS and the scheduler? I've heard so much contradicting information about whether you want certain types of threads,...
Started by Andrei on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You cannot ....
It is "hyper threading" which is a CPU architecture thing .
Hyper threads don't exist.
You can ignore green threads, fibers, green fibers, pthreads (POSIX) .
Threads are the main building block of a Process in the Windows win32 architecture .
|
|
Anyone here a guru in Tikz-timing?
I am/was looking for a way to label a timing diagram with annotations, but the vertical scale is too compressed. I couldn't find a comprehensive list of options for the \timing command (or if I did, it was a meagre list...
Started by SmileAndNod on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you use....
Check CTAN or the package website http://latex.scharrer-online.de/tikz-timing.
Stupid question, but did you checked the package manual?
I don't think that you will find any better list of options anywhere .
Hi,
I'm the author of tikz-timing.
|