Tagged Questions
The code-example tag has no wiki summary.
14
votes
1answer
46k views
iPhone Dev - Create UIButton Manually
I'm learning how to develop on the iPhone, I bought a book called Beginning iPhone 3 development Exploring the SDK. After I bit I decided to ditch Interface Builder. I still design all my views in IB, ...
8
votes
4answers
18k views
C# Syntax - Example of a Lambda Expression - ForEach() over Generic List
First, I know there are methods off of the generic List<> class already in the framework do iterate over the List<>.
But as an example, what is the correct syntax to write a ForEach ...
2
votes
1answer
73 views
How to insert multi-line comment in Doxygen code examples
I am trying to include a code example in a Doxygen comment that contains a multi-line comment. The preprocessor interprets the */ as the end of my Doxygen comment and therefore the syntax of the file ...
2
votes
2answers
56 views
Example of application covered with tests
is there sample/open_source application for download that is covered with tests(integration, unit, ...) and could be example how testing should be done? We want to learn our junior programmers how ...
1
vote
2answers
223 views
Creating NSApplication in cocoa?
I've been searching for quite a while now but simply can't find anything, I already have window which I can create, but now when I tried to call makeKeyAndOrderFront for it, there was no application ...
1
vote
1answer
252 views
FiddlerCore in VB.net?
Does anybody know how to use FiddlerCore in vb.net? I've worked with some C# to vb.net tools but they can never convert it to something that works. Code examples (or even full projects) or site ...
1
vote
4answers
2k views
Shell sort Java example
Can anyone give me example about shell sort? I'm a new person in here who must learn about shell sort, but first I must find a Java shell sort example. I found one example in Google but it's too ...
0
votes
1answer
55 views
where can i download simple code acl project in cakephp
i am beginner in cakephp and i need to correct and sample code for acl in cake.
i follow this tutorial :
http://book.cakephp.org/view/1543/Simple-Acl-controlled-Application
but i can't use well.
...
0
votes
1answer
315 views
Doxygen copydoc tag to reuse code examples
I want to reuse a block of example code using the \copydoc tag.
To explain the problem. Let's say I have two documented functions:
/** Aquires resource. */
Resource* AquireResource( int id );
/** ...
0
votes
2answers
247 views
Job Application Code Examples [closed]
What exactly are employers looking for in a code example?
A random sample does not seem like a very good indicator of someones ability. Or does it?
0
votes
1answer
306 views
Help me understand the MSDN _beginthreadex function example
There's this function on _beginthreadex MSDN page:
unsigned __stdcall SecondThreadFunc( void* pArguments )
{
printf( "In second thread...\n" );
while ( Counter < 1000000 )
Counter++;
...
0
votes
4answers
168 views
What are pro's and con's of real code versus specially-crafted code examples in programming documentation?
What reasons could ease the choice between clear and concise artificial code example versus real-world working code which might be accompanied by all gory details for an author of programming book or ...