표로 된 데이터를 분석하고 가공하기 위한 JavaScript 라이브러리 입니다.
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/bundle.min.js"></script>
Danfo.js는 두가지 데이터 형식을 가지고 있습니다.
- Seriese : 1차원 배열
############################################################################ | |
# # | |
# ------- 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: # |
표로 된 데이터를 분석하고 가공하기 위한 JavaScript 라이브러리 입니다.
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/bundle.min.js"></script>
Danfo.js는 두가지 데이터 형식을 가지고 있습니다.
sudo apt update;
sudo apt install apache2 php;
sudo service apache2 restart;
<?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); | |
?> |
<!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> |
<!-- 실험실 --> | |
<html> | |
<head> | |
<style> | |
body { | |
margin: 0; | |
} | |
div { |
git 을 공부하다보면 테스트를 해야 할 때가 많습니다. 커밋을 많이 만들어야 하는데요. 이게 참 귀찮은 일이에요. 그래서 쉘스크립트로 커밋을 자동으로 만들어주는 코드를 간단히 만들어봤습니다. (쉘스크립트는 잘 몰라서 능력자 분들이 더 좋은 코드로 발전시켜주시면 잘 쓰겠습니다. ㅎㅎ)
실행할 때마다 git_ac라는 변수의 값을 1씩 증가 시켜줍니다.
if [ -v git_ac ]; then git_ac=$(($git_ac+1)); else git_ac=1; fi;
step2+ work.txt 파일의 끝에 git_ac의 값을 추가합니다. 교체하고 싶으면 >>를 >로 변경하면 됩니다.
if [ -v git_ac ]; then git_ac=$(($git_ac+1)); else git_ac=1; fi; echo $git_ac >> work.txt