Can you check out the HTML source for the below page?
http://www.naiksblog.info/iframeembed.html
More fun at
After racking my brains for almost 4 days (yeah I am a slow learner) I finally created a simple Javascript string combination generator
See the demo http://naiksblog.info/stringcombinations.html
I tried modeling the logic to how databases combine sets in a cross join. All rows from left side are combined with all rows from right side.
The script is as below
function combine(a, b) {
var r= new Array();
for(var i= 0, k= 0; i < a.length; i++) {
for(var j= 0; j < b.length; j++) {
if(-1==a[i].indexOf(b[j])) r[k++]= a[i]+ b[j];
}
}
return(r);
}
You can call this as below
function permute() {
var a= "abcd";
var p= new Array();
for(var i= 0; i< a.length; i++) p[i]= a.charAt(i);
var r= p; // Input string as-is is first permutation
for(var i= 1; i< a.length; i++) r= combine(r, p); // Get the permutations
// r.length - Get the combinations
// r contains all combinations as an array
}
Some points worth noting
String A= "a string";
String B= "a string";
will point to same string object on heap.System.gc()
finalize
method is invoked only once before being removed from memory. Always call super.finalize()
if you override it.Very often we are impressed with awe when we see a beautiful picture, photo, advert. The colors, their combination presents an alluring view just right for our eyes. If you notice more closer, you can seeing that more often the colors are complemented (red with white, green with blue…) to give a undistracted overall look. This is essentially because our eyes find this visually pleasant.
I have a tool which can offer such combinations, and you should design your color combinations using the suggested patterns
http://9i9.me/colors/index.html/ – For visually stunning color combinations
Keep working!
See top searches coming from Google for おっと (husband) in Japanese
Almost all top suggestions refer to “husband should die”. I wonder what results are returned?
Some see her spinning clockwise, some say anti-clockwise.
More recently, all Secretmyth BDRips I download started to have a audio out of sync with video issue. Real sad, because the movie quality is too good when watching on a 24 inch screen. I use K-Lite, but it seems SecretMyth recommends either KMPlayer or VLC.
The problem solved using VLC.
Japanese language is often interesting, when it comes to dialects. Try out standard Japanese into many other (un)known dialects here.