Archive for December, 2005

Saturday, November 29, 2008 10:16

Happy New Year!

To everyone that reads my blog, Happy New Year!

Bookmark It

Hide Sites

$$(‘div.d728′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });

Saturday, November 29, 2008 10:16

Read Rss into DataSet

The simple trick shows how to read rss feed into DataSet .

using System;
using System.Data;
using System.Net;
 
namespace DevIntelligence.Examples
{
class RssReader
{
[STAThread]
static void Main(string[] args)
{
[...]

Saturday, November 29, 2008 10:16

Creating and managing multiple sites on the Windows XP IIS.

This article presents an approach of creating and managing multiple sites on the Windows XP IIS.

Bookmark It

Hide Sites

$$(‘div.d726′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });

Saturday, November 29, 2008 10:16

MS SQL Server 2005 – System Table Map

The SQL Server 2005 System Table Map shows the system tables integrated in SQL Server 2005, and the relations between them.
Download SQL Server 2005 System Table Map

Bookmark It

Hide Sites

$$(‘div.d725′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });

Saturday, November 29, 2008 10:16

.Net Sample for Amazon Web Services (AWS) Request Authentication

The following code sample demonstrates how to calculate a request signature to sign authenticated requests to AWS.
 

using System;
using System.IO;
using System.Security.Cryptography;
using System.Text;

 
namespace Devintelligence.Aws
{
/// <summary>
/// Generation authentication signatures for AWS Platform requests.
/// </summary>
public class AwsUtils
{
[...]

Saturday, November 29, 2008 10:16

Introducing Devintelligence.com Sitemap Generator!

Introducing Devintelligence.com Sitemap Generator!

A simple and easy to use Sitemap Generator tool to help you make Google sitemaps.
 

 
 
Current feature list
The following features are currently included in Sitemap Generator:

Crawl website based on known URL
Edit the list of collected URLs Edit priority and frequency data per URL
Only working URLs are automatically included in the listing
Automatically [...]

Saturday, November 29, 2008 10:16

ASP.NET 2.0 QuickStart Samples

The ASP.NET QuickStart is a series of ASP.NET samples and supporting commentary designed to quickly acquaint developers with the architecture and power of the ASP.NET Web programming framework.

Bookmark It

Hide Sites

$$(‘div.d722′).each( function(e) { e.visualEffect(’slide_up’,{duration:0.5}) });

Saturday, November 29, 2008 10:16

Use BackgroundWorker with any class

BackgroundWorker works only with the classes that implements interface ISynchronizeInvoke – in order to use BackgroundWorker with any class necessary to make the following changes in the code.
The code after the changes ( BackgroundWorker.cs ):

private void InvokeDelegate(Delegate del, params object[] args)
{
ISynchronizeInvoke synchronizer = del.Target as ISynchronizeInvoke;
try
[...]