chadh

Stories kicked by chadh

Beyond Test Driven Development: Behaviour Driven(video.google.com)

submitted by MaruisMaruis(65) 6 years ago

Description: Google TechTalks March 17, 2006 Dave Astels Dave Astels (co-author of "A Practical Guide to eXtreme Programming" and author of Jolt Award winning "Test-driven Development: A Practical Guide") has over 2 decades of experience in the software field, most of that involved with object-oriented technologies and techniques. Dave has been studying, practicing, teaching, evangelising, and coaching XP and Agile Processes since 1998. Dave's experience ranges from embedded process control systems to consumer products (both consumer electronics and shrinkwrapped software) to energy trading systems. Dave is an independant software consultant specializing in the areas of agile process, programming practices, and object design/architecture. Dave is one of the thought leaders in the area of TDD, and now BDD. ABSTRACT Test Driven Development (TDD) has become quite well known. Many developers are getting benefit from the practice. But it is possible that we can get even more value. A new practice is getting attention these days: Behaviour Driven Development (BDD). BDD removes all vestiges of testing and instead focuses on specifying the behaviour desired in the system being built. This talk will be focus on Ruby and will introduce a new BDD framework: rSpec. The ideas, however, are language independent. read more...

add a comment |category: |Views: 9

tags: another

Google Calendar API(code.google.com)

submitted by gavinjoycegavinjoyce(25.7k) 6 years, 1 month ago

Google Calendar allows client applications to view and update calendar events in the form of Google data API ("GData") feeds. Your client application can use the Google Calendar data API to create new events, edit or delete existing events, and query for events that match particular criteria. There are many possible uses for the Calendar data API. For example, you can create a web front end for your group's calendar that uses Google Calendar as a back end. Or you can generate a public calendar for Google Calendar to display, based on your organization's event database. Or you can search relevant calendars to display a list of upcoming events on those calendars. read more...

1 comment |category: |Views: 922

tags: another

Uncrippling Windows XP's IIS 5.1(codinghorror.com)

submitted by JGregoryJGregory(375) 6 years, 1 month ago

Windows XP's IIS 5.1 is thoroughly crippled out of the box. It allows only one root website, and a maximum of ten concurrent connections to that website. Microsoft really, really doesn't want us hosting slashdot.org on our XP Pro box. These limits are so aggressive that they can get in the way of legitimate localhost development. But there are workarounds. read more...

add a comment |category: |Views: 21

tags: another

ASP.Net ClientIDs and their JavaScript companion(blog.jagregory.com)

submitted by JGregoryJGregory(375) 6 years, 1 month ago

A small component that is designed to bridge the gap between the element IDs you'd expect to use within your JavaScript and the actual IDs that are rendered by ASP.Net; providing you with the ability to program JavaScript as you always have, without having to make any extra considerations for ASP.Net's ID conflict aversion methods. read more...

add a comment |category: |Views: 12

tags: another

How to log AppDomain start/shutdown in ASP.NET 2.0 in web.config(blogs.msdn.com)

submitted by itzrahulsoniitzrahulsoni(745) 6 years, 1 month ago

In this blog entry, you will find how to enable HealthMonitoring for Application Lifetime related events into your Event Viewer. You may want to do it if you want to know how often your ASP.NET 2.0 Application gets loaded/unloaded etc. Also, it could be a good point to verify if your AppDomain gets restarted for some reason (in the event logs you will see the reasons as well!!!) and eventually your session data gets lost sporadically. read more...

add a comment |category: |Views: 42

tags: another

Consolas as the New IDE Font of Choice(techtoolblog.com)

submitted by teenwolfteenwolf(235) 6 years, 1 month ago

Download Vista's New Fonts read more...

1 comment |category: |Views: 3

tags: another

Ultimate Security, Role, Membership and Profile Provider List(arnonel.com)

submitted by arnonelarnonel(175) 6 years, 1 month ago

The Ultimate Asp.net 2.0 Security, Role, Membership and Profile Provider List V1.0 read more...

2 comments |category: |Views: 42

tags: another

HOWTO: Use aspnet_setreg to encrypt other values in the web.config(choosing-a-blog-url-sucks.blogspot.com)

submitted by j.montyj.monty(1868) 6 years, 1 month ago

Here’s a slight hack I came up with to store encrypted connection strings in the registry that mimic the aspnet_setreg utility that comes with the .NET framework. read more...

add a comment |category: |Views: 36

tags: another

Save Your Visual Studio 2003 Settings(haacked.com)

submitted by kimshureekimshuree(120) 6 years, 1 month ago

Need a way to save your Visual Studio 2003 settings when going to another computer? read more...

add a comment |category: |Views: 1

tags: another

Cetralized web configuration using <location/> attribute (community.devpinoy.org)

submitted by keithrullkeithrull(70) 6 years, 1 month ago

On my current project we have 3 virtual directories configured as separate applications. Each has its own web.config not knowing it is possible to have only one web.config for all those application on the root directory's web.config. This was made possible thru the <location/> attribute. With <location/> I had centralized configuration which makes administration and creation of installer easier. read more...

add a comment |category: |Views: 0

tags: another

Programmers motivation, a psychological view(community.devpinoy.org)

submitted by keithrullkeithrull(70) 6 years, 1 month ago

Applying psychology in observing programmers -- the list below is purely based on my observation -- to programmers in the workplaces I have been to read more...

add a comment |category: |Views: 4

tags: another

HOW TO: Using Surrounds with in Visual Studio 2005(thoughtblog.com)

submitted by kimshureekimshuree(120) 6 years, 2 months ago

Kick guide on how to use the Surrounds with feature in Visual Studio 2005 read more...

add a comment |category: |Views: 4

tags: another

Caching in ASP.NET(aspalliance.com)

submitted by dbteqdbteq(115) 6 years, 2 months ago

This article discusses Caching, its different types and contains some lucid code examples to illustrate On-Demand Data Caching. Caching is a feature of ASP.NET that can dramatically improve the performance of web applications by minimizing the usage of server resources to a great extent. Caching is a feature that stores data in local memory, allowing incoming requests to be served from memory directly. read more...

add a comment |category: |Views: 8

tags: another

4 ways to send a PDF file to the IE Client in ASP.NET(blogs.msdn.com)

submitted by itzrahulsoniitzrahulsoni(745) 6 years, 2 months ago

This blog entry shows you four different ways to send a PDF file to the IE Client. You also have the full source code zipped along. read more...

add a comment |category: |Views: 2

tags: another

Attributes and Reflection in C# (aspalliance.com)

submitted by dbteqdbteq(115) 6 years, 2 months ago

This article discusses attributes and reflection concepts in detail with examples wherever necessary. C# is very important language, but it also offers scope for adding declarative features to the code and their later retrieval if necessary. We can use attributes to provide both design-level and run-time information to our code. Attributes are a mechanism for adding metadata. Reflection is the process by which a program can read its own metadata. read more...

add a comment |category: |Views: 16

tags: another

Karmencita - object query language for .NET(voidsoft.ro)

submitted by MariusMarius(80) 6 years, 2 months ago

Karmencita is an object query language for .NET . It's purpose is to allow easy querying from in memory structured data. Here is some sample code : // get an array of running processes Process[] proc = Process.GetProceses(); // initialize Karmencita with the type of object to be queries ObjectQuery<Process> oq = new ObjectQuery<Process>(); // write the query string query = "BasePriority > 3 and Responding = true and MainWindowTitle Like C%"; //run the query Process[] processes = (Process[]) oq.Select(proc, query); read more...

add a comment |category: |Views: 2

tags: another