This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWS Database Migration Service Adds Support for AWS CloudFormation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var out = "javascript:function sC(n,v,c){var elms=document.getElementsByTagName('input');for(ind in elms){o=elms[ind];if(o.name==n && o.value==v){o.checked=c;}}}function sI(n,v,c){var elms=document.getElementsByTagName('input');for(ind in elms){o=elms[ind];if(o.name==n){o.value=v;o.checked=c;}}}function sO(v){var elms=document.getElementsByTagName('option');for(ind in elms){o=elms[ind];if(o.value==v){o.selected='selected'}}}function sT(n,v){var elms=document.getElementsByTagName('textarea');for(ind in elms){o=elms[ind];if(o.name==n){o.value=v;}}}"; | |
var elms, ind, o; | |
elms = document.getElementsByTagName('input'); | |
for (ind in elms) { | |
o = elms[ind]; | |
if (o.type == "hidden") { | |
continue; | |
} else if ((o.type == "checkbox" || o.type == "radio") && o.name && o.value) { | |
out += "sC('" + o.name + "','" + encodeURIComponent(o.value) + "'," + o.checked + ");"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var divs = document.getElementsByTagName('div'); | |
var mode = Math.floor(Math.random() * 2); | |
for (var i = 0; i < divs.length; i++){ | |
var delay = Math.random() * 1000; | |
var d = divs[i]; | |
setTimeout(function(d) { | |
if (d){ | |
var t = Math.floor(Math.random() * 2000 + 1000); | |
d.style.transition = "all " + t +"ms ease-in"; | |
var deg = Math.random() * 30 - 15; |