Posts

Showing posts with the label Productivity

Code Design - Choosing Abstract or Interface - Level 100

More often we wont get a chance to work on these aspects in early stage of your career. Even at the time of mid career getting a work related to API designing/Development is bit difficult. Unless you have a very good mentor in your initial career you will never get to know the real time. And you will end up in theoretical knowledge if you are computers academics. Others need to witness nightmares :-) Always try to implement good design in your day to day work. Never try to concentrate on these concepts for the matter of career growth. Only the passion to write a good code lets you to remember things. Design patterns are not meant for only senior programmers. You need to have a little bit knowledge on nitty-gritty of OOP/OOD concepts. And I need to say that continuous practice only lets you to excel further in OOP/OOD concepts irrespective of your experience levels. Here are some basic recommendations to help you to decide whether to use an interface or an abstract class to provid...

A quick Utilities, Tips & Tricks for web dev only

​Hi,​ While doing some validatioons you want to validate character count. Then here is the link http://www.javascriptkit.com/script/script2/charcount.shtml Do you want to validate the CSS you wrote? Then here is the link http://jigsaw.w3.org/css-validator/#validate_by_input You want to decode or encode a character. Then here is the link http://www.base64decode.org/ Do you want to add days, months or years to a DATE? Then here is the link http://www.timeanddate.com/date/dateadd.html ​Tired of writing SQl and Do you love to work on LINQ but don't have a proper IDE? Then here is the link http://www.linqpad.net/ Do you want to format the CSS you wrote in your own standards? Then here is the llink http://www.lonniebest.com/FormatCSS/ ​Do you want to format XML, JSON, HTML, HTML5, RegEx or SQl or else any? Here is the link http://www.freeformatter.com/html-formatter.html​ Do you want to quickly write html, javascript and css and see how it behaves in browser? Then ...