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
_ __ _ __ __ __ | |
| | / /___ _____ __ _____ / | / /__ / /__ ______ _____/ /_______ | |
| | / / __ `/ __ `/ | / / _ \ / |/ / _ \/ __/ | /| / / __ \/ ___/ //_/ ___/ | |
| |/ / /_/ / /_/ /| |/ / __/ / /| / __/ /_ | |/ |/ / /_/ / / / ,< (__ ) | |
|___/\__,_/\__,_/ |___/\___/ /_/ |_/\___/\__/ |__/|__/\____/_/ /_/|_/____/ | |
______ ______ __ __ | |
/_ __/__ ____ _____ ___ / ____/___ / /_ ___ ________ ____ ____/ /___ | |
/ / / _ \/ __ `/ __ `__ \ / / / __ \/ __ \/ _ \/ ___/ _ \/ __ \/ __ /_ / | |
/ / / __/ /_/ / / / / / / / /___/ /_/ / / / / __/ / / __/ / / / /_/ / / /_ |
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
git log \ | |
--color \ | |
--decorate \ | |
--all \ | |
--graph \ | |
--pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' \ | |
--abbrev-commit |
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
function showPreview(event){ | |
if(event.target.files.length > 0){ | |
var src = URL.createObjectURL(event.target.files[0]); | |
var preview = document.getElementById("file-ip-1-preview"); | |
preview.src = src; | |
preview.style.display = "block"; | |
} |
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
<?php | |
// ref: https://stackoverflow.com/questions/557959/ | |
$mils = round(microtime(true) * 1000); | |
$sec = ceil($mils / 1000); | |
echo date("D M d Y H:i:s",$sec); | |
echo " ---> "; | |
echo $mils; |
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
// | |
# | |
<!--> | |
/**/ |