A Travel and vacations forum. TravelBanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » TravelBanter forum » Travel Regions » Latin America
Site Map Home Authors List Search Today's Posts Mark Forums Read Web Partners

Learn a foreign language



 
 
Thread Tools Display Modes
  #1  
Old March 17th, 2007, 01:53 PM posted to rec.travel.latin-america
[email protected]
external usenet poster
 
Posts: 1
Default Learn a foreign language

Hey everyone check out the utility I programmed that's hosted on my
website: http://www.ckoogle.com

It is called Davinci's Sort Utility, and you can find the source to it
in php on usenet if you want to run a mirror. I'm trying to find
people to port it to other languages because it is really useful. I
came up with the algorithm after realizing that if I sorted a list
alphabetically backwards everything would rhyme. It's a good tool,
and websites like rhymzones used versions of this code to create
rhyming mneumonics from phoenetical word-lists.

What's cool about my tool is you can make your own list, with just the
words you want to use. I have a list of adjectives hosted to teach
people what they are. On the SAT's they pretty much only test for
adjectives, because they are the least commonly used words and the
most mis-understood. If you want to learn a foreign language just
get all of your vocabulary words ordered phoenetically.

?php

echo 'form action="index.php" method="post"';
echo 'textarea name="input" cols="12" rows="20"';
echo '/textareabr';
echo 'input type="submit" value="Submit"';
echo '/form';

if( isset( $_POST["input"] )){
$my_array = $_POST["input"];
$my_array=strrev($my_array);
trim($my_array);
$my_array=explode("\n", $my_array);
natcasesort($my_array);
foreach($my_array as $key = $value)
echo strrev($value)." br /"; //print the array elements

}

?

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Speak Any Foreign Language? [email protected] USA & Canada 0 August 25th, 2005 07:09 AM
It´s important to learn a language arnego2 Caribbean 0 April 1st, 2004 08:43 PM
what language is most useful to learn? forgotten field Europe 25 March 7th, 2004 12:21 AM
Foreign Language Translators alohacyberian USA & Canada 0 February 6th, 2004 03:38 AM
Learn Foreign Languages Online Free Rodolfo Latin America 0 October 19th, 2003 04:05 PM


All times are GMT +1. The time now is 07:54 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 TravelBanter.
The comments are property of their posters.