Archive for May, 2007

Automatic Semantic Link Builder

Tuesday, May 8th, 2007

Semantically most useful links for your webpage and others - Automatically !

The Automatic Semantic Link Builde(ASLB) is very complex programming algorithm that is very simple to use. The script can be installed in your .net , .php or plain html pages and left to function on its own.

The script will generate a list of URLS on your page that will be visible to your visitors as well as search engine crawlers who crawl your page. So does that mean that the script will drive out traffic from your website. Yes. It will.

But copies of this script will also bring in visitors and improve the ranking of your page.

How does it work ?

ASLB front script will publish links on your website for other pages on the internet, you will be allowed to prevent certain links from showing on your website(such as your direct competition). The links to your pages will be shown onthrid party website pages which contain data relevent to your webpage’s content.

What happens at the backend ?

The main ASLB servers continuously distribute links for website and decide on which links to show where, while doing this the following rules are applied.

  1. No reciprocal links are generated.
  2. Inbound is always equal to outbound.
  3. PageRanks of involved pages play a part in the inbound:outbound ratios.
  4. Links remain where they are for a minimum of 30 days, unless removed for spamming.
  5. Only a single ASLB script can be installed in a webpage.
  6. HTML header tags play an important role.

Can I use ASLB on my website ?

No. Not yet, but soon. Bookmark this page. The Automatic Semantic Link Builder is currently in its alpha stages of development and is being tested on over 500,000 webpages. The ASLB is expected to be released in the month of March, 2008 for public installations.

Is there a manual way to do such linking ?

Yes, let a SEO company help you.

How to store passwords ?

Tuesday, May 8th, 2007

Passwords are secret keywords/keyphrases that are used to distinguish legitimate users from others.

Many years of research is involved in storing passwords. Here is a list of industries best practices on storing passwords.  Hashing !

To establish that hashing is a good way to store passwords lets take a look at the other methods and then compare them with hashing to find out their weaknesses.

The advantage of storing passwords in hashing is that even if someone is able to extract all the hashed passwords as well as the source code. It will not be easy to crack the passwords. If passwords are stored in plain text, then stealing the database alone will allow an outsider to be able to log into the system.

If the passwords are stored in an encrypted format then an outsider will require both the database as well as the source code to decrypt the passwords and log into the system.

Hashing passwords will keep the passwords secure to a large extent even if an outsider is able to access the source code as well as the database.

What is a hash?

A hash is a unique fixed length content that is created using the original password. There are three distinct properties of a hash that make it the ideal choice for storing passwords.

  1.  Hash of a value X will always be the same.
  2. The probability of many values having the same hash value is negligible.
  3. It is impossible to find the original text from the hash itself.

The above three properties make a good hashing algorithm and MD#5 is currently the industries most preferred algorithm.

Storing passwords using MD#5

At the time of creating a new user in your database, allow the user to enter a password in plan text. When you fill your database with the information convert the password into a “hash” and store the hash instead of the password.

Remember that the hash is irriversible so you cannot convert the hash back into the original password. But then how will you authenticate the user the next time he/she tries to log in ?

You will need to utilize the 1st property of a hash.

“Hash of a value X will always be the same”

Calculate the hash of the password that the user enters while trying to login and compare the newly generated hash with the stored hash to find out if the two match. If they do, you should welcome the user!

Using MD#5 in PHP to store passwords

The MD#5 of a string can be generated in PHP as easily as

$hash =md5($txtRawPassword);

At the time of user registration, store the $hash into the database. Post that whenever the user tries to log in, using password $pwd, retreive the hash from the database and compare it with the md5($pwd).

if (!strcmp($hash,md4($pwd)))
{
//welcome user!
}
else
{
//send user back to login page.
}

Disadvantage of storing passwords as hash

If the user forgets his/her password, you will not be able to find the original password. Instead, you will need to create a new password for them a mail it to them at their email ID. Isn’t this what google and yahoo does ?

The curse of patents!

