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
<center> | |
<table border="1" width="600" cellspacing="0" cellpadding="4"> | |
<tbody> | |
<tr> | |
<td colspan="2" valign="top" height="40"> | |
<center>MIDLE TEST</center> | |
</td> | |
</tr> | |
<tr> | |
<td width="200"> |
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
export NODE_OPTIONS=--max-old-space-size=8192 |
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
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package latihan; | |
/** | |
* | |
* @author Bagus |
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
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package latihan; | |
/** | |
* | |
* @author Bagus |
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
// Functionnya | |
function getImage(url) { | |
return new Promise(function(resolve, reject) { | |
var img = new Image(); | |
img.onload = function() { | |
resolve(url); | |
}; | |
img.onerror = function() { | |
reject(url); | |
}; |
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
let config = { | |
onUploadProgress: progressEvent => { | |
let percentCompleted = Math.floor((progressEvent.loaded * 100) / progressEvent.total); | |
// do whatever you like with the percentage complete | |
// maybe dispatch an action that will update a progress bar or something | |
} | |
} | |
axios.post('/path/to/post/', data, config) | |
.then(response => console.log(response)); |
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
setTimeout(function(){ | |
businessIllustration.removeClass("out"); | |
setTimeout(function () { | |
// Logo In to Canvas Editor | |
logo.removeClass("out"); | |
setTimeout(function () { | |
// Logo in to Canvas Editor | |
businessName.removeClass("out"); | |
setTimeout(function () { | |
// Transition transorm set -40% left and right title |
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 canvas = document.querySelector("#logo-40 canvas"); | |
var detail = { | |
icon: { | |
src: "./svg/icon-3.svg", | |
x: 186, | |
y: 84, | |
width: 192, | |
height: 164, | |
color_1: "#111111", |
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 MarketingCommunication = function(elem){ | |
i = 0; | |
setInterval(function(){ | |
var current = i; | |
var before = (current - 1) == -1 ? (elem.length - 1) : (current - 1); | |
var after = current + 1; | |