Please wait until the page has completely loaded.
As some iframes (inline frames), gadgets and widgets and other items have to download, please be patient.
The page may have to be reloaded/refreshed.
Refresh/Reload via the right-click menu.








TABLE A

Find the Weather for any City, State or ZIP Code,
or three- or four-letter Airport Code or Country:
http://www.wunderground.com/

Find the Weather for any City, State or Zipcode, or Country
Temperature Converter.
F - Fahrenheit (English Units)
C - Celsius, Centigrade (Metric Units)
Note: -40F = -40C.

Enter data in either field, then click outside the text box.

F: C:

Search any site in any language straight from here!
Help tip:
Let's assume we're looking for movies made in 1914, enter 1914 in the first box
and in the second box (any_domain) type imdb.com and press Search in.
The Google search results will open in a new window
and each link there will take you to the main site http://www.imdb.com/

If you want only a general search with no particular site in mind, in the second field (any_domain) just type about:blank or about:Tabs

The following 'bidirectional' calculator can handle JavaScript Math.
For example, enter Math.pow(2, 5), which really means 2 raised to the 5th power.
The 5th root of 32 is expressed as Math.pow(32, 1/5)

2 + 3      2 -3      2 * 3      2 / 3

Click anywhere outside the boxes for the answers.

View more information alongside on the right.

Input: = Output:


Friday 12:56 PM PDT 10/2/2009 MMIX October 02

JavaScript Test Window
Leave out the opening <script> and the end </script> tags!

Try some examples.
You can type or copy and paste in the top text box.
Then press the Execute button.
The results will be shown in the bottom text box.

Watch out for the alert boxes!
A javascript alert box is a simple window or dialog box
that pops-up with a message and an 'OK' button.
You can get rid of it by clicking on the OK button
or by hitting/pressing the enter key (or the return key)
or by acknowledging it with a tap on the spacebar (space bar or space key).

Clear or reset before every operation.

16*16
alert(Math.PI)
Math.pow(16, 2)
alert(Math.log(30)/Math.log(10))

alert(Date())
alert(new Date())
alert(new Date().toLocaleString())
alert(new Date().toGMTString())
alert(document.lastModified)

alert("WHENAS in silks my Julia goes\nThen,then (methinks) how sweetly flows\nThat liquefaction of her clothes.\n\nNext,when I cast mine eyes and see\nThat brave vibration each way free;\nOh how that glittering taketh me!\n\n- R. Herrick\n\n<A HREF='http://bartleby.com/106/93.html' TARGET='_blank'>http://bartleby.com/106/93.html</A>)")

But

document.write('hiya, howdy!')
document.write(document.lastModified)

document.write("WHENAS in silks my Julia goes<BR>Then, then (methinks) how sweetly flows<BR>That liquefaction of her clothes.<P>Next, when I cast mine eyes and see <BR>That brave vibration each way free;<BR>Oh how that glittering taketh me!<P>- R. Herrick<P><A HREF='http://bartleby.com/106/93.html' TARGET='_blank'>http://bartleby.com/106/93.html</A></P>")

will land you on a new page
and you will have to use the back button
to get back!

Have fun!






Perhaps you already know that the common logarithm values can be found by using the natural logarithm. Take a look at this:

<script>
document.write("log 30 to base 10 = " + Math.log(30)/Math.log(10))
</script>

Add or Addition: +

Subtract or Subtraction: - (the dash or hyphen)

Multiply or Multiplication: * (the asterisk)

Divide or Division: / (the forward slash)

w3schools.com - JavaScript Math Object
echoecho.com - JavaScript Objects :MATH OBJECT
JavaScript Math - Google Search Results
JavaScript Math - Bing Search Results
JavaScript Math - Yahoo! Search Results

More links to math at the end. Please scroll down.

What Methods and Constants are available with the Math object?
The Math object holds useful methods and constants to use in mathematical calculations. These methods and constants can be substituted in your javascript wherever numerical values are allowed. The Math object is pre-defined so does not need to be defined before use. The methods available with the Math object are:

Math.abs(number) absolute value
Math.acos(number) arc cosine (in radians)
Math.asin(number) arc sine (in radians)
Math.atan(number) arc tangent (in radians)
Math.cos(num_radians) cosine
Math.sin(num_radians) sine
Math.tan(num_radians) tangent
Math.ceil(number) smallest integer >= number
Math.floor(number) largest integer <= number
Math.exp(number) e to the power of number
Math.log(number) natural log of number
Math.pow(base,exponent) base to exponent power
Math.max(number,number) greater of the two numbers
Math.min(number,number) smaller of the two numbers
Math.round(number) rounds the number to the nearest integer
Math.sqrt(number) finds the square root of the number
The Math object also defines a number of useful constants (approximate values indicated).

Math.PI pi (3.14159...)
Math.E e (2.718...)
Math.LN2 natural log of 2 (0.693...)
Math.LN10() natural log of 10 (2.302...)
Math.LOG10E() base 10 log of e (0.434...)
Math.SQRT1_2() square root of 1/2 (0.707...)
Math.SQRT2 square root of 2 (1.414...)



