Tagged Questions

17
votes
13answers
901 views

Well-respected developer blogs written by non-famous people

Many of us probably follow the developer blogs of well-known names - Joel Spolsky, Jeff Atwood, etc. Many of us probably also follow the technical blogs of people we've come to know through our …
13
votes
25answers
2k views

When can you put “C++ Expert” on your CV?

Most of C++ programmers will not specify their rank on their CV (at least, as far as I have seen) but some people clearly can put "C++ expert" on their CV (like most of the boost lib writers). But at …
9
votes
3answers
419 views

Videos about C++ programming?

Do you have these kinds of video like those listed below.It better to learn from experts talk.So we don't learn it the wrong way Advanced Topics in Programming Languages Series: C++ Threads Text …
8
votes
19answers
976 views

What makes you a C programming expert?

I attended a job fair yesterday and a developer asked me how I would rank my proficiency in C. I then realized that this is incredibly arbitrary and almost impossible to nail down, so my question is …
3
votes
7answers
528 views

What are the most important technical skills for a computer software expert witness?

As a computer software expert witness, I am required to analyze a huge range of different software technologies. During my deposition or trial testimony, the opposing expert may direct questions …
2
votes
2answers
210 views

Counting Sublist Elements in Prolog

How can I count nested list elements in prolog? I have the following predicates defined, which will count a nested list as one element: length([ ], 0). length([H|T],N) :- length(T,M), N is M+1. …
2
votes
4answers
236 views

Phantom Referenced Objects

Phantom References serve for post-mortem operations. The Java specification states that a phantom referenced object will not be deallocated until the phantom-reference itself is cleaned. My question …
1
vote
8answers
198 views

How to become a security domain expert?

I have been doing programming for more than 10 years using various programming languages on multiple platforms/technologies/protocols. I am thinking to switch my career and become a security domain …
1
vote
4answers
2k views

static vs extern “C”

(expert C/C++ question) What is the difference between a static member function and an extern "C" linkage function ? For instance, when using "makecontext" in C++, I need to pass a pointer to …
1
vote
3answers
149 views

How do I find trustworthy database help out on the interweb?

I am trying to help a small business that has an application that could benefit from occasional (or temporary) database expertise. The problem is, this company has all their IP in this database, so …
0
votes
6answers
101 views

What kind of SEO Technique need to apply for my website…

I have a website called http://www.demandb.com and it's a classified sites... Can any one tell me the different SEO Techniques for my site to get huge amount of visitors....I dint yet started SEO for …
0
votes
1answer
420 views

Oracle SQL Expert Certification 1Z0-047

Hi, I want to pass the Oracle SQL Expert Certification (1Z0-047). I want to know which books should I buy to prepare myself for this exam. If somebody did it...how was it?
0
votes
2answers
340 views

Delphi OTA and RTTI bug

I'm writing a Delphi expert. I need to be able to write a value to a property on a property which is an object. E.g. I have a GroupBox on the form and I want to edit the Margins.Left property. I'm …