noorani786

Stories kicked by noorani786

Show/hide various sections of a page using JQuery and CSS(nizarnoorani.com)

submitted by noorani786noorani786(342) 23 days ago

In this post I’ll go over how you can utilize JQuery and CSS classes to show/hide various parts across the different sections of a page without creating a mess! read more...

add a comment |category: |Views: 11

tags: another

Writing integration tests for ASP .NET with Selenium 2.0 – Part 2(nizarnoorani.com)

submitted by noorani786noorani786(342) 1 month, 10 days ago

This is the second in a series of posts on writing integration tests for ASP .NET using the Selenium 2.0 web application testing system. In this post, I’ll go over how to write and run C# test-cases using Selenium 2.0. I’ve also provided a base-class that contains helper methods for repetitive stuff like typing inside input fields. The base-class also speeds up the tests by re-using the same driver and preserving logins across tests. read more...

add a comment |category: |Views: 111

tags: another

Writing integration tests for ASP .NET with Selenium – Part 1(nizarnoorani.com)

submitted by noorani786noorani786(342) 1 month, 15 days ago

The first in a series of blog posts that will discuss how to setup, configure and write integration tests for ASP .NET using Selenium. read more...

2 comments |category: |Views: 214

tags: another

Dynamically creating input fields on tab via CoffeeScript and JQuery(nizarnoorani.com)

submitted by noorani786noorani786(342) 1 month, 17 days ago

Code snippet to dynamically create input fields on tab via CoffeeScript and JQuery... read more...

2 comments |category: |Views: 85

tags: another

To TDD or Not To TDD? That is the Discussion.(nizarnoorani.com)

submitted by noorani786noorani786(342) 2 months, 11 days ago

My evolution to TDD and reasons why I follow it... read more...

add a comment |category: |Views: 14

tags: another

Unobtrusive JavaScript with HTML 5(nizarnoorani.com)

submitted by noorani786noorani786(342) 2 months, 16 days ago

Custom Data Attributes in HTML 5 provide us with the ability to add Unobtrusive JavaScript our pages... read more...

add a comment |category: |Views: 6

tags: another

My thoughts on conducting technical interviews…(nizarnoorani.com)

submitted by noorani786noorani786(342) 2 months, 20 days ago

As a software consultant, I’ve both gone through and conducted a fair share of technical interviews. By conducting interviews, being interviewed and watching others interview I’ve learnt a few things myself. Below are some tips on what works and what doesn’t when interviewing software developers… read more...

add a comment |category: |Views: 8

tags: another

How to mock DateTime.Now in unit tests(catchblock.com)

submitted by tparvitparvi(75) 2 months, 22 days ago

Different ways to mock DateTime.Now in unit tests read more...

2 comments |category: |Views: 292

tags: another

Embracing CRUD – to it’s full extent!(nizarnoorani.com)

submitted by noorani786noorani786(342) 3 months, 1 day ago

I watched a screen-cast recently on how Ruby on Rails takes CRUD (Create, Read, Update, Delete) to its very extreme in order to come out with a software design that is to create, understand and modify. read more...

add a comment |category: |Views: 8

tags: another

JQuery snippet to detect keystrokes on the numeric key-pad.(nizarnoorani.com)

submitted by noorani786noorani786(342) 3 months, 3 days ago

JQuery snippet that detect keystrokes on the numeric key-pad. read more...

add a comment |category: |Views: 3

tags: another

Declaring MEF Parts to be Transient(nizarnoorani.com)

submitted by noorani786noorani786(342) 1 year, 2 months ago

I had very hard time locating the following information and, therefore, would like to share it with others thru my blog: MEF allows your to declare your exports as either singleton or transient. read more...

add a comment |category: |Views: 15

tags: another

Automated Error Reports: the simple way to hear when things go wrong.(www.red-gate.com)

submitted by javeryjavery(5523) 1 year, 3 months ago

Most users won't bother to mention bugs when they find them: it's tricky to remember what caused them and technically challenging to provide the details. Why not let your users give you the whole story in one click, with SmartAssembly's Automated Error Reporting? read more...

1 comment |category: |Views: 92

tags: another

WCF return values cannot be of type IEnumerable!(nizarnoorani.com)

submitted by noorani786noorani786(342) 1 year, 3 months ago

So, I spent a few hours spinning my wheels trying to figure out why I’ve been getting the following exception: read more...

add a comment |category: |Views: 26

tags: another

The case for C#’s dynamic keyword(nizarnoorani.com)

submitted by noorani786noorani786(342) 1 year, 3 months ago

Many developers feel, myself included, that C#’s ‘dynamic’ keyword is…well, a little too dynamic. But, recently, I faced a challenging problem which I was only able to solve through the use of the ‘dynamic’ keyword! read more...

add a comment |category: |Views: 4

tags: another

My 10 favourite Programming Quotes(www.ginktage.com)

submitted by isenthilisenthil(2309) 1 year, 3 months ago

For this post , i decided to collect some of my favourite quotes related to the programming . These programming quotes were made by some of the famous personalities in the IT industry . So , without wasting any time , here are my 10 favourite programming quotes ... read more...

2 comments |category: |Views: 1319

tags: another

Comparing the properties of two objects via Reflection and C#(cyotek.com)

submitted by cyotekcyotek(155) 1 year, 6 months ago

As part of the refactoring I was doing to the load code for crawler projects I needed a way of verifying that new code was loading data correctly. As it would be extremely time consuming to manually compare the objects, I used Reflection to compare the different objects and their properties. This article briefly describes the process and provides a complete helper function you can use in your own projects. read more...

add a comment |category: |Views: 53

tags: another