C4Swimmers Newsletter  

Article

Article

Learn Kernel Bootcamp - Part 1 has started

hi friends

The much awaited session Learn Kernel Bootcamp - Part 1 has started and the contents or step-by-step instructions to compile & install the Plain Vanilla Linux Kernel 2.6 is available at:

http://www.c4swimmers.net/wiki/mediawiki-1.6.10/index.php?title=LearnKernelBootcamp_Part1

or Visit http://wiki.c4swimmers.net and click on "Learn Kernel Bootcamp - Part 1".

Your feedback is always welcome about the session that helps us to improve our further sessions:

(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.

(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

(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:

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

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

Introduction

(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.

(How to) Build Custom XML Configuration for asp.net

How to : Build Custom XML Configuration for asp.net

Introduction:
A frequency asked question in the ASP.NET community is 'How to Building a Custom XML Configuration for ASP.NET' or 'How to use my own config files in asp.net'. Today let's do it together.

If you wan to use your custome config settings,you can inherit the IConfigurationSectionHandler if your .net version is 1.x you can also inherit the ConfigurationSection if your .net version is 2.0 .

(Article) C Programming for Embedded System

in

Article : C Programming for Embedded System

(Article) Use of XML to Dynamically Store retrieve data in asp.net

in

Article : Use of XML to Dynamically Store & retrieve data in asp.net

Introduction:
This article will help you to create child nodes with data in XML file automatically on button click from ASPX page in ASP.NET. Besides, you can retrieve data from the XML file node by node into text box, on label control.

(Features) New features of C# 3.0

Features : New features of C# 3.0

Introduction
This article shows some new features in C# 3.0. This demo is created as a simple C# console application to understand the new features of C# 3.0.

(Article) C++ vs Java vs Python

Article : C++ vs Java vs Python

Having been a full-time C++ programmer for all of the past ten years, I recently had the unique opportunity of seriously studying Java almost 10-15 years after it started becoming popular. In the meantime I’m also playing with Python on a personal note. This affords me a unique perspective, of having seen the past and at the same time looking at two new languages with a fresh eye.

(New Release) Microsoft releases XNA Game Studio 2.0

New Release : Microsoft releases XNA Game Studio 2.0

The release of XNA Game Studio 2.0 is now available for you to download!

What’s New with XNA Game Studio?

(Article) Convert a Multipage TIFF to PDF in .NET

Article : Convert a Multipage TIFF to PDF in .NET

Introduction
This article shows you how to create a PDF document from a multipage TIFF document in both C# and VB.NET using TallPDF.NET 2.0.

Sample Files

  • Input TIFF document
  • Output PDF document

Download Code

(New Publish) Murach’s ASP.NET 3.5 Web Programming with C# 2008

New Publish : Murach’s ASP.NET 3.5 Web Programming with C# 2008

Mike Murach & Associates has just published a 3.5 edition of their best-selling ASP.NET book, now entitled Murach’s ASP.NET 3.5 Web Programming with C# 2008.

(Article) New Converters Reduce the Pain of Converting C++ Code

Article : New Converters Reduce the Pain of Converting C++ Code

Tangible Software Solutions Inc. announced today the release of C++ to C# Converter version 1.0 and C++ to VB Converter 1.0. C++ to C# Converter and C++ to VB Converter translate C, C++, Managed C++ (VC++ 2003), and C++/CLI (VC++ 2005) source code to C# and VB at the file and code snippet levels.

(Article) SoftIntegration C++ Graphical Library (SIGL) 2.5 Released

Article : SoftIntegration C++ Graphical Library (SIGL) 2.5 Released

(Article) C++ Standard Template Library

Article : C++ Standard Template Library

The Standard Template Library (STL) is a software library. It is part of the C++ Standard Library describing containers, iterators, and algorithms.

(Algorithm) Sorting Algorithms in C

Algorithm : Sorting Algorithms in C

Syndicate content