You are not logged in [login] | [register]
RSS MAD is both an RSS feed archive and online feed reader.
You can browse our categories, search for a feed, or if you already have a URL, use our online feed reader.
Simply start browsing the site, and if you find some feeds you like, register to view them on your own personalized page!
you are here: home » blogs (technical) » languages & databases
Searching 189053 articles in 8938 feeds.
Do you like RSS MAD? Why not spread the news and tell a friend about it - it's as easy as filling out this form!
added: Wed, 21st September 2005 | 1551 views | 0x in favourites
feed url: http://blogs.x2line.com/al/Rss.aspx
.Net Development; Web Services; MSSQL
Since one of my applications - Bathroom Stall Vandalism works both on bebo and on facebook as well - it is always useful to compare performance on both platforms. BTW, Bathroom Stall Vandalism is all about people virtually write and vandalize their rest rooms (LOL).
Need to take in to account that:
One can understand from the screenshot that the app is more popular among bebo users: they spend more time on site, have better bounce rate, etc.
Bebo audience is very special: most users are under 18 from UK, Australia and New Zealand.
I'm back again from Thailand.
The picture above is taken from Patong Beach, Phuket, Thailand.
I recently went through several posts I had made on one of the development forums back then in 2005. I've found one of them interesting and wanted to repost it here. The question went like this:
"How can I calculate euler number with recursion ?"
Euler number (or e) can be calculated with the following formula in math:
sum = 1/0! + 1/1! + 1/2! + ... + 1/n!
Here one can notice the use of the Factorial function which can be implemented via recursion itself like so:
int Factorial(int n)
{
if (n == 0)
{
return 1;
}
return n * Factorial(n - 1);
}
After we know how to implement Factorial we can implement Euler number using recursion as well:
double EulerNumber(int n)
{
if (n == 0)
{
return 1;
}
return 1.0/Factorial(n) + EulerNumber(n - 1);
}
Enjoy :)
Very often during development we need to remove the last character from a string.
It could be a trailing slash or a trailing comma as a result (side effect ?) of building delimited strings.
There are many ways to do that in C#, however I like the following one for its simplicity and good performance:
str.Remove(str.Length - 1, 1);
Enjoy
Fosimo 0.9.4 is the latest release of the Facebook desktop client for windows. You can download it for free here.
Here is Fosimo about page on Facebook.
Starting from 0.9.4 and later Fosimo supports autoupdate. Fosimo will update itself automagically each time the new version is up there. Therefore this desktop application would be protected from the breaking changes of Facebook API which happen once in a while.
Enjoy :)
"XMLHttpRequest is an API that can be used by JavaScript, and other web browser scripting languages to transfer XML and other text data between a web page's Client-Side and Server-Side."
Internet Explorer implementation of XMLHttp is ActiveX. However Mozilla based browsers implement XMLHttp, not as an ActiveX control but as a native browser object called XMLHttpRequest.
Therefore it is a common problem when solutions utilizing XMLHttp work fine in one browser but not in the other. The following snippet is a function which creates XMLHttp object in javascript ready for use. Tested in IE and Firefox:
// Create and return XMLHttp object
function GetXmlHttp()
{
var oXmlHttp = null;
try
{
oXmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
try
{
oXmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch(oc)
{
oXmlHttp = null;
}
}
if ((!oXmlHttp) && (typeof XMLHttpRequest != 'undefined'))
{
oXmlHttp = new XMLHttpRequest();
}
return oXmlHttp;
}
Enjoy :)
Fosimo 0.9.3 is available. You can download it for free here (requires .NET Framework 2.0 or later). Fosimo is a Facebook™ desktop client for windows. See Fosimo about page on Facebook.
It's about time for the new release of Fosimo :) Exactly 3 months have passed since the last release (0.9.2).
New in this release:
Now it is possible to view all your friends in a list and to observe each one of your friends profiles. "My Friends" in context menu.

Fosimo is able to synchronize your Facebook™ friend details with your OUTLOOK. It will update OUTLOOK® contact details of your matching Facebook™ friend.
Important to note:
Enjoy :)
Q: I'm trying to read a txt file using StreamReader, but the file is locked by another process. The problem is that, since this is a log file I can't stop the other process that is using it.
Even if one makes sure to specify the proper FileAccess and FileShare modes when opening the file she won't be able to read it if the other program has opened the file with an exclusive lock.
Since this is a very common problem I wanted to share a small but useful tip of how to do that:
Before you open the file simply copy it to ---> C:\Documents and Settings\<username>\Local Settings\Temp\. REASON: Avoids file access violations under Windows. Now open and read the copied file.
Just following Bathroom Stall Vandalism a week ago DayGrader - Life Grading System was scaled up yesterday and now also supports Bebo. DayGrader on Bebo.
So for all Bebo users reading this post, you can either:
Just like Bathroom Stall Vandalism DayGrader continues to work on Facebook. And some features are open to public and not just for Facebook or Bebo users. For example DayGrader Global Report - This is a cumulative Global grade report for all users and all grades users ever made for days on ABCDF scale.
Enjoy :)
» more
» more
Is RSS MAD missing something? Tell us about new feeds here.