Your Ad Here

C# Tips and Tricks

Date: 20 Oct 2009 Comments: 1

1. Convert a string to a Byte[] array: byte[] string2byteArr = System.Text.UnicodeEncoding.GetBytes(“Some String”); 2. Lazy load something rather than Foo foo; public Foo Foo { get { if (foo == null) { foo = new Foo(); } return foo; } } you can try: Foo foo; public Foo Foo { get { return foo ?? [...]

Tags:

ASP.NET Script Collection WebSites

Date: 12 Oct 2009 Comments:0

Are you searching for asp.net script, applications or controls? Do you want to compare similar scripts? Here is a list of site where you can find info about asp.net scripts 411asp.net Directory of ASP.NET applications, scripts, tutorials, assemblies, and references arranged by reviews, price, version, and hits. Currently you can find info about 563 Web [...]

Cool WebSites October 2009

Date: 4 Oct 2009 Comments:0

1.Le Mйridien Etoile URL: http://www.lemeridienetoile.com/experience/ 2. 310k of pure magik URL: http://www.310k.nl 3. ZOOGAMI: CONTEMPORARY BEER URL: http://www.zoogami.net/beer/ 4.ARK PORCELANOSA GRUPO 2009 URL: http://www.ark-plus.com 5. Miguel Endara URL: http://www.miguelendara.com/ 6. Emilie Guelpa, Art director Freelance URL: http://www.onthesly.fr 7. FOXTEL I am uniQue – build a uniQue interactive URL: http://www.iamunique.com.au 8. Concave Scream URL: http://www.concavescream.com/

Tags: , ,

Common PHP Programming Mistakes

Date: 30 Sep 2009 Comments: 16 so far

1.Using double quotes when you want to output a basic string echo ‘it\’s ok’; echo “it’s not”; When you surround a PHP string in double quotes, it is parsed by the PHP interpreter for variables & special characters, such as “\n”. If you want to output a basic string, use single quotes! it’s a performance [...]

Tags:

Cool Websites September 2009

Date: 27 Sep 2009 Comments:0

1. Ramcat – Trendy accomodation in Barcelona URL: http://www.ramcat.es/ 2. Harmonic 313 – when machines exceed human intelligence out now URL: http://www.harmonic313.com/wordproblems/ 3. alice + olivia URL: http://www.aliceandolivia.com 4. Dolphins Communication Design URL: http://www.dolphinsonline.gr/ 5. ECTOMACHINE URL: http://www.ectomachine.com/ 6. Design is Kinky Studio URL: http://www.dikstudio.net/ 7. Pixelcase URL: http://pixelcase.com.au/ 8. Mellow and Yellow L.L.C URL: [...]

Tags: ,

Hard Drive Weight Increasing

Date: 31 Aug 2009 Comments:0

> I found that screenshot in a developer’s forum today. It just made my day:

Tags:

Back to the beginning of the computer age in photos

Date: 29 Aug 2009 Comments:0

Top C# Programming Mistakes

Date: 27 Aug 2009 Comments: 11 so far

1.Using String variables: if (someString.Length > 0) { // … } … but someString could be a null: if  (!String.IsNullOrEmpty(someString)) { // much better now !? } 2.String concatenation string s = “dev”; s += “-”; s += “the”; s += “-”; s += “web”; s += “.”; s += “com”; This is not very [...]

Tags:

Cool Websites – August 2009

Date: 25 Aug 2009 Comments:0

Here’s a list of 12 cool websites for design inspiration 1. Wim Vanhenden’ portfolio website URL: http://www.wimvanhenden.be/ 2. eLaboration Web Design URL: http://www.elabdesign.com 3. 26000 Vodka URL: http://26000vodka.com 4. Soft Whiteroom URL: http://www.soft.se 5. 53 Colors URL: http://53colors.com/ 6. Hugs For Monsters URL: http://hugsformonsters.com/ 7. The Toke URL: http://thetoke.com 8. Sua Felicidade Transforma URL: http://coketeens.com.br [...]

Tags: ,

8 Advantages of ASP.NET over PHP

Date: 25 Aug 2009 Comments: 3 so far

1. The code-behind allows you easier to maintain the code when it comes to large websites. 2. You have the freedom of choosing from multiple languages (C#, VB.NET, C++, etc.) 3. SQL Server is also very fast, secure, and it can store extremely large amounts of data; actually, there’s no limit; 4. With ASP.NET you [...]

Tags: ,