Saturday, December 20, 2008
Visual Studio Team System 2008 Team Foundation Server Power Tools
Click here to find it
Wednesday, April 16, 2008
Cosmos what`s next ?
i`ll let you see the project page and read documentation , please follow this link
http://www.codeplex.com/Cosmos
Recently , i know that this project showed in Microsoft EDC (Egyptian Developer Conference) but i did not have the chance to attend to the conference , you can wait until the videos of the conference be available and i`ll paste a link here for this session
this is another resources and examples :
http://gocosmos.org/
http://www.gocosmos.org/Docs/UserKit/index.en.aspx
http://lab.obsethryl.eu/content/cosmos-one-opensource-csharp-c-based-kernels
Saturday, March 29, 2008
Microsoft EDC Website
Cairo International Conference Center
April 13th - 14th
EDC 2008 is the biggest Developers Conference of the year in Egypt, and is a critical event for any developer who wants to see the newest as well as the next-generation technology. EDC is full of sessions and activities that help you to learn the current and the future of the Microsoft Platform and get to know people who are as passionate about software as you are.
You will found Microsoft EDC 2008 web site here
You will found Microsoft EDC 2008 Agenda here
Wednesday, March 19, 2008
Change MDI Container Background Color
MdiClient ctlMDI;
// Loop through all of the form's controls looking
// for the control of type MdiClient.
foreach (Control ctl in this.Controls)
{
try
{
// Attempt to cast the control to type MdiClient.
ctlMDI = (MdiClient)ctl;
// Set the BackColor of the MdiClient control.
ctlMDI.BackColor = this.BackColor;
}
catch (InvalidCastException)
{
// Catch and ignore the error if casting failed.
}
}
Sunday, March 9, 2008
Collection of WCF Sessions
http://www.youtube.com/view_play_list?p=2471E942C68A6925
Source profile here
Saturday, March 8, 2008
Creating a simple user interface with MonoDevelop
Friday, March 7, 2008
Pentagon bans Google map-makers
See details
Thursday, March 6, 2008
Software development process
Read source article at wiki
10 mistakes to avoid in software development
Forrester Research published a report listing 10 mistakes that send software development projects off track.
Noting that projects can get in serious trouble or fail even when effective project management is in place, Forrester analysts said projects are doomed by mistakes made at inception, not during execution.
"These types of mistakes create unfavorable conditions that even impeccable project management practices cannot overcome," the report states in its summary.
The 10 mistakes that put projects at risk of failure include:
* Never committing to project success.
* Freezing the schedule and budget before a project is sufficiently understoo
* Overscoping a solution.
* Circumventing the application development organization altogether.
* Underestimating the complexity of a problem.
* Being stingy with subject-matter experts, in which their participation is not sufficient.
* Choosing the wrong project leadership.
* Distrusting managers who have had tasks delegated to them.
* Jumping into development without enough research.
* Suppressing bad news, in which dialogue is insufficient.
Forrester recommends that a project be viewed in how it could unfold rather than how it should unfold. Application development personnel can enlarge dialogue with the business to include not only what to do but what to avoid. The 10 mistakes should be treated as risks to be managed. There should be a partnership with the business to assess time and cost penalties a project would incur if any of these mistakes were made.
"The costliest risks are the ones to work hardest at avoiding," Forrester said.
copied from here
Sunday, March 2, 2008
C# and .Net on Linux
another article talking about Compile and run C# command line and GUI applications on Linux by Shekhar Govindarajan