Sunday, January 6, 2013

[Magazine] The Pragmatic Bookshelf - By Programmers For Programmers - Free Download

  

The Pragmatic Bookshelf

By programmers for programmers

I will update this post everytime a new issue is out


2013
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2013 01

2012
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2012 10
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2012 09
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2012 08
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2012 07
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2012 06
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2012 05
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2012 04
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2012 03
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2012 02
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2012 01




2011
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2011 12
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2011 11
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2011 10
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2011 09
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2011 08
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2011 07
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2011 06
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2011 05
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2011 04
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2011 03
[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2011 02

[Magazine] The Pragmatic Bookshelf - By programmers for programmers - 2011 01

  
  

Friday, January 4, 2013

[Magazine] DotNet Curry - Free Download

DotNet Curry

I will update this post everytime a new issue is out

 




 

[Magazine] MSDN - Free Download

MSDN

I will update this post everytime a new issue is out


2012

2011

2010

Friday, September 23, 2011

Remember the old days: The bitwise operations

Take a look at this great article, written by Alessandro Zifiglio, remembering programming basics and something most of the developers forget and unfortunately use too little. In the good old days the bitwise operators were part of our programmer everyday life. Nowadays they are used only by the good developers which still think in optimizations and performance issues.

Bitwise operators in c# OR(|), XOR(^), AND(&), NOT(~)
  
  
  
  

Tuesday, August 17, 2010

Using PowerCfg to Evaluate System Energy Efficiency

Use PowerCfg to Evaluate Energy Efficiency of your laptop. Just type the following command powercfg –ENERGY via command prompt To have more knowledge about this command, just follow the above link. http://www.microsoft.com/whdc/system/pnppwr/powermgmt/powercfg.mspx

Friday, June 4, 2010

Convert string[] to ArrayList And ArrayList to string[]

This is how you can convert a string[] into an ArrayList in c#
  
  
// string[] -> ArrayList
string[] msg = this.message.Split('\n');

ArrayList arrayList = new ArrayList();
arrayList.AddRange(msg);
  
// ArrayList -> string[]
string[] arrayStrings = arrayList.ToArray(typeof(string)) as string[];

Thursday, May 27, 2010

Password Property in a PropertyGrid

If you have a property in a class to keep track of a password, and you want that class to be editable in a PropertyGrid, but you don't want the password to be human readable, then you just need to add the attribute PasswordPropertyTextAttribute to your property and set the in argument to true, like the example below. This way the users will see circles instead of the pressed keys.
  
[PasswordPropertyTextAttribute(true)]
public string Password { get; set; }