<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-152852671040634562</atom:id><lastBuildDate>Sun, 10 May 2009 19:43:29 +0000</lastBuildDate><title>Creative Solutions</title><description>Software Developers Community Blog.
Its all about:
C#,Java,.NET,J2EE,SOA,ADF,EJB, and more...</description><link>http://csdevelopers.blogspot.com/</link><managingEditor>nabilmg@gmail.com (Nabil)</managingEditor><generator>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/CreativeSolutions" type="application/rss+xml" /><item><guid isPermaLink="false">tag:blogger.com,1999:blog-152852671040634562.post-7139013786260801633</guid><pubDate>Sat, 09 May 2009 18:56:00 +0000</pubDate><atom:updated>2009-05-09T12:11:45.782-07:00</atom:updated><title>Just 4 Fun : Software development LifeCycle</title><description>&lt;img src="http://i60.photobucket.com/albums/h6/fadliwdt/1219864763.jpg" border="0"&gt;&lt;img src="http://i60.photobucket.com/albums/h6/fadliwdt/1219864764.jpg" border="0"&gt;&lt;img src="http://i60.photobucket.com/albums/h6/fadliwdt/1219864768.jpg" border="0"&gt;&lt;img src="http://i60.photobucket.com/albums/h6/fadliwdt/1219864769.jpg" border="0"&gt;&lt;img src="http://i60.photobucket.com/albums/h6/fadliwdt/1219864771.jpg" border="0"&gt;&lt;img src="http://i60.photobucket.com/albums/h6/fadliwdt/1219864773.jpg" border="0"&gt;&lt;img src="http://i60.photobucket.com/albums/h6/fadliwdt/1219864775.jpg" border="0"&gt;&lt;img src="http://i60.photobucket.com/albums/h6/fadliwdt/1219864777.jpg" border="0"&gt;&lt;img src="http://i60.photobucket.com/albums/h6/fadliwdt/1219864779.jpg" border="0"&gt;&lt;img src="http://i60.photobucket.com/albums/h6/fadliwdt/1219864781.jpg" border="0"&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='http://res1.blogblog.com/tracker/152852671040634562-7139013786260801633?l=csdevelopers.blogspot.com'/&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/RwMRtWPe0p_AJBoK9cxRDSfP_hE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RwMRtWPe0p_AJBoK9cxRDSfP_hE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/RwMRtWPe0p_AJBoK9cxRDSfP_hE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RwMRtWPe0p_AJBoK9cxRDSfP_hE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/CreativeSolutions/~4/eFmyF_LNOus" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/CreativeSolutions/~3/eFmyF_LNOus/just-4-fun-software-development.html</link><author>nabilmg@gmail.com (Nabil)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://csdevelopers.blogspot.com/2009/05/just-4-fun-software-development.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-152852671040634562.post-5585196000282785753</guid><pubDate>Thu, 07 May 2009 17:23:00 +0000</pubDate><atom:updated>2009-05-07T10:38:42.086-07:00</atom:updated><title>The C# Programming Language Version 4.0</title><description>The major theme for C# 4.0 is dynamic programming. Increasingly, objects are “dynamic” in the sense that their structure and behavior is not captured by a static type, or at least not one that the compiler knows about when compiling your program. &lt;span style="font-style:italic;"&gt;&lt;br /&gt;The new features in C# 4.0 fall into four groups:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Dynamic lookup&lt;/span&gt;&lt;br /&gt;Dynamic lookup allows you to write method, operator and indexer calls, property and field accesses, and even object invocations which bypass the C# static type checking and instead gets resolved at runtime. &lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Named and optional parameters&lt;/span&gt;&lt;br /&gt;Parameters in C# can now be specified as optional by providing a default value for them in a member declaration. When the member is invoked, optional arguments can be omitted. Furthermore, any argument can be passed by parameter name instead of position.&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;COM specific interop features&lt;/span&gt;&lt;br /&gt;Dynamic lookup as well as named and optional parameters both help making programming against COM less painful than today. On top of that, however, we are adding a number of other small features that further improve the interop experience.&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Variance&lt;/span&gt;&lt;br /&gt;It used to be that an IEnumerable&lt;string&gt; wasn’t an IEnumerable&lt;objectt&gt;. Now it is – C# embraces type safe “co-and contravariance” and common BCL types are updated to take advantage of that.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;Resources&lt;/span&gt;&lt;br /&gt;All available resources concerning C# 4.0 can be accessed through the C# Dev Center at &lt;a href="http://www.csharp.net"&gt;www.csharp.net&lt;/a&gt;. Specifically, this white paper and other resources can be found at the Code Gallery site &lt;a href="http://code.msdn.com/csharpfuture"&gt;code.msdn.com/csharpfuture.&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='http://res1.blogblog.com/tracker/152852671040634562-5585196000282785753?l=csdevelopers.blogspot.com'/&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5M59bBV81AEKeAH7in0WHduoELQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5M59bBV81AEKeAH7in0WHduoELQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/5M59bBV81AEKeAH7in0WHduoELQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5M59bBV81AEKeAH7in0WHduoELQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/CreativeSolutions/~4/wSGz9SGYxbU" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/CreativeSolutions/~3/wSGz9SGYxbU/c-programming-language-version-40.html</link><author>nabilmg@gmail.com (Nabil)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://csdevelopers.blogspot.com/2009/05/c-programming-language-version-40.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-152852671040634562.post-7020623492161827335</guid><pubDate>Wed, 03 Sep 2008 14:20:00 +0000</pubDate><atom:updated>2009-01-11T10:55:20.617-08:00</atom:updated><title>Google Chrome</title><description>Google has lunched the beta version of the new open source browser Google Chrome.&lt;br /&gt;Google Chrome is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" href="http://www.google.com/chrome"&gt;Download Google Chrome&lt;/a&gt;&lt;br /&gt;&lt;a target="_blank" href="http://www.google.com/googlebooks/chrome/"&gt;Read More about Google Chrome&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='http://res1.blogblog.com/tracker/152852671040634562-7020623492161827335?l=csdevelopers.blogspot.com'/&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/g30S3qTPV6YjQPfT9UtaUOTPvBw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/g30S3qTPV6YjQPfT9UtaUOTPvBw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/g30S3qTPV6YjQPfT9UtaUOTPvBw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/g30S3qTPV6YjQPfT9UtaUOTPvBw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/CreativeSolutions/~4/-9xoqg2b00Q" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/CreativeSolutions/~3/-9xoqg2b00Q/google-chrome.html</link><author>nabilmg@gmail.com (Nabil)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://csdevelopers.blogspot.com/2008/09/google-chrome.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-152852671040634562.post-847896805250979321</guid><pubDate>Wed, 13 Feb 2008 08:43:00 +0000</pubDate><atom:updated>2008-02-13T00:45:09.505-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Silverlight</category><category domain="http://www.blogger.com/atom/ns#">Microsoft</category><title>Microsoft Silverlight</title><description>Microsoft® Silverlight™ is a cross-browser, cross-platform plug-in for delivering     the next generation of .NET based media experiences and rich interactive applications     for the Web. Silverlight offers a flexible programming model that supports AJAX,     VB, C#, Python, and Ruby, and integrates with existing Web applications. Silverlight     supports fast, cost-effective delivery of high-quality video to all major browsers     running on the Mac OS or Windows.&lt;br /&gt;&lt;br /&gt;Check &lt;a href="http://www.silverlight.net"&gt;http://www.silverlight.net&lt;/a&gt; for more information&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='http://res1.blogblog.com/tracker/152852671040634562-847896805250979321?l=csdevelopers.blogspot.com'/&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/tWQJBznrR1n9bnDsdXFBrAn7IDs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tWQJBznrR1n9bnDsdXFBrAn7IDs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/tWQJBznrR1n9bnDsdXFBrAn7IDs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tWQJBznrR1n9bnDsdXFBrAn7IDs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/CreativeSolutions/~4/CgYotKg8ElY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/CreativeSolutions/~3/CgYotKg8ElY/microsoft-silverlight.html</link><author>nabilmg@gmail.com (Nabil)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://csdevelopers.blogspot.com/2008/02/microsoft-silverlight.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-152852671040634562.post-2139696083367951568</guid><pubDate>Wed, 20 Jun 2007 16:39:00 +0000</pubDate><atom:updated>2007-06-20T09:59:13.895-07:00</atom:updated><title>Microsoft LINQ Project. A dream come true :)</title><description>&lt;div&gt;The folks at Microsoft aren’t oblivious to the problems of today’s data access story. And so, now that C# 2.0 is almost about to be released, they’ve given us a look at C# 3.0 in the form of the &lt;a href="http://msdn.microsoft.com/netframework/future/linq/" target="_blank"&gt;LINQ project&lt;/a&gt;. LINQ stands for Language Integrated Query framework. The LINQ project’s stated goal is to add "general purpose query facilities to the .NET Framework that apply to all sources of information, not just relational or XML data". The beauty of the LINQ project is twofold.&lt;br /&gt;First, LINQ is integrated directly into your favorite language. Because the underlying API is just a set of .NET classes that operate like any other .NET class, language designers can integrate the functionality these classes expose directly into the language. Second, and perhaps most importantly, the query functionality in LINQ extends to more than just SQL or XML data. Any class that implements IEnumerable&lt;t&gt; can be queried using Linq. That should elicit a feeling of absolute joy in you. Or maybe I’m just weird.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='http://res1.blogblog.com/tracker/152852671040634562-2139696083367951568?l=csdevelopers.blogspot.com'/&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/HafDJgGdfnugcwVXUaj1hdZEuow/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/HafDJgGdfnugcwVXUaj1hdZEuow/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/HafDJgGdfnugcwVXUaj1hdZEuow/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/HafDJgGdfnugcwVXUaj1hdZEuow/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/CreativeSolutions/~4/nFegqTgqIZY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/CreativeSolutions/~3/nFegqTgqIZY/microsoft-linq-project-dream-come-true.html</link><author>nabilmg@gmail.com (Nabil)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://csdevelopers.blogspot.com/2007/06/microsoft-linq-project-dream-come-true.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-152852671040634562.post-4763000087647714458</guid><pubDate>Tue, 29 May 2007 09:06:00 +0000</pubDate><atom:updated>2007-05-29T02:11:35.551-07:00</atom:updated><title>Awesome! The All New: JDeveloper 11g</title><description>&lt;strong&gt;Oracle JDeveloper 11g&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;This major release introduces the new ADF Faces rich client JSF/Ajax components, the powerful ADF Controller extension to JSF, enhanced ADF Business Components functionality, a Javascript debugger, SQL Developer integration and many other features that simplify Java EE 5.0 development with EJB 3.0/JPA, JSF 1.2, and JAX-WS Web services.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.oracle.com/technology/products/jdev/index.html"&gt;Visit The Oracle JDeveloper Home Page&lt;/a&gt; For tutorials,guides, demos and &lt;strong&gt;download&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='http://res1.blogblog.com/tracker/152852671040634562-4763000087647714458?l=csdevelopers.blogspot.com'/&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/D8j60zCVlD1YgfViSXRhOJ9npTM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/D8j60zCVlD1YgfViSXRhOJ9npTM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/D8j60zCVlD1YgfViSXRhOJ9npTM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/D8j60zCVlD1YgfViSXRhOJ9npTM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/CreativeSolutions/~4/EiV1I56jk8o" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/CreativeSolutions/~3/EiV1I56jk8o/awesome-all-new-jdeveloper-11g.html</link><author>nabilmg@gmail.com (Nabil)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://csdevelopers.blogspot.com/2007/05/awesome-all-new-jdeveloper-11g.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-152852671040634562.post-7214846300125326277</guid><pubDate>Sun, 22 Apr 2007 16:52:00 +0000</pubDate><atom:updated>2007-04-22T10:37:01.315-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Creative Solutions</category><title>About Creative Solutions</title><description>Creative Solutions start as group of friends in Sana'a university in computer science college.&lt;br /&gt;all group members has same interest and same fervor , they find that   college curriculum is not enough for there  ambition ,  so the decide to build them self by them self , and they start to learn some technology's .&lt;br /&gt;they work together in  graduation project (eMal ) and in this project they find them self , by working hard and   thirst for learning they learn new big technology (j2ee) like EJB, ADF , JSF , and use one of the most professionally development method (RUP )&lt;br /&gt;they end them project successfully , and proved that group work and using power of  knowledge is the way to future success.&lt;br /&gt;&lt;br /&gt;and this is not end of the story .....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='http://res1.blogblog.com/tracker/152852671040634562-7214846300125326277?l=csdevelopers.blogspot.com'/&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/-AB_3p0nam20ihJoVXxxcoGN09s/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-AB_3p0nam20ihJoVXxxcoGN09s/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/-AB_3p0nam20ihJoVXxxcoGN09s/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-AB_3p0nam20ihJoVXxxcoGN09s/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/CreativeSolutions/~4/giiHEhdLtSo" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/CreativeSolutions/~3/giiHEhdLtSo/about-creative-solutions.html</link><author>noreply@blogger.com (Ibrahim Al-Dilamy)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://csdevelopers.blogspot.com/2007/04/about-creative-solutions.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-152852671040634562.post-8365883402206683066</guid><pubDate>Sun, 22 Apr 2007 08:38:00 +0000</pubDate><atom:updated>2007-04-22T01:45:44.238-07:00</atom:updated><title>Just start</title><description>Here we are ... Just starting our blog &lt;strong&gt;Creative Solutions&lt;/strong&gt;.&lt;br /&gt;I hope all my friends and partners who are in the Software Development field to participate in this blog.&lt;br /&gt;we well talk about new technologies, ideas, &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_0"&gt;experiences&lt;/span&gt;, new tools and languages,...etc&lt;br /&gt;Please support us.&lt;br /&gt;&lt;br /&gt;and have a nice day &lt;span style="color:#3366ff;"&gt;doing code;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3366ff;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3366ff;"&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;Nabil&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='http://res1.blogblog.com/tracker/152852671040634562-8365883402206683066?l=csdevelopers.blogspot.com'/&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5ATzvwlSYEUg090oupCIliW6Gnw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5ATzvwlSYEUg090oupCIliW6Gnw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/5ATzvwlSYEUg090oupCIliW6Gnw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5ATzvwlSYEUg090oupCIliW6Gnw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/CreativeSolutions/~4/eqnBbN15IpA" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/CreativeSolutions/~3/eqnBbN15IpA/just-start.html</link><author>nabilmg@gmail.com (Nabil)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://csdevelopers.blogspot.com/2007/04/just-start.html</feedburner:origLink></item></channel></rss>
