0
Posted on 12:38 PM by Softminer and filed under

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.
0
0
Posted on 4:39 AM by Softminer and filed under

installing a folder of fonts:

sudo cp -a /path-to-folder /usr/share/fonts
sudo fc-cache -f -v
0
Posted on 2:17 AM by Softminer and filed under

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

Download WinTail.exe (approximately 50K).

or Download baretail.exe (only 220k).
0
Posted on 11:29 AM by Softminer and filed under

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:


0
Posted on 2:59 PM by Softminer and filed under ,

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.

0
Posted on 6:36 AM by Softminer and filed under

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
0
Posted on 2:52 AM by Softminer and filed under ,

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 .


0
Posted on 9:03 AM by Softminer and filed under

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

0
Posted on 5:40 AM by Softminer and filed under

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" />

0
Posted on 7:13 AM by Softminer and filed under

  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"));