Wednesday, February 25, 2009

Web research

Web mining focuses on analyzing three different sources of information:
1.web structure
2.user activity 
3.the contents

Web mining  is the application of data mining techniques to discover patterns from the Web.

web mining can be divided into three different types, which are Web usage mining, Web content mining and Web structure mining.

Install fonts in ubuntu

installing a folder of fonts:

sudo cp -a /path-to-folder /usr/share/fonts
sudo fc-cache -f -v

Friday, February 20, 2009

view Log files with WinTail

Sometimes you want to view a log file that changes every seconds.

Download WinTail.exe (approximately 50K).

or Download baretail.exe (only 220k).

Monday, February 16, 2009

youtube RSS feed order by publish day

Youtube has a RSS feed for every chanal which shows RSS in a random way. 
so if you want to have RSS feed of youtube in your feed reader like youtube try this:


Thursday, February 12, 2009

Introducing VisualSVN for easy Subversion on Windows

This demo-reel, produced for VisualSVN, shows you how to use their open-source-based Subversion manager and non-free Client to start two developers developing a C# application in Windows in Visual Studio 2008. TortoiseSVN isn't shown but is used behind the scenes.

Tuesday, February 10, 2009

IP address lookup

this website allows you to send IP query like this example:

so you can use it in as API service in your website

Yahoo server

http://ip-lookup.net/?68.180.206.184

Monday, February 9, 2009

create your mangator

Cool website to create your mangator.

http://www.faceyourmanga.it/faceyourmanga.php?lang=eng

these both supposed to be me , which one is similar I dont know .


Saturday, February 7, 2009

Google Chrome problem with RSS

The new google chrome browser doesnt support RSS ,
take a look @ screen I made from Blogger and wordpress.

the best way for bloggers is to redirect the feed to feedburner
which is joined Google so you can login by you google account.



Blogger

Friday, February 6, 2009

how to show RSS icon in address bar in firefox

add this link in your HTML header and replace href with your feed address

  1.  

  2. <link rel="alternate" type="application/atom+xml" title="Atom" href="http://www.softminer.net/feeds/posts/default?alt=rss" />

Thursday, February 5, 2009

Format Decimal from German to English with separator

  1. NumberFormatInfo provider = new NumberFormatInfo();

  2. provider.NumberDecimalSeparator = ",";



  3. double doubleNumber;

  4. doubleNumber = Convert.ToDouble(arg, provider);

  5. return doubleNumber.ToString("F1", CultureInfo.CreateSpecificCulture("de-DE"));