Monthly Archive: June 2008

Jun
19

FireFox 3.0 and WordPress Just wont Work?

firefox30.jpg

  I am not able to login to my WordPress login through Firefox, dont know what fire fox doesn’t like about the WordPress.I recently upgraded the Firefox to 3.0 version from where this problem started Am I All alone or is any one with me?         Technorati Tags: Firefox,WordPress

Jun
17

How to Stop Forced Reboot of Windows Vista After Software Updates

noforcedreboot.jpg

Sometimes it would be very frustrating to see our machine rebooted due to software updates. There would be instances when we would have started a long process to start and would have aborted abruptly due to the software updates from the Vista. I found a nice article from How To Geek where he has explained …

Continue reading »

Jun
17

Zoomii

zoomi.jpg

Zoomi, this  one really caught my attention. This is what technology would do as it matures. The shopping experiences would soon become to mature from a 2D to a 3D experience. This web is a book store who get the books catalogue from Amazon and presents it in a 3D format for a pleasant experience …

Continue reading »

Jun
12

Sphenic number

In Mathematics Sphenic number is a postive integer which is a product of three distinct  prime numbers. All sphenic numbers have exactly eight divisors. If we express the sphenic number as n=p.q.r, where p, q, and r are distinct primes, then the set of divisors of n will be:  {1,p,q,r,pq,pr,qr, n}. Refer to Sphenic Number in …

Continue reading »

Jun
10

Selection Sort

Selection sort is a sorting algorithm, specifically an in-place comparison sort. It has O(n2) complexity, making it inefficient on large lists, and generally performs worse than the similar insertion sort. Selection sort is noted for its simplicity, and also has performance advantages over more complicated algorithms in certain situations. The following is my implementation of …

Continue reading »

Jun
10

Express the function n3/1000 – 100n2 – 100n + 3 in terms of ?-notation.

I guess the answer is ?(n^3). We always mention the highest order of the equation and we ignore the constants associated with the equation.

Jun
10

Insertion Sort

I wanted to write on Algorithms for a long time and here i got a chance to write on them; Today I am going to post on Insertion sort. Insertion sort is a simple sorting algorithm, a comparison sort in which the sorted array (or list) is built one entry at a time. It is …

Continue reading »