Showing posts with label code. Show all posts
Showing posts with label code. Show all posts

Monday, October 11, 2010

Visual Studio 2010 Color Schemes

Today I wanted to change my VS2010 Color Scheme and I can happily announce that I found really nice web site, where you can choose from nice existing schemes but also you can create your own on the fly with real time preview ;)
You can visit this site and dig in ;)

Tuesday, April 6, 2010

Draw your website's code.

This is interesting tool I found today. 
Drawter is a tool written in JavaScript and based on jQuery library. It provides you the possibility to literally draw your website's code. It runs on every single web-browser which makes it really useful and helpful. Each tag is presented as a layer you have drawn.

Tuesday, December 16, 2008

More Google Code!!

Few days ago google announced this:
We're increasing the maximum file sizes from 20MB to 40MB, Subversion quotas from 100MB to 1GB, and download quotas from 100MB to 2GB.
So have a nice coding folks! :) O.S.4eva. 

Wednesday, December 10, 2008

Unit Testing 2

Is your code full of if statements? Switch statements? Do you have the same switch statement in various places? When you make changes do you find yourself making the same change to the same if/switch in several places? Did you ever forget one?



This is very nice. The guy really knows how to explain things in easy to understand way! Thanks Misko!

Friday, December 5, 2008

Unit Testing.

This is great video from Google about Unit Testing:



I really want to start doing UT in my code.

Yes, it's time consuming(it seems like this at first :) ).
Yes, the amough of code is approximatelly the same as your original code.
But hey, then you have unit tests you can easily know that all your classes and etc works correctly, you can easily catch bugs, you can easily reproduce the bugs latter.
And in the end it really helps to save time after you finish your product, because it's tested already in some cases, and if some bug happens you can easily write a test for it and see what will happen, Then you exactly will know what went wrong.

Monday, November 10, 2008

"gold" in code

Recently I was in the middle of bug searching in some of my sources. And accidentally started to laugh, LAUD :)
And you know why ? because of a genius naming of my methods....

here is some examples:

So the conclusion of this post, is that sometimes is nice to see smth like this, cuz it's fun, and in other hand, it's very nasty thing then you need to find a bug in such a methods :D imagine if all method naming is smth like that...  =)