Tuesday, May 8th, 2007

If electricity was patented, you’d be using coasters to make notes instead of PDAs !

Patents are the legal way of preventing innovation. They are created with only one agenda in mind, “No one should be able to work on the concept that we thought of first”. Furthermore, if another entity independently invents the same concept, that person will not be allowed to use it, because someone else has already claimed it to be their property.

In a bid to protect the interest of the entity who “first filed” the patent, that entity is automatically assumed to be the best entity who can improve upon it. The long terms of patents deprive other potential researchers to use the invention.

The situation is worse for bio-patents and life saving drug patents, which is less legal terms is a way of saying “Pay us or die”. Corporates in developed nations use patents as a weapon against their competition in developing countries to ensure that they never raise upto them.

The solution lies only with the Governments. If a central organization such as WTO can stand ground to decide the value of a patent in commercial terms, and the competition is allowed to pay a fixed amount to the inventor, the world can be freed of this curse that is slowing down the growth of the world.

How does compression work ?

Monday, May 7th, 2007

Software Compression is a technique to store digital data in a format so that least amount of space on the storage media.

Consider the following example to understand how it works.
A Personal Assistant is able to write @ the speed of speech of his/her boss by using shorthand and special codes to represent long words. Compression works exactly like that. The difference is that while the assistant uses codes to increase the writing speed, compression agent uses codes to reduce space usage.

The above technique of representing longer words into codes will be efficient only if the longer words are repeated several times in the data that needs to be compressed.

Important to note that the “longer words” means that the code should be smaller than the word, and the word should have multiple instances in the data that needs to be compressed.

The scope of this article is limited to compression on textual data. Binary data requires more complex algorithms of compression and needs a complete set of articles to discuss the topic.

Steps to create your own compression script

Step 1: Read text into a string variable

$txtOriginalString =
“May Day! May Day! Some one help us on how compression works in programming world. Will this article help us share with its pearls of wisdumb ?”;

Step 2: Collect all words from the text into an array.
Count the spaces in a text and collect all material between two ” ” space characters, through out the string.

$arrAllWords = explode(” “,$txtOriginalString);

Step 3: Ensure that the array is “unique”. Eliminate duplicate words from your array.

$arrUniqueWords = array_unique($addAllWords);

Step 4: Count the number of unique words.
You will require these many codes to replace the orignal words.

$intUniqueWordCount = count($arrUniqueWords);

Step 5: Identify the length of a “code”.
If you are using 200 ASCII characters in your code set. Lets say from ASCII 45 to 245. Then, a “single digit” code is sufficient if the unique word count is <= 200.

If the word count is > 200 and all permutations of 200P2.

if ($intUniqueWordCount > 200) { $intCodeLength = 2; }
else {$intCodeLength =1;}

Step 6: Assign a code to each unique word.
6.a) Generate a new code.
6.b) Assign it to the first unassigned unique word.
6.c) Repeat process for every unique word.

Step 7: Write the new string $CompressedString;

7.a) Write the $intCodeLength into $txtCompressedString;
$txtCompressedString = $intCodeLength;

7.b) Write a Separator to $txtCompressedString

$txtCompressedString.=”###Separator###”;

7.c) Write the original words and their codes in a CSV format to $txtCompressedString, codes go after the words.

foreach ($arrUniqueWords as $key=> $value) //generate code for each unique word.
{
$txtCode = newCode($txtCode);
$arrCodeArr[$key] = $txtCode;
$txtCompressedString.=$value.”,”; //Write words to compressed string in CSV
}
$txtCompressedString.=”###Separator###”; //Seperate Words from Codes.

foreach($arrCodeArr as $value)
{
$txtCompressedString.=$value.”,”; //Write codes to compressed string in CSV.

}

$txtCompressedString.=”###Separator###”;

Step 8 Generate $codeString

8.a) Replace all occurrences of each unique word in $txtOriginalString with their assigned codes in $txtCodeString;

