This file contains hidden or 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
(function(){$.FroalaEditor.LANGUAGE.id={translation:{"Type something":"Ketik sesuatu",Bold:"Tebal",Italic:"Miring",Underline:"Garis bawah",Strikethrough:"Coret",Insert:"Sertakan",Delete:"Hapus",Cancel:"Batal",Back:"Kembali",Remove:"Hapus",More:"Lebih",Update:"Ubah",Style:"Style","Font Family":"Jenis Huruf","Font Size":"Ukuran Huruf",Colors:"Warna",Background:"Latar belakang",Text:"Text","Paragraph Format":"Format",Normal:"Normal",Code:"Kode","Heading 1":"Header 1","Heading 2":"Header 2","Heading 3":"Header 3","Heading 4":"Header 4","Paragraph Style":"Paragraf","Inline Style":"Inline",Align:"Rata","Align Left":"Rata kiri","Align Center":"Rata tengah","Align Right":"Rata kanan","Align Justify":"Justify",None:"None","Ordered List":"List nomor","Unordered List":"List simbol","Decrease Indent":"Kurangi inden","Increase Indent":"Tambah inden","Insert Link":"Sertakan link","Open in new tab":"Buka di tab baru","Open Link":"Buka tautan","Edit Link":"Ubah link",Unlink:"Hapus link","Choose Link":"Pilih link","Insert Ima |
This file contains hidden or 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
/*align*/!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof module&&module.exports?module.exports=function(b,c){return void 0===c&&(c="undefined"!=typeof window?require("jquery"):require("jquery")(b)),a(c),c}:a(jQuery)}(function(a){"use strict";a.FE.PLUGINS.align=function(b){function c(c){b.selection.save(),b.html.wrap(!0,!0,!0),b.selection.restore();for(var d=b.selection.blocks(),e=0;e<d.length;e++)a(d[e]).css("text-align",c).removeClass("fr-temp-div"),""===a(d[e]).attr("class")&&a(d[e]).removeAttr("class");b.selection.save(),b.html.unwrap(),b.selection.restore()}function d(c){var d=b.selection.blocks();if(d.length){var e=b.helpers.getAlignment(a(d[0]));c.find("> *:first").replaceWith(b.icon.create("align-"+e))}}function e(c,d){var e=b.selection.blocks();if(e.length){var f=b.helpers.getAlignment(a(e[0]));d.find('a.fr-command[data-param1="'+f+'"]').addClass("fr-active")}}return{apply:c,refresh:d,refreshOnShow:e}},a.FE.DefineIcon("align",{NAME:"align-left"}),a.FE.DefineIco |
This file contains hidden or 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
/*color*/.clearfix::after{clear:both;display:block;content:""}.fr-popup .fr-colors-tabs{-webkit-box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);-moz-box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);box-shadow:0 1px 3px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);margin-bottom:5px;line-height:16px;margin-left:-2px;margin-right:-2px}.fr-popup .fr-colors-tabs .fr-colors-tab{display:inline-block;width:50%;cursor:pointer;text-align:center;color:#222;font-size:13px;padding:8px 0;position:relative}.fr-popup .fr-colors-tabs .fr-colors-tab:hover{color:#1e88e5}.fr-popup .fr-colors-tabs .fr-colors-tab[data-param1=background]::after{position:absolute;bottom:0;left:0;width:100%;height:2px;background:#1e88e5;content:'';-webkit-transition:transform .2s ease 0s;-moz-transition:transform .2s ease 0s;-ms-transition:transform .2s ease 0s;-o-transition:transform .2s ease 0s}.fr-popup .fr-colors-tabs .fr-colors-tab.fr-selected-tab{color:#1e88e5}.fr-popup .fr-colors-tabs .fr-colors-tab.fr-selected-tab[da |
This file contains hidden or 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
.fr-file,.fr-file::after,.fr-video,img{position:relative}.clearfix::after{clear:both;display:block;content:""}table{border:0;border-collapse:collapse;empty-cells:show;max-width:100%}table.fr-dashed-borders td,table.fr-dashed-borders th{border-style:dashed}table.fr-alternate-rows tbody tr:nth-child(2n){background:#f5f5f5}table td,table th{border:1px solid #ddd}table td:empty,table th:empty{height:20px}table td.fr-highlighted,table th.fr-highlighted{border:1px double red}table td.fr-thick,table th.fr-thick{border-width:2px}table th{background:#e6e6e6}hr{clear:both;user-select:none;-o-user-select:none;-moz-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-ms-user-select:none;page-break-after:always}.fr-file::after{content:"\1F4CE";font-weight:400}pre{white-space:pre-wrap;word-wrap:break-word}blockquote{border-left:solid 2px #5e35b1;margin-left:0;padding-left:5px;color:#5e35b1}blockquote blockquote{border-color:#00bcd4;color:#00bcd4}blockquote blockquote blockquote{border-color:#43a047;color:#43a |
This file contains hidden or 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
modifikasiTanggal(tanggalInput) { | |
let tanggal = new Date(tanggalInput); | |
const namaBulan = ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Agu", "Sep", "Okt", "Nov", "Des"]; | |
let hari = tanggal.getDate(); | |
let indexBulan = tanggal.getMonth(); | |
let tahun = tanggal.getFullYear(); | |
return `${hari} ${namaBulan[indexBulan]} ${tahun}`; // return 24 Mei 2016 | |
} |
This file contains hidden or 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
modifikasiTanggal(tanggalInput) { | |
let tanggal = new Date(tanggalInput); | |
const namaBulan = ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Agu", "Sep", "Okt", "Nov", "Des"]; | |
let hari = tanggal.getDate(); | |
let indexBulan = tanggal.getMonth(); | |
let tahun = tanggal.getFullYear(); | |
return `${hari} ${namaBulan[indexBulan]} ${tahun}`; | |
} | |
// Panggil |
This file contains hidden or 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
#noscript{position:absolute;z-index:100;margin-left:-8px;margin-top:-8px;width:100%;height:100%;min-width:800px;text-align:center;overflow:hidden;background-color:#686868;font-family:"SFNSText","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:300;text-rendering:optimizeLegibility;cursor:default;-moz-user-select:-moz-none;-khtml-user-select:none;-webkit-user-select:none;user-select:none;} | |
#noscript div#tanpajs{position:absolute;top:0;left:0;right:0;bottom:0;min-height:500px;} | |
#noscript div#tanpajs div.float-center-gradient{z-index:102;position:absolute;width:100%;height:100%;} | |
#noscript div#tanpajs div.float-center{z-index:103;position:absolute;top:44%;margin-top:-125px;width:100%;height:250px;text-align:center;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;} | |
#noscript div#tanpajs div.float-center img#img-cloud{margin-bottom:25px;}#noscript div#tanpajs div.float-center span.title{color:#fff;font-size:45px;} | |
#noscript div#tanpajs div.float-center span.subtitle{color:#c3c3c3;font-siz |
This file contains hidden or 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
/*align*/!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof module&&module.exports?module.exports=function(b,c){return void 0===c&&(c="undefined"!=typeof window?require("jquery"):require("jquery")(b)),a(c),c}:a(jQuery)}(function(a){"use strict";a.FE.PLUGINS.align=function(b){function c(c){b.selection.save(),b.html.wrap(!0,!0,!0),b.selection.restore();for(var d=b.selection.blocks(),e=0;e<d.length;e++)a(d[e]).css("text-align",c).removeClass("fr-temp-div"),""===a(d[e]).attr("class")&&a(d[e]).removeAttr("class");b.selection.save(),b.html.unwrap(),b.selection.restore()}function d(c){var d=b.selection.blocks();if(d.length){var e=b.helpers.getAlignment(a(d[0]));c.find("> *:first").replaceWith(b.icon.create("align-"+e))}}function e(c,d){var e=b.selection.blocks();if(e.length){var f=b.helpers.getAlignment(a(e[0]));d.find('a.fr-command[data-param1="'+f+'"]').addClass("fr-active")}}return{apply:c,refresh:d,refreshOnShow:e}},a.FE.DefineIcon("align",{NAME:"align-left"}),a.FE.DefineIco |
This file contains hidden or 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
# Red had based distribution | |
sudo yum install -y docker | |
# Debian based | |
sudo apt-get install -y docker | |
FROM node:6 | |
# Argument | |
ENV REPO="https://github.com/${REPO}.git" |
This file contains hidden or 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
#!/bin/bash | |
# gain-ssh-access | |
echo -e "\n" | |
if [ "$1" = "-i" ] ; then | |
echo "Using interactive mode" | |
echo -e "Menulis name dari remote user: \c" | |
read user |
OlderNewer