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
<!-- 실험실 --> | |
<html> | |
<head> | |
<style> | |
body { | |
margin: 0; | |
} | |
div { |
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
<!doctype html> | |
<html> | |
<head> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/index.min.js"></script> | |
</head> | |
<body> | |
<div id="s_table"></div> | |
<div id="s_line"></div> | |
<div id="d_table"></div> |
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 | |
$start = microtime(true); | |
$options = [ 'cost' => $_GET['cost'] ]; | |
$hash = password_hash('hi', PASSWORD_DEFAULT, $options); | |
$ip = $_SERVER['REMOTE_ADDR']; | |
echo $ip.' => '.$hash.' : '.(microtime(true)-$start); | |
?> |
sudo apt update;
sudo apt install apache2 php;
sudo service apache2 restart;
표로 된 데이터를 분석하고 가공하기 위한 JavaScript 라이브러리 입니다.
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/bundle.min.js"></script>
Danfo.js는 두가지 데이터 형식을 가지고 있습니다.
- Seriese : 1차원 배열
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
############################################################################ | |
# # | |
# ------- Useful Docker Aliases -------- # | |
# # | |
# # Installation : # | |
# copy/paste these lines into your .bashrc or .zshrc file or just # | |
# type the following in your current shell to try it out: # | |
# wget -O - https://gist.githubusercontent.com/jgrodziski/9ed4a17709baad10dbcd4530b60dfcbb/raw/d84ef1741c59e7ab07fb055a70df1830584c6c18/docker-aliases.sh | bash | |
# # | |
# # Usage: # |