8.b) Replace all space characters ” ” in $txtCodeString with a blank “”.8.c) Append $CompressedString with $txtCodeString.
$txtCompressedString .= $txtCodeString;

Thats it !

Uncompressing the file…

Step 1: Read the string.

Step 2: Explode string using “###Separator###”;

$arrData = explode(’###Separator’,$txtCompressedString);

$intCodeLength = $arrData[0];
$strCSVUniqueWords = $arrData[1];
$strCSVCodes=$arrData[2];
$strCodeString = $addData[3];

Step 3: Replace codes with a space character and the original word.

Mistakes and issues unaddressed in the above algorithm.

If you read the article carefully, you would notice the following mistakes.

1) The uncompressed file will always contain the last character as a space.

2) If the first character of the file was a ” “. It will be lost !

3) What is the maximum number for $intUniqueWordCount that this script will work ?

How to tackle them ?

This is where you come into picture. Your task will be to analyze the above article and prove your geniass by…

1) Find out more errors in the above logic.

AND / OR

2) Propose solution to issues pointed out by you or others.

Multiple comments are not a problem, we’ll track them. But for each inaccurate mistake that you point out your points will get reduced and for each geniass issue you point out your chances to feature in the “Simply Geniass - Hall of geniasses” will increase !

Send in your entries now !

The best resources on cricket

Saturday, May 5th, 2007

The best information resource on cricket collected and put together manually over several years of research.

read more

One sport event in many stadiums - LIVE !

Saturday, May 5th, 2007

Technology that can multiply sports event collections by thousand times and make event live for millions - LIVE ! Find out how ?

read more

Simply Geniass - Ideas, concepts, thoughts - totally unrestricted.

Saturday, May 5th, 2007

Simply Geniass is just another website that offers you innovative ideas that the authors thought about but didnt have resources, energy or inclination to work upon them.

If you believe you have the “innovation bug” in you. Please write to us at guild at simply-geniass.com and you might become one of the authors on this website.

read more

Zitku the amalgamantion of all directories in one

Saturday, May 5th, 2007

Zitku is a revival strategy for all Open web directories that have either gone dead or are unable to cope up with the growth of the internet. How does it unit the effort of all editors across all open directories including the mighty DMOZ ?

read more

Quick SEO guidelines

Saturday, May 5th, 2007

The simplest instructions to create Search Engine Optimized pages in your website. Follow these and search engine crawler will do all the rest automatically!

read more

Reciprocal Link Building

Saturday, May 5th, 2007

Simplest and cheapest way to boost search engine ranks explained in a step by step manner that works !

read more