Constants and Power Functions:

Math.E -- 2.718281828459045(The base of the natural log system)

Math.LN10 -- 2.302585092994046(Natural logarithm of 10)

Math.LN2 -- 0.6931471805599453(Natural logarithm of 2)

Math.PI -- 3.141592653589793(Ratio of circle circumference to diameter)

Math.SQRT1_2 -- 0.7071067811865476(Square root of 1/2)

Math.SQRT2 -- 1.4142135623730951(Square root of 2)


Math.sqrt(x) Square root of x
Math.pow(x, n) Returns x to the power of n
Math.log(n) Returns the natural logarithm of n
Math.exp(n) Returns e to the power of n


Trigonometric Functions:


Math.cos(x) Cosine of x
Math.sin(x) Sine of x
Math.tan(x) Tangent of x
Math.acos(y) Inverse cosine of y
Math.asin(y) Inverse sine of y
Math.atan(y) Inverse tangent of y

Note: The x parameter and the return values of the inverse functions are all in radians (PI

radians = 180 degrees).


Rounding Functions and Random Numbers:


Function Description 0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1



Math.round(x) Rounds to the nearest integer 0 0 0 0 0 1 1 1 1 1 1
Math.floor(x) Rounds down to the nearest integer 0 0 0 0 0 0 0 0 0 0 1
Math.ceil(x) Rounds up to the nearest integer 0 1 1 1 1 1 1 1 1 1 1
Math.random() Random value between 0 and <1
Math.min(a, b, c) Returns the lowest value from list
Math.max(a, b, c) Returns the highest value from list

 

 


Math - Google Search Results
Mathematics - Google Search Results
Mathematics Math - Google Search Results
Arithmetic - Google Search Results
Algebra - Google Search Results
Geometry - Google Search Results
Trigonometry - Google Search Results
JavaScript Arithmetic - Google Search Results
JavaScript Algebra - Google Search Results
JavaScript Geometry - Google Search Results
JavaScript Trigonometry - Google Search Results
Identities and Equations - Google Search Results
JavaScript Identities and Equations - Google Search Results

Great handy tools -- free

1. MioPlanet Pixel Ruler
http://www.mioplanet.com/products/pixelruler/
2. Easy Text To HTML Converter
http://www.easyhtools.com/
3. Easy HTML To Any Script Converter
http://www.easyhtools.com/
4. Auto Window Manager
http://www.eusing.com/WindowManager/Wi ndowManager.htm
5. Quick StartUp
http://www.glarysoft.com/quick- startup/
6. NoteTab Light
http://www.notetab.com/
7. Jarte http://www.jarte.com/
8. T-Box - the "Test Box" AKA "T-Box"
http://www.openjs.com/tutorials/basic_tutorial/
9. Very useful!
Description of the Windows Installer CleanUp Utility
http://support.microsoft.com/default.aspx?kbid=290301
Download Windows Installer CleanUp Utility
http://support.microsoft.com/default.aspx?kbid=290301#
10. AccuWeather Forecast for Any Five (5) Locations of Your Choice!
Customizable. Make sure that cookies are enabled in your browser
as otherwise your cities will revert to or
be replaced by the initial default locations.
Click a city to see all the amazing information you can get,
including astronomy.
http://regumrex.org/aw5.html
11. Online Spelling, Grammar, and Thesaurus checking -- Many languages
http://regumrex.org//spch.html



Not in alphabetical order

Cognates (allied, associated or related sites and pages):
http://regumrex.org/
http://regumrex.org/123.html
http://regumrex.org/colorwheel.html
http://regumrex.org/cw.html
http://regumrex.org/cw1.html
http://holdall3.tripod.com/Color.html
http://regumrex.org/colors.html
http://www.angelfire.com/linux/bodiles69/FontControlCode.html
>> ==
http://regumrex.org/fcc.html
>> ==
http://regumrex.org/FontControlCode.html
http://www.angelfire.com/linux/bodiles69/FONTCODEtext.txt
You can see the font control code in action here:
http://regumrex.org/font.html
>> ==
http://regumrex69.250free.com/font.html
>> ==
http://regumrex.org/langdix.html
http://www.angelfire.com/linux/gopalfamily/ColorNamesList.html

For a shorter and simplified version of
http://regumrex.org/
please go to:
http://regumrex.org/insta.html
http://regumrex.org/quix.html



Mnemonic for the sine, the cosine and the tangent of an angle.
Remember this sentence and the first letter of every word:
Some Optimistic Hill Climbers Ascended Himalayas To Olympic Altitudes.
Sine = Opposite side/Hypotenuse
Cosine = Adjacent side/Hypotenuse
Tangent = Opposite side/Adjacent side.





Added on Sunday 12:35 PM 8/16/2009




Type in the text you wish to locate on this page:

    


Would you like to add a site search box like the one above to your Web site (webpage)?

This box acts or functions exactly like Ctrl+F or Edit > Find on this Page...

Please copy the code in the textarea below and paste it.













$$$$$$$$$$$$$$$$$$$$$










• The Internet Archive, a nonprofit founded to build an Internet library and archive the public Web. See details or submit your site for indexing!
Browse through over 150 billion web pages archived from 1996 to a few months ago.
Internet Archive: The Wayback Machine
http://www.archive.org/web/web.php
http://www.archive.org/index.php



COLOR HELP TOOLS LINKS:

Cognates of regumrex.org (related or associated links):
http://regumrex.org/
http://regumrex.org/cw.html
http://regumrex.org/cw1.html
http://regumrex.org/fc.html
http://regumrex.org/fc1.html
http://regumrex.org/gebid.html
http://regumrex.org/colorchooser.html







Thursday 5:43 AM PDT 8/6/2009 MMIX August 06

Friday 5:26 AM PDT 8/7/2009 MMIX August 07








To call up your default emailer any time, copy and paste this JavaScript code in the address bar of your browser (Internet Explorer) and hit Enter.

This is all one line of code with no line breaks.

Javascript:selectedText=document.selection.createRange().text;selectedText=escape(selectedText);void(location.href='mailto:?BODY='+selectedText);


Reference:

http://webdeveloper.earthweb.com/webjs/jsutility/item.php/877381
http://webdeveloper.earthweb.com/repository/javascripts/2007/05/877381/CopyScript.html






http://www.onelook.com/


Internet Explorer (IE):

When you click one of these two links, you will encounter an alert:
"This website is using a scripted window to ask you for information. If you trust this website, click here to allow scripted windows..."

Click Temporarily Allow Scripted Windows.

The prompt box usually appears at top left of your screen.

Enter your search word in the prompt field.

Mozilla Firefox:

No problem as far as I could see.


For search results to open in the same window:

OneLook.com Dictionaries


For search results to open in a new browser window:

OneLook.com Dictionaries




For search results to open in the same window:

<a href="javascript:try{term=document.selection.createRange().text}catch(err){try{term=getSelection()+''}catch(err){}}if(term==''){void(term=prompt('Enter a word or phrase to look up at OneLook:',''))}if(term){location.href='http://www.onelook.com/?loc=bm6&w='+escape(term)}">OneLook.com Dictionaries</a>

For search results to open in a new browser window:


<a href="#" onClick="javascript:try{term=document.selection.createRange().text}catch(err){try{term=getSelection()+''}catch(err){}}if(term==''){void(term=prompt('Enter a word or phrase to look up at OneLook:',''))}if(term){window.open('http://www.onelook.com/?loc=bm6&w='+escape(term))}">OneLook.com Dictionaries</a>










Online Reference
Dictionary, Encyclopedia & more
Word:
Look in: Dictionary & thesaurus
Medical Dictionary
Legal Dictionary
Financial Dictionary
Acronyms
Idioms
Encyclopedia
Wikipedia
Periodicals
Literature
Other languages:
by:




ECTACO Electronic Dictionary Language: Direction:
Into English
From English
Word:



Powered by Foreignword DictSearch
Enter term, select source and target languages and ...      



http://dictionary.reference.com/translate








For any_domain, try

excite.co.uk -- mirror.co.uk -- time.com -- newsweek.com -- nytimes.com -- cnn.com -- imdb.com -- mopo.de -- bild.de -- tiscali.co.uk -- planet.fr (seniorplanet.fr)

In fact, any language site on the World Wide Web or Internet...

The possibilities are endless!

"Why, then the world's mine oyster
Which I with search will open..."

-- With apologies to William Shakespeare(1564–1616)
The Merry Wives of Windsor -- Act II. Scene II.

Shakespeare Merry Wives Windsor the world's mine oyster Pistol:
http://www.google.com/search?q=Shakespeare+Merry+Wives+Windsor+the+world%27s+mine+oyster+Pistol&rlz=1I7CPMA_en&ie=UTF-8&oe=UTF-8&sourceid=ie7




Powered by Google. The search results will take you to the site.

http://www.google.com/sitesearch/











NOTE: Firefox does not seem to be able to handle the following chess links. I could be wrong!

http://www.chess.com/play/computer.html

http://www.answers.com/topic/click-and-drag
Click and drag:
Using a pointing device, such as a mouse, to latch onto an icon on screen and move it to some other location. When the screen pointer is over the icon of the object, the mouse button is clicked to grab it. The button is held down while the object is moved ("dragged") to its destination. Then the mouse button is released.

That's how you move the pieces here.

Play a game and see how smart your Computer is!


The following link will take you to a chess game in progress!

Click on the tab Watch.

You may have to wait for the game to load.

http://skyonline.oberon-media.com/gameshell/app/gameshell.aspx?carrier=-1&channel=110400227&code=110342160&device=-1&lc=en&origin=&refid=&room=4c7cda99-bd9e-41b4-bbae-e12a91ad9302





Added on Saturday 1:28 PM PDT 8/15/2009 MMIX August 15











































Site Meter