my6solutions

asp .net, the social web & other distractions

 

Running Apps

Disclaimer

I am in no way affiliated with Microsoft or Google. I am just another developer trying to make a difference. All opinions and observations are usually my own.

User Interface Prototyping

I'm currently in the process of designing a web application. While writing up the specification, I kept wondering how I was going to design the user interface without resorting to the use of a pencil and eraser. Seriously, what kind of software developer uses a pencil and eraser these days. It's probably been about 10 years since I've last laid eyes on an eraser. It was then that I came across tw... [More]

Permalink | Comments (2) | Post RSSRSS comment feed

Code Complete : A Practical Handbook of Software Construction (2nd edition)

Sadly to say, I have only now come across this wonderful book, Code Complete: A Practical Handbook of Software Construction. But as they say, better now than never. The above book is highly recommended to those who are interested in improving the way that they write code and to reduce the headaches associated with code maintenance. The key points mentioned by this book are Software construct... [More]

Tags:
Categories: Miscellaneous
Permalink | Comments (0) | Post RSSRSS comment feed

Mimicking Java enumerations in C#

In java, enumerations are actually classes. Thus, the java enumeration will allow methods, fields and interfaces. In C#, an enum is an enum. Nothing more, nothing less. However, we can achieve similar functionality to the Java enumerations via extension methods. For example, the following is a java enumeration.     1 public static enum Field {     2 ... [More]

Categories: ASP .NET
Permalink | Comments (1) | Post RSSRSS comment feed

Improving User Interfaces

The following are some links to articles that talks about improving user interface designs in web pages 10 Useful Techniques To Improve Your User Interface Designs 10 Useful Web Application Interface Techniques 45+ New jQuery Techniques For Good User ExperienceBest practices for javascript coding with jQuery  jQuery and Javascript Coding: Examples and Best Practices 

Permalink | Comments (0) | Post RSSRSS comment feed