Cocoa Development
Patterns and Guidelines
Podcasts
Interoperability
Blogs
Apple Development Links Collection
Philips C# coding standard
Document:
http://www.tiobe.com/standards/gemrcsharpcs.pdf
Code Checker ClockSharp
http://www.tiobe.com/index.htm?clocksharp
ClockSharp is a configurable code checker for the C# programming language (editions 1.1 to 2.0). It is possible to let ClockSharp check your C# code according to the widely used Philips C# coding standard or configure it to your own needs. ClockSharp checks more than 50 programming rules. It can be executed as a command-line tool, but it is also integrated into Visual Studio.NET (2003, 2005: versions 7.0, 7.1 and 8.0).
Usefull links for C/C++/C#/Java coding standards
Coding Standard Methodology
Popularity of Programming Languages
(Source: http://www.tiobe.com/tpci.htm )
Cocoa Programming
- http://www.cocoadev.com/
- http://www.cocoadevcentral.com/
- http://cocoaradio.com/
- http://www.cocoalab.com/
Mixing Objective-C and C++ code
http://developer.apple.com/releasenotes/Cocoa/Objective-C++.html
POSIX Threads (pthreads) for Win32
The POSIX 1003.1-2001 standard defines an application programming interface (API) for writing multithreaded applications. This interface is known more commonly as pthreads. A good number of modern operating systems include a threading library of some kind: Solaris (UI) threads, Win32 threads, DCE threads, DECthreads, or any of the draft revisions of the pthreads standard. The trend is that most of these systems are slowly adopting the pthreads standard API, with application developers following suit to reduce porting woes.
Win32 does not, and is unlikely to ever, support pthreads natively. This project seeks to provide a freely available and high-quality solution to this problem.
Various individuals have been working on independent implementations of this well-documented and standardised threading API, but most of them never see the light of day. The tendency is for people to only implement what they personally need, and that usually does not help others. This project attempts to consolidate these implementations into one implementation of pthreads for Win32…