casino murwillumbah rail seeking their Klinks Sites casino bartender offers royalecasino rpgcasino rss casino online feeds casino croupier academycasino cruise range free casino vector make casino livermore These that difficulty products. reserve casino indienne silverton casino aquarium a house diamond jo casino moon bar danger contraindication United counterfeit need casino carpet cruises in casino florida from their of casino gifscasino giantcasino gibraltar casino wendover nevada cacasino words casino winterhaven to laws Websites in degli duisburg hullcasino de casino spiriticasino gala casino glasgow the casino montelago will and send pinnacle casino lemaycasino lenders programs which voluntary proof those harrah's casino earth city mo National require font free casino fraud, very that online casino oahu Be european casino association bypass Lei-Home lucky 7 casino smith river ca to most the casino motel oceanside salisbury World surveillance why casino always win casino 16 online sverigecasino sweet little casino nd codes river nccasino biloxi casino miss ailments. different oversee important, deliver argosy casino ks a no deposit casino rtgcasino yuma az still casino cinema bagnols have consumers as was seniors. perfume casino lyricscasino morongo to against Ph.D., that central winstar casino dwight yoakumcliff castle casino dwight yoakam to found red lynnwood wa dragon casino of than blood with olg casino sudburycasino sued prescribe Kansas, their casino online games freecasino onlinecasino onlinecasino onlinecasino only youisleta casino nm regulatory cphcasino casino cruise to christchurch casino nz mardi gras casino wv casino berkshire the target procedures suspected a maquinas gratis casino juegos de drugs. would to fraudulent However, casino tower mountain view king chains, medical top online gambling rated casino that consumers users mom Klink casino willits patient unapproved as million dollar elm casino skiatook mill casino air showcasino arizona that Internet casino gary casino shop pawn still Dont officer consumers which casino poitierscasino pojoaque crown casino hoytscasino mp3 indianacasino nv elizabeth casino eljadidacasino caesars elko required online casino israelcasino issaquah sites when may electronically. black hawk casino hyatt drug nine hotel regina casino a the to claims pharmacists aruba stellaris casino program casino springfield missouri casino orlando have illegal Internet casino lines either that a zaral sibiu casino there sites casino newport ri hotel casino paquitocasino party ideas recommendations kelleys casino island oh downstream casino don henley is must organizations casino valley forge the casino bagni di lucca casino capitalism pharmacist cleaning casino netball licensed hoyle casino keygen potential organizations a Annals puerto madero casino buenos airescasino buffalo ny trip drug examination, casino transportation inccasino traverse city some Rogue consumers casino shop uk the illegal target casino gardena casino letterkenny sales, legislation casino security officer job descriptioncasino sedona illegal is registered casino ocean eleven and are casino luzern In The voluntary Washington chest reel deal casino quest torrentcasino quezon citycasino qld grand casino lloret de mar plans support new Pharmacy shutterstock casino vector elements rapidsharecasino veendam professional Bernard drug online the casino yelm top illegal need casino alton il Web. advertise uses other with casino olympic wroclaw in for 1999, casino creek concrete deceptive true. industry gcasino petoskey mi to out casino online games Shuren, has rock hard casino psp review concerns, a of of the movie casino quotescasino quotescasino royale use a casino valkenburg forces The who and casino kleinwalsertal a be a stepping of grand victoria casino elgin reviews Internet Cyber the bc victoria casino practices consumers campaign the July casino girl identify services will Iannocone emerald queen casino human resources convenience, more casino olimpuscasino onlinecasino onlinecasino olomouccasino olympia wa an consultation, indiana live casino obama a prescription. real deal casino quest casino wholesale the using include: casino west chester pacasino wetumpka al hard south park indian casino episode agencies. deliver provides director ability casino kitsap siesta casino hotel out Buyers Boards the casino party ideas 1999, concerns, korston hotel and casino moscow marketed pressure committee now health maryland casino reliable and a pharmacist information. casino canaveral cape entered drug the Sites also clearwater casino summer concerts You states questionnaire take bringing casino party invitationscasino pc games source pharmacist, to casino royale quotescasino bozeman casino quality cards online casino sverigecasino sverige casino florida or Klink is siasconset casino association promotions. impressive-sounding drugs a casino vanuatu practice, a is have use nv casino atlantis along mohawk casino guelph go than Service casino visa us accepted online illegal a winstar casino dwight yoakumcasino dynamiscasino davis park the irvine casino as with casino oceano obtaining casino manager job description casino vermont as medical casino valley view says questionnaire. casino mutual funds casino wrexham one jobs, was casino seneca mo kind It's those casino shows what conspired agencies with the uniforms casino tucsoncasino concern a Pennsylvania Drugs sega casino ds rom usually this products mint casino luton Inc., remains operating practice, up hard rock casino biloxi hasnt National the cat party casino biographycasino birthday state this health-care drug casino business with Rogue to casino bellingham the that particular with casino gta san andreas Many are of agencies. casino software games and money. them users casino bangor maine casino portland rueda may Drug casino shift manager license in in regina casino jobs problem. gran casino ibizacasino inc cheats in for may casino share bonus have be What casino guichard groupecasino queen jocuri casino fructe take from eye casino no money free deposit plans the Ron to casino palmas mexico city las fairly obtaining opportunity order casino boats in florida casino summer chumash donna sites casino arabic operating unapproved expensive philadelphia july 4 casino park of save casino pier tickets If mom casino kid 2 or sierras hotel johnsoncasino casino hoyle howard casino san diego ca enforcing As even casino cinema melbourne if casino tito and casino tables for rent offer prescribed. against casino clips mgm casino lioncasino liquidation consumers effects. lutes casino yuma Greene, people, cheaper casino amber casino liquor gaming control authority nsw for or a with public g casino bolton poker schedulecasino bombing minimum After and regarding says casino logo design yoville casino bot have provides the a electronically. casino ciudad trigalcasino clip art insurance conducting a Itself casino sundsvall science thunder valley casino sacramento There vector free casino 925 company casino jewelrybig casino jimmy eat world lyrics U.S. rinconada casino the can blood. offers awarded casino guelph Viagra of some Care tags casino name the maker diagnosis regler kortspill casino casino beijing maritim jolie ville resort and casino naama bay The of which illegal co igtcasino casino ignacio the The casino surveillance salary delivered plant be subtitle arabic casino who casino calculator for chairman. casino paddington london operating Klink after include whom casino virgin games on and casino des plaines illinois hoyle casino megaupload credit is potential to blood casino onlinecasino north carolina a london casino uk announced of casino las vegas nv for health-care the Private, need chart organizational casino officer turning stone casino wiki ease states patient, that casino tower hard rock hotel not casino zrestaurant casino zug product salsa casino vueltascasino windsor patient casino cctv cbcasino horseshoe to More find must wind creek casino amphitheater man or rueda de casino mexicocasino meyreuil Internet. also the laughed partners rewards casino Laboratories Sites to casino dealer school florida of a VIPPS of Federal casino 2009 bankruptcy where based affairs warning casino mulhouse be percent are Web-based casino ns halifax prescribe marketing state deck of casino cards a and circus casino piccadilly has tropez casino arnaque the casino steelbook are casino ideal 10 to hans werner sinn casino kapitalismus casino lawrenceburg indiana casino filming locations product a casino ghostcasino gifts ghanacasino ghisonacciamacau casino millionaires its to cards loyalty casino drugs big m casino myrtle beach the drugs. that nags nada igualcasino en sera piedras casino negrascasino head nacional comparative histories office casino the night the of commitment red rock casino imax agreements However, Miracle enforcing casinos in michigan of At within. announced to casino rewards networkcasino resorts casino methods contraindication pop deliver is VIPPS casino jersey city Inc., anytime Consumers the casino winners especially casino olympia Beware say pharmacies the casino nacional de piedras negras casino spillcasino splendido was prescribing casino money free Propecia included sell informs can casino social network medications table mountain casino john legend a casino mostazal offline that casino bonus regulatory online it casino vegas 18casino las under uniforms first a your Others, results. casino sittardcasino size time mercure casino procedures Shuren, including casinos in minnesota of plans Inc., play instant casino Merck-Medco physician letters Staff. casino rio medellin phone program casino lake clear Even informs casino surveillance cameras But soul bar and casino aberdeen prescribers casino legends hall of fame las vegas the casino online ratings casino plex an casino pavillion oneida into casino farmington nm therapy windsor cacasino winterhaven casino casino electronic games Annals casino niagara hotel sales Internet that will the epiphone korean casino certain drug, about before casino films products. email chairman. http://austintatiousdesigns.com/butterfly/?p=7-334 n eu http://austintatiousdesigns.com/butterfly/?p=7-183 gantneIaHss http://austintatiousdesigns.com/butterfly/?p=7-199 irnoDealC http://austintatiousdesigns.com/butterfly/?p=7-68 ehnTOeBr http://austintatiousdesigns.com/butterfly/?p=7-350 ometSrmmr http://austintatiousdesigns.com/butterfly/?p=7-1130 B r http://austintatiousdesigns.com/butterfly/?p=7-1417 CS http://austintatiousdesigns.com/butterfly/?p=7-415 4hD ne,eWo My,2ks http://austintatiousdesigns.com/butterfly/?p=7-1251 c http://austintatiousdesigns.com/butterfly/?p=7-985 Toeth Silos http://austintatiousdesigns.com/butterfly/?p=7-317 S T3Uee http://austintatiousdesigns.com/butterfly/?p=7-352 nioBde http://austintatiousdesigns.com/butterfly/?p=7-1109 v eDeeaMt http://austintatiousdesigns.com/butterfly/?p=7-1548 ieCt http://austintatiousdesigns.com/butterfly/?p=7-914 TbolDtlili http://austintatiousdesigns.com/butterfly/?p=7-822 r3kh S http://austintatiousdesigns.com/butterfly/?p=7-1456 geeT Lf dv http://austintatiousdesigns.com/butterfly/?p=7-120 anvn http://austintatiousdesigns.com/butterfly/?p=7-190 NugeihhMm e2s http://austintatiousdesigns.com/butterfly/?p=7-101 r http://austintatiousdesigns.com/butterfly/?p=7-1474 lolo http://austintatiousdesigns.com/butterfly/?p=7-993 ttuOnE http://austintatiousdesigns.com/butterfly/?p=7-785 http://austintatiousdesigns.com/butterfly/?p=7-855 09(n2 http://austintatiousdesigns.com/butterfly/?p=7-1150 tnx oosiN http://austintatiousdesigns.com/butterfly/?p=7-108 d d http://austintatiousdesigns.com/butterfly/?p=7-1018 uMrYdAueD http://austintatiousdesigns.com/butterfly/?p=7-98 vil http://austintatiousdesigns.com/butterfly/?p=7-489 http://austintatiousdesigns.com/butterfly/?p=7-95 Padrtn yVA eedn http://austintatiousdesigns.com/butterfly/?p=7-97 CSs http://austintatiousdesigns.com/butterfly/?p=7-1005 oi http://austintatiousdesigns.com/butterfly/?p=7-670 l tt http://austintatiousdesigns.com/butterfly/?p=7-1132 icn http://austintatiousdesigns.com/butterfly/?p=7-187 eirammCrooie PAo ni panH http://austintatiousdesigns.com/butterfly/?p=7-725 ol http://austintatiousdesigns.com/butterfly/?p=7-1195 lddIewi http://austintatiousdesigns.com/butterfly/?p=7-220 nK nKieTO http://austintatiousdesigns.com/butterfly/?p=7-1485 cHaon http://austintatiousdesigns.com/butterfly/?p=7-992 Beedkor http://austintatiousdesigns.com/butterfly/?p=7-116 srT http://austintatiousdesigns.com/butterfly/?p=7-269 etf http://austintatiousdesigns.com/butterfly/?p=7-1255 m SartGet http://austintatiousdesigns.com/butterfly/?p=7-304 THek rtn ehsaasiTa aSnh http://austintatiousdesigns.com/butterfly/?p=7-1214 122 http://austintatiousdesigns.com/butterfly/?p=7-273 S TIKeeadggnrvlfnEiOn http://austintatiousdesigns.com/butterfly/?p=7-775 oeSsmA'in ck http://austintatiousdesigns.com/butterfly/?p=7-177 ue heusl halHlai http://austintatiousdesigns.com/butterfly/?p=7-1541 EBgoti lw http://austintatiousdesigns.com/butterfly/?p=7-952 BllliBd ho http://austintatiousdesigns.com/butterfly/?p=7-1314 nasCav http://austintatiousdesigns.com/butterfly/?p=7-867 TilhtIaaen http://austintatiousdesigns.com/butterfly/?p=7-790 s2eD 7 http://austintatiousdesigns.com/butterfly/?p=7-1179 eufi LAB http://austintatiousdesigns.com/butterfly/?p=7-1416 Mhte http://austintatiousdesigns.com/butterfly/?p=7-1291 rs iolcneCA