View crontab
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
*/10 * * * * /usr/bin/git -C /Users/hyeonseok/repo/makina-runway-product-site/www pull >> ~/Desktop/cron_log.txt 2>&1 |
View brute_force_pdf.py
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
# https://www.thepythoncode.com/article/crack-pdf-file-password-in-python | |
import pikepdf | |
from tqdm import tqdm | |
# load password list | |
passwords = [] | |
for y in range(70, 99): | |
for m in range(1, 12): | |
for d in range(1, 31): |
View Date.toThings.js
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
// https://twitter.com/umaar/status/1205249225962995717 | |
Object.getOwnPropertyNames(Date.prototype) | |
.filter(name => name.startsWith('to')) | |
.map(method => `${method}: ${(new Date())[method]()}`) | |
/* | |
0: "toUTCString: Fri, 13 Dec 2019 03:39:10 GMT" | |
1: "toLocaleString: 2019. 12. 13. 오후 12:39:10" | |
2: "toLocaleDateString: 2019. 12. 13." |
View Scene.js
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
/* | |
#scenes .scene.animate{transition: left 0.7s;} | |
#scenes .scene.in{left:0;} | |
#scenes .scene.left{left:-100%;} | |
#scenes .scene.right{left:100%;} | |
*/ | |
var Scene = (function () { | |
var scenes = []; | |
var sceneSequence = '0'; |
View base.css
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
/* reset */ | |
html { | |
-webkit-text-size-adjust: 100%; | |
} | |
button { | |
-webkit-tap-highlight-color: rgba(255,255,255,0); | |
-webkit-tap-highlight-color: transparent; | |
outline: 0 none; | |
} | |
button::-moz-focus-inner { |
View today.js
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
const now = new Date(); | |
const YMD = `${now.getFullYear()}-${`0${now.getMonth() + 1}`.slice(-2)}-${`0${now.getDate()}`.slice(-2)}`; | |
const His = `${now.getHours()}:${now.getMinutes()}:${now.getSeconds()}` |
View console.log.to.div.html
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
<div id="trace" style="position: absolute; z-index: 99999; top: 0; right: 0; border: 2px solid #0c0; background: #fff; color: #0c0; font: 11px monospace;"></div> | |
<script> | |
var console = { | |
log: function trace() { | |
var msg = Array.prototype.slice.call(arguments).join(' '); | |
document.getElementById('trace').innerHTML += msg.toString() + '<br>'; | |
} | |
} | |
console.log(navigator.userAgent); | |
</script> |
View setPhotoSize.js
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
_setPhotoSize: function($image) { | |
var cropPortion = 1.2, | |
imageWidth = $image.width(), | |
imageHeight = $image.height(), | |
imageRatio = imageWidth / imageHeight, | |
windowWidth = LayoutManager().getScreenWidth(), | |
windowHeight = LayoutManager().getScreenHeight(), | |
windowRatio = windowWidth / windowHeight, | |
width, height, top = 0, left = 0; |
View layerOpen.js
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
// TODO: Add complete HTML document. | |
$layer: $('.layer'), | |
$button: $('.button'), | |
_initialize: function() { | |
$(document).on('click', this._onClick.bind(this)); | |
}, | |
_onClick: function(event) { |
View AddCommaToNumber.js
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
'1234567890.1234567890'.replace(/\B(?=(?=\d*\.)(\d{3})+(?!\d))/g, ','); |
NewerOlder