#!/bin/bash
BASE_PATH=$(dirname $0)
cd ${BASE_PATH}
BASE_PATH=`pwd`
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
{"lastUpload":"2020-05-01T05:22:16.543Z","extensionVersion":"v3.4.3"} |
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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |
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
from keras.models import Sequential | |
from keras.layers import Dense | |
from sklearn.model_selection import train_test_split | |
import pandas as pd | |
import numpy as np | |
import tensorflow as tf | |
seed=0 | |
np.random.seed(seed) |
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 | |
######################################### | |
# Path | |
######################################### | |
BASE_PATH=$(dirname $0) | |
cd ${BASE_PATH} | |
export BASE_PATH=`pwd` | |
export ENV_PATH=/naver/search-env | |
export PACKAGE_PATH=${ENV_PATH}/package |
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
db.getCollection("users").aggregate([ | |
{ | |
$lookup: { | |
localField: 'group.admin.fk', | |
as: 'admin', | |
from: 'permission_group', | |
foreignField: 'groupName' | |
} | |
}, | |
{ $project: { 'admin.groupName': false, 'admin._id': false } }, |
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
db.getCollection("users").aggregate([ | |
{ | |
"$match": { "empNo": "KR00000" } | |
}, | |
{ | |
"$lookup": { | |
"from": "permission_group", | |
"localField": "group.admin.fk", | |
"foreignField": "groupName", | |
"as": "admin" |
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
<form role="form"> | |
<h3>Saving a file with pure JS!</h3> | |
<p>Uses HTML5 W3C saveAs() function and the <a href="https://github.com/eligrey/FileSaver.js" target="_blank">FileSaver.js</a> polyfill for this.<br> | |
I didn't think this was even possible without a server but the docs say it should work in IE 10+, Sweet!</p> | |
<div class="form-group"> | |
<label for="input-fileName">File name</label> | |
<input type="text" class="form-control" id="input-fileName" value="textFile" placeholder="Enter file name"> | |
</div> | |
<div class="form-group"> | |
<label for="textarea">Text</label> |
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 | |
set -e # If Error then exit | |
# Result Print | |
cat << EOF | |
=========================================================== | |
=========================================================== | |
=================== Installation Started ================== | |
=========================================================== | |
=========================================================== |
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
.DS_Store | |
._.DS_Store | |
**/.DS_Store | |
**/._.DS_Store | |
.idea/ | |
**/.idea/ |
NewerOlder