View bocket.xml
<?xml version="1.0" encoding="utf-8" ?> | |
<!-- SQL XML created by WWW SQL Designer, https://github.com/ondras/wwwsqldesigner/ --> | |
<!-- Active URL: http://ondras.zarovi.cz/sql/demo/ --> | |
<sql> | |
<datatypes db="mysql"> | |
<group label="Numeric" color="rgb(238,238,170)"> | |
<type label="Integer" length="0" sql="INTEGER" quote=""/> | |
<type label="TINYINT" length="0" sql="TINYINT" quote=""/> | |
<type label="SMALLINT" length="0" sql="SMALLINT" quote=""/> | |
<type label="MEDIUMINT" length="0" sql="MEDIUMINT" quote=""/> |
View bitter.xml
<?xml version="1.0" encoding="utf-8" ?> | |
<!-- SQL XML created by WWW SQL Designer, https://github.com/ondras/wwwsqldesigner/ --> | |
<!-- Active URL: http://ondras.zarovi.cz/sql/demo/ --> | |
<sql> | |
<datatypes db="mysql"> | |
<group label="Numeric" color="rgb(238,238,170)"> | |
<type label="Integer" length="0" sql="INTEGER" quote=""/> | |
<type label="TINYINT" length="0" sql="TINYINT" quote=""/> | |
<type label="SMALLINT" length="0" sql="SMALLINT" quote=""/> | |
<type label="MEDIUMINT" length="0" sql="MEDIUMINT" quote=""/> |
View Invodo-Test.html
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="Invodo Implementation Test"> | |
<meta charset="utf-8"> | |
<title>Invodo Implementation Test</title> | |
<script type="text/javascript" src="//e.invodo.com/4.0/s/developer.invodo.com.js"></script> | |
</head> |
View Invodo-Test.js
Invodo.init({ | |
pageName: "Implementation Demo", | |
pageType: "other", | |
onload: function() { | |
window.onresize = function() { | |
videoResize(); | |
}; | |
videoResize(); | |
View Brello.xml
<?xml version="1.0" encoding="utf-8" ?> | |
<!-- SQL XML created by WWW SQL Designer, https://github.com/ondras/wwwsqldesigner/ --> | |
<!-- Active URL: http://ondras.zarovi.cz/sql/demo/ --> | |
<sql> | |
<datatypes db="mysql"> | |
<group label="Numeric" color="rgb(238,238,170)"> | |
<type label="Integer" length="0" sql="INTEGER" quote=""/> | |
<type label="TINYINT" length="0" sql="TINYINT" quote=""/> | |
<type label="SMALLINT" length="0" sql="SMALLINT" quote=""/> | |
<type label="MEDIUMINT" length="0" sql="MEDIUMINT" quote=""/> |
View herbalife.js
$.getJSON("http://freegeoip.net/json/", function(data) { | |
// We need to evaluate the services for getting JSON - what should happen if this service goes down. We may need to code for that back-up. | |
var country = data.country_name; | |
var ip = data.ip; | |
// alert("country " + country); | |
// alert("IP " + ip); | |
var invodoVideoId = ""; |
View KATA: FizzBuzz
function fizzbuzz() { | |
for(let i=0; i <= 100; i++) { | |
if(i % 15 === 0) { | |
console.log('FizzBuzz'); | |
} else if (i % 5 === 0) { | |
console.log('Fizz'); | |
} else if (i % 3 === 0) { | |
console.log('Buzz'); | |
} else { | |
console.log(i); |
View KATA: Odd, Even, or Prime Number
function oddEven() { | |
for(let i = 1; i <= 100; i++) { | |
if(i % 2 === 0) { | |
console.log('Even'); | |
} else if (i % 2 !== 0 && i % 3 === 0 || i % 9 === 0 || i % 5 === 0){ | |
console.log('Odd'); | |
} else { | |
console.log(i); | |
} | |
} |
View Verizon Samsung Galaxy S8 Interactive Video Embed Code
<iframeallowfullscreen="1" webkitAllowFullScreen id="interactiveExperience" width=720 height=405 class="embed-responsive-item" frameborder="0" src="https://ixd.invodo.com/verizon_embed/galaxy-test-index.html"></iframe> |
View KATA: Welcome!
function greet(language) { | |
var database = { | |
english: "Welcome", | |
czech: "Vitejte", | |
danish: "Velkomst", | |
dutch: "Welkom", | |
estonian: "Tere tulemast", | |
finnish: "Tervetuloa", | |
flemish: "Welgekomen", | |
french: "Bienvenue", |
OlderNewer