A collector noticed something strange in his collection of 11,000 vintage postcards: Many of them all had the exact same sky.
“I wanna be a paperback writer!”
How to Play Paperback. “You will need some people and a stack of books. The more the merrier.
1. A player presents a paperback novel to the group.
2. The player reads the description on the back of the novel.
3. Everyone listens very carefully and the…
Flash Tuesday Baguette Fun
A Very Long Baguette [SLIO] is a game involving a very long baguette. A 16ft baguette to be precise. You, or you and a friend, must deliver it from the kitchen to the customer, going through the necessarily unnecessarily maze-like restaurant. This is t…
Fun with place name patterns
Peer into the Europe’s past by looking at place names, for example to see the range of Roman conquest of Britain or the historical borders of Poland and Silesia.
“All Killer, No Filler”
detail from cover art from the book Electrical Banana: Masters of Psychedelic ArtSlinga has posted the perfectly wonderful 45 minutes of Funky Old Japanese Soundtracks to chill out to, and we love it.
Theme Week
⁉️ We’re having theme weeks as part of our fundraising month, and the theme for this week is WEIRD SCIENCE! Also currently in Metatalk, Show Us Your View!
Eye Spy
Ojo by Cebolledo (cc by)When I hear a chipmunk chucking I look for the nearby raptor: Lots of lovely, fascinating, relatable, inspiring, unusual, surprising, curious, strange, and amusing insights in this Metatalktail Hour post wherein wittgenstein as…
Get Yer Sinuous Rills While They’re Hot!
The Pleasure Dome of Kubla Khan by Ebenezer Wake CookStately pleasure domes now being decreed and/or erected ➡ This Way.
Give Me Your Glabrous, Your Rugose, Your Shambling Masses …
Statue of Liberty by Stina Stockholm (cc by-nc-nd)Halloween Jack on the Statue, amid many other unsettling thread remarks (brrrr!) in signsofrain’s post reminiscing about how we worshipped the husk.Enjoy! Or dip in as a palate cleanser between y2karl’s…
Having fun with jquery — Numbers to words
Having some fun with jquery, its cool btw…
Type in some numbers in the input box, (it should be in focus when u load this page, if not well u know who to blame – jquery of course, not me :-P)
And if you (un)knowingly type in something other than a number, it should tell you whats wrong.
Then click “Convert to words” and you’ll get your number in words… one in Indian number system and another one in international standard. And, if you are really trying this out, you can use keyboard enter, escape.. i bound them to calculate and hide the results etc.
Just some plain short fun 🙂
And yeah, of course, here’s the code (use this link to convert ur javascript into blogger friendly code):
http://abhi-sanoujam-blogspot-posts.googlecode.com/svn/trunk/js/jquery-1.3.2.min.js
<script type="text/javascript">
function NumberToWords() {
var units = [ "Zero", "One", "Two", "Three", "Four", "Five", "Six",
"Seven", "Eight", "Nine", "Ten" ];
var teens = [ "Eleven", "Twelve", "Thirteen", "Fourteen", "Fifteen",
"Sixteen", "Seventeen", "Eighteen", "Nineteen", "Twenty" ];
var tens = [ "", "Ten", "Twenty", "Thirty", "Forty", "Fifty", "Sixty",
"Seventy", "Eighty", "Ninety" ];
var othersIndian = [ "Thousand", "Lakh", "Crore" ];
var othersIntl = [ "Thousand", "Million", "Billion", "Trillion" ];
var INDIAN_MODE = "indian";
var INTERNATIONAL_MODE = "international";
var currentMode = INDIAN_MODE;
var getBelowHundred = function(n) {
if (n >= 100) {
return "greater than or equal to 100";
};
if (n <= 10) {
return units[n];
};
if (n <= 20) {
return teens[n - 10 - 1];
};
var unit = Math.floor(n % 10);
n /= 10;
var ten = Math.floor(n % 10);
var tenWord = (ten > 0 ? (tens[ten] + " ") : '');
var unitWord = (unit > 0 ? units[unit] : '');
return tenWord + unitWord;
};
var getBelowThousand = function(n) {
if (n >= 1000) {
return "greater than or equal to 1000";
};
var word = getBelowHundred(Math.floor(n % 100));
n = Math.floor(n / 100);
var hun = Math.floor(n % 10);
word = (hun > 0 ? (units[hun] + " Hundred ") : '') + word;
return word;
};
return {
numberToWords : function(n) {
if (isNaN(n)) {
return "Not a number";
};
var word = '';
var val;
val = Math.floor(n % 1000);
n = Math.floor(n / 1000);
word = getBelowThousand(val);
if (this.currentMode == INDIAN_MODE) {
othersArr = othersIndian;
divisor = 100;
func = getBelowHundred;
} else if (this.currentMode == INTERNATIONAL_MODE) {
othersArr = othersIntl;
divisor = 1000;
func = getBelowThousand;
} else {
throw "Invalid mode - '" + this.currentMode
+ "'. Supported modes: " + INDIAN_MODE + "|"
+ INTERNATIONAL_MODE;
};
var i = 0;
while (n > 0) {
if (i == othersArr.length - 1) {
word = this.numberToWords(n) + " " + othersArr[i] + " "
+ word;
break;
};
val = Math.floor(n % divisor);
n = Math.floor(n / divisor);
if (val != 0) {
word = func(val) + " " + othersArr[i] + " " + word;
};
i++;
};
return word;
},
setMode : function(mode) {
if (mode != INDIAN_MODE && mode != INTERNATIONAL_MODE) {
throw "Invalid mode specified - '" + mode
+ "'. Supported modes: " + INDIAN_MODE + "|"
+ INTERNATIONAL_MODE;
};
this.currentMode = mode;
}
}
}
function clear() {
$("#errSpan").hide();
$("#resultDiv").hide();
}
var num2words = new NumberToWords();
function translate() {
clear();
var input = $("#input").val();
if (isNaN(input)) {
$("#errSpan").html("This is not a number - " + input);
$("#errSpan").show();
$("#input").focus();
return;
};
num2words.setMode("indian");
var indian = num2words.numberToWords(input);
num2words.setMode("international");
var intl = num2words.numberToWords(input);
$("#resultDiv").html(
"<table bgcolor='#CCFFFF'><tr><td>In India</td><td>" + indian
+ "</td></tr><tr><td>Internationally</td><td>" + intl
+ "</td></tr></table>");
$("#resultDiv").show("slow");
}
$(document).ready( function() {
$("#resultDiv").hide();
$("#input").focus();
$(document).keypress( function(e) {
if (e.keyCode == 27) {
clear();
};
if (e.keyCode == 13) {
translate();
};
});
});
</script>
<div id="content" align="center">[you can use enter and escape]<br />
<span id="errSpan" style="color: #FF0000;"></span>
<div>Enter a number: <input id="input" type="text" size="15" /><input
type="button" onclick="translate()" value="Convert to words" /></div>
<div id="resultDiv" style="border: solid black 1px;"></div>
</div>