C4Swimmers Newsletter  

guru's blog

(Events) Agile NCR 2010


Events Agile NCR 2010

Xebia and ASCI (Agile Software Community of India) are pleased to announce the fourth edition of Agile NCR 2010, which has become the biggest Agile event in North India. This year we have got overwhelming response on papers submitted by industry veterans, speakers from international fame and book writers.

AgileNCR 2010 will have the following themes:

Agile for newbies: This is for everyone who is partially aware or completely unaware about what everybody keep talking about... " They say something like pair programming or pear programming or something like that... Not sure what why and how..."

Agile Adoption Challenges: This track is for everyone who is right now aboard Agile bandwagon! The everyday nuance, challenges, pitfalls and solutions would be discussed in this theme.  Workshops and Craftsmanship: This theme talks about real, practical, hands-on things that you can immediately associate to everyday working in an Agile environment.  

Post Agile: Been there, done that... what next?? This theme is meant for people who feel they've had enough of Agile or who are happy being Agile but would like to look beyond. This theme focuses on other ways of software development like Kanban. The presentations on these themes are organized into 3 parallel Tracks.The agenda will be published soon.

Venue: Ansal Institute of Technology, Gurgaon

Dates: 17 July 2010 - 18 July 2010

Time: 9 AM to 6:30 PM

(Tutorial) VB.NET Tutorial | Customize user controls and object methods

(Tutorial) Csharp (C#) Tutorial

Csharp (C#) Tutorial

This csharp tutorial ( C# tutorial) is intended for beginners who want to learn C# programming.

If you and want jump coding, and you have the compiler for Charp (C# ) installed in your computer, skip this introduction and go directly to next page. Otherwise go ahead and read on.

INTRODUCTION

(Article) Tag Parsing C++

Tag Parsing C++

The tag parser is used in Visual Studio 2010 to populate the SQL database that supersedes the NCB file. All of the browsing features of VC++ rely in some way on results provided by the tag parser. These include Class View, Call Hierarchy, Go To Definition/Declaration, Get All References, Quick Search, the Navigation Bar and VCCodeModel.

(Video) A Brief History of Software

Video : Michael Lopp, "A Brief History of Software"

Description :
Michael Lopp (Rands in Repose) "A Brief History of Software"

(Video) Applying Open Source Principles to Federal Government

Video : Applying Open Source Principles to Federal Government

Description :
Gunnar Hellekson (Red Hat Government), "Applying Open Source Principles to Federal Government"

(Video) O'Reilly Webcast: An Introduction to Hadoop

in

Video : O'Reilly Webcast: An Introduction to Hadoop

Description :
In this webcast, Cloudera founder Christophe Bisciglia and O'Reilly author Tom White will provide an introduction to Hadoop/MapReduce, the open source project that allows organizations to process, store and analyze massive application datasets.

(Info) Intellisense and Browsing with C++0x

Intellisense and Browsing with C++0x

What is C++0x??
C++0x is the name for the next version of the C++ Programming Language Standard. For VC 10, the C++ 0x features that have been implemented in the compiler so far are “auto”, “lambdas”, “rvalue references”, “decltype”, “nullptr” and “static_assert”.

Details about these can be read from:
· Lambda-auto-static_assert
· Rvalue-reference
· Decltype

(Info) Windows 7 API Code Pack for .NET

Windows 7 API Code Pack for .NET

The next version of Windows is only a few months away and Vista will then be consigned to the same shelf as Windows ME. Prices have recently been announced for some of the Windows 7 versions. MSDN subscribers of course have had access to the Release candidate for some time.

(Source Code ) Atari 7800 Console Games Source Code

Atari 7800 PacmanAs it's July 4th here's something slightly off-topic. Back in the early 1980s, Atari ruled the roost in video games. They'd started in 1972 and Pong was the first creation followed the by the Atari VCS console (aka 2600). For a while Atari was the fastest growing company in the US but in 1983 the whole video game market crashed and Atari's consumer division was sold to Jack Tramiel, He was

(How to) How to write a Share Trading Bot in C or C++

How to write a Share Trading Bot in C or C++

To enter the Ongoing Programming Challenge #2 you just have to supply a single source code file called bot.c or bot.cpp. The rest of this article describes how to write it.

(Tutorial) Using Multiple Inheritance in C++

Multiple Inheritance in C++

Using multiple inheritance in C++
Deriving directly from more than one class is usually called multiple inheritance. Since it's widely believed that this concept complicates the design and debuggers can have a hard time with it, multiple inheritance can be a controversial topic. However, multiple inheritance is an important feature in C++ and C++ programmers think of it as a very good structuring tool.

To get a taste of this, let's consider the following real world example:

(Tutorial) Managing Database Operations Using ADO And C++

Managing Database Operations Using ADO And C++

Now that we have gone over the basics, described a way to design and create ADO wrapper classes, it is now time for the final phase of creating an ADO manager class that will work on all the concepts we have discussed. Our final goal with this design is to use as little code as possible in running any of the desired SQL operations against the database. Without this ADO manager class, every time we needed to perform some kind of operation we

(Tutorial) Operator Overloading (C++ The Overloading Principle)

Operator Overloading  (C++ The Overloading Principle)

In C++ the overloading principle applies not only to functions, but to operators too. That is, the meaning of operators can be extended from built-in types to user-defined types. In this way a programmer can provide his or her own operator to a class by overloading the built-in operator to perform some specific computation when the operator is used with objects of that class. One question may arise here: is this really useful in real world

(Article) Constructors and Destructors in C++

Constructors and Destructors in C++

Constructor and Destructor Order
The process of creating and deleting objects in C++ is not a trivial task. Every time an instance of a class is created the constructor method is called. The constructor has the same name as the class and it doesn't return any type, while the destructor's name it's defined in the same way, but with a '~' in front:

class String
{

public:

(Tutorial) Writing a C++ Program with the CAPICOM Component to Encrypt and Decrypt Files

Writing a C++ Program with the CAPICOM Component to Encrypt and Decrypt Files

Introduction

(Tips) Understanding DLLs – Building them and Allowing External Calls to their Functions

Understanding DLLs – Building them and Allowing External Calls to their Functions

Introduction

(Tool) NetXtreme IMAP

Tool : NetXtreme IMAP

NetXtremeImap is a powerful component which allows you to quickly and securely manage mail messages on a remote server using ImapClient class with a few lines of code. MIME is also supported by NetXtremeImap which allows you to read mail message from file (.eml extension) or stream, sign/verify, encrypt/decrypt, extracts mail message headers and bodies, retrieve attachments.

NetXtremeImap is also included in the following suites which are bundles that include many additional components:

(Article) C# HTML email through Gmail

Article : C# HTML email through Gmail

SMTP Email
C#.NET comes with built-in libraries to send html email easily. Particulary in this article, we'll focus on sending email with Google's Gmail service. You will need a gmail account, which is free to make if you don't already have one.The trick to send html email messages is to connect to Gmail's SMTP server. STMP stands for Simple Mail Transfer Protocol and is a popular way to send emails.

(Article) C# Boolean Matrix

Article : C# Boolean Matrix

Boolean Matrix
A Boolean Matrix in C# (also known as a logical matrix) is a useful mathematical tool for complex math operations. A boolean matrix is a number matrix that consists of only 1's and 0's (or true and false). They are useful in a wide range of mathematics.Since .NET Framework does not come with built-in support for matrix math, our boolean matrix C# math library is going to be written from scratch.

Syndicate content