Turn your MSN Messenger into a multi-protocol client.

IMTiger is a simple and very useful add-on that turns MSN Messenger into a multi-protocol client. IMTiger allows you to have one combined contact list for multiple accounts of MSN, ICQ and AIM.

IMTiger Features:
Support unlimited number of MSN/AIM/ICQ account in one MSN messenger
Turn your MSN Messenger into a Multi-Protocol Client.
List AIM/ICQ buddy’s present status in MSN Messenger’s contact list
Chat with AIM/ICQ  buddy in MSN Messenger

Get the IMTiger!

[Via Neno Loje's Treasury ]

PostXING plugin-MetaPinger

MetaPinger is a PostXING plugin that notifies a number of services that keep track of weblogs and publish them. By pinging, you let the services know that your blog has been updated , they crawl your blog, publishing your site contents, thus increasing your blog’s popularity.

Setup
Extract the ZIP archive into the "plugins" subdirectory of PostXING’s install directory

Configuration
You will need to configure MetaPinger plugin to notify ping services.
Enter blog name.
Enter blog url.
Add ping service urls ( one per line )

Usage
To ping press the "Ping" button.

Download MetaPinger plugin

MetaPinger has been tested with the following ping services:
http://1470.net/api/ping
http://api.feedster.com/ping
http://api.moreover.com/RPC2
http://api.moreover.com/ping
http://api.my.yahoo.com/RPC2
http://blogdb.jp/xmlrpc
http://blog.goo.ne.jp/XMLRPC
http://coreblog.org/ping/
http://ping.blo.gs/
http://ping.bloggers.jp/rpc/
http://ping.blogmura.jp/rpc/
http://ping.cocolog-nifty.com/xmlrpc
http://ping.syndic8.com/xmlrpc.php
http://rpc.blogbuzzmachine.com/RPC2
http://rpc.blogrolling.com/pinger/
http://rpc.technorati.com/rpc/ping
http://www.weblogues.com/RPC/

Technorati Tags:  PostXING Tagging Utility Software Blogware Plugin

PostXING plugin-TechnoratiTagger

TechnoratiTagger is a PostXING plugin that allows you create Technorati tags.

Setup
Extract the ZIP archive into the "plugins" subdirectory of PostXING’s install directory

Usage
To add Technorati tags at the end of a post, type tags separated by commas, and then press the "Paste" button. The history list show tags you’ve typed in the past.To add tag from the history list, double click on selected tag.

Download TechnoratiTagger plugin

Technorati Tags:  Technorati Tagger Tags Technorati Tagger Blogware Software Utility Tagging PostXING

.Net localization (Hebrew version)

.NET supports Unicode and you can use variables and literals in your own language.Is it useful? I don’t know ,but looks amazing.

using System;
 
namespace Devintelligence.Localization
{
    /// <summary>
    /// Localization in Hebrew
    /// </summary>
    class Class1
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main(string[] args)
        {
            for( int ?????    = 0;?????<10;?????++ )
            {
                Console.Write("{0}", ????? );
            }
            Console.ReadLine();
        }
    }
}

[Via Abhinaba's blog]

How to find out if the left shift or right shift key has been pressed down …

Add this declaration.

[DllImport("user32")]
public static extern short GetKeyState (Keys VirtKey);

On your KeyDown event, you can check which shift key has been pressed down in this way:

bool LShiftPressed = ((GetKeyState(Keys.LShiftKey) & 256)==256);
bool RShiftPressed = ((GetKeyState(Keys.RShiftKey) & 256)==256);


Page 26 of 59« First...1020...2425262728...4050...Last »