Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Architecture Council/Links Collection"

(Outside of the Eclipse Ecosystem)
 
(6 intermediate revisions by the same user not shown)
Line 20: Line 20:
 
* [http://michaelscharf.blogspot.com/2006/09/dont-swallow-interruptedexception-call.html Don't swallow InterruptedException. Call Thread.currentThread().interrupt() instead.] (Blog by Michael Scharf)
 
* [http://michaelscharf.blogspot.com/2006/09/dont-swallow-interruptedexception-call.html Don't swallow InterruptedException. Call Thread.currentThread().interrupt() instead.] (Blog by Michael Scharf)
  
== Tips & Tricks ==
+
== Design Guidelines ==
 +
* [http://en.wikipedia.org/wiki/Law_of_Demeter Law of Demeter] (Principle of Least Knowledge)
 +
* [http://www.objectmentor.com/resources/articles/srp.pdf Single Responsibility Principle (SRP)]
 +
 
 +
== Eclipse Tips & Tricks ==
 
* [[Ninja]] - Eclipse Debugging Tips
 
* [[Ninja]] - Eclipse Debugging Tips
 
* [http://michaelscharf.blogspot.com/2006/10/tip-debug-and-patch-at-runtime.html Debug and patch a runtime Eclipse] (Blog by Michael Scharf)
 
* [http://michaelscharf.blogspot.com/2006/10/tip-debug-and-patch-at-runtime.html Debug and patch a runtime Eclipse] (Blog by Michael Scharf)
  
 
== Eclipse Foundation ==
 
== Eclipse Foundation ==
* [[API Central]]
+
* [[Eclipse/API Central]]
 
* [[Development Resources]]
 
* [[Development Resources]]
 
* [http://www.eclipse.org/org/foundation/minutes.php Board and Members Meeting Minutes]
 
* [http://www.eclipse.org/org/foundation/minutes.php Board and Members Meeting Minutes]
Line 31: Line 35:
 
== Outside of the Eclipse Ecosystem ==
 
== Outside of the Eclipse Ecosystem ==
 
* Microsoft's [http://blogs.msdn.com/jmeier/archive/2008/09/02/patterns-practices-app-arch-guide-2-0-project.aspx patterns & practices Application Architecture Guide 2.0 Project] for .NET
 
* Microsoft's [http://blogs.msdn.com/jmeier/archive/2008/09/02/patterns-practices-app-arch-guide-2-0-project.aspx patterns & practices Application Architecture Guide 2.0 Project] for .NET
 +
* [http://stackoverflow.com/ Stackoverflow.com] - Questions and Answers for everything related to programming
 +
* [http://www.codesimplicity.com/post/open-source-community-simplified/ Open Source Community, Simplified] - Article by Bugzilla's Max Kanat-Alexander on open source community building.
 +
 +
[[Category:Architecture Council|Links Collection]]

Latest revision as of 15:00, 10 March 2011

A collection of interesting links to articles, blogs and other resources related to software architecture. Please add your name when you add an item, for discussions.

Patterns

Concurrency

Eclipse Concurrency

Java Idioms

Design Guidelines

Eclipse Tips & Tricks

Eclipse Foundation

Outside of the Eclipse Ecosystem

Back to the top