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
import urllib.request | |
import time | |
import os | |
# 네이버 구찌 검색 url | |
url_base = 'https://search.naver.com/search.naver?date_from=&date_option=0&date_to=&dup_remove=1&nso=&post_blogurl=&post_blogurl_without=&query=%EA%B5%AC%EC%B0%8C&sm=tab_pge&srchby=all&st=sim&where=post&start=' | |
folder_dir = '구찌' | |
os.makedirs(folder_dir) |
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
import tensorflow as tf | |
import numpy as np | |
import time | |
from tensorflow.contrib.rnn import BasicLSTMCell | |
N = 1 | |
L = 500 | |
d = 10 | |
k = 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
# On ubuntu 14.04 | |
sudo apt-get update | |
sudo apt-get install -y linux-image-extra-`uname -r` linux-headers-`uname -r` linux-image-`uname -r` | |
mkdir tmp | |
cd tmp | |
# CUDA | |
wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64/cuda-repo-ubuntu1404_7.5-18_amd64.deb |
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
sudo apt-get install zlib1g-dev libsqlite3-dev libssl-dev tk-dev libbz2-dev |
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
#!/bin/bash | |
# Put this in bin folder and then: | |
# chmod +x imgcat | |
# From: https://raw.githubusercontent.com/gnachman/iTerm2/master/tests/imgcat | |
# tmux requires unrecognized OSC sequences to be wrapped with DCS tmux; | |
# <sequence> ST, and for all ESCs in <sequence> to be replaced with ESC ESC. It | |
# only accepts ESC backslash for ST. | |
function print_osc() { |
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
brew install swig | |
brew install cmake | |
brew install boost boost-python sdl2 |
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
1. Install brew | |
2. Install iterm | |
3. Install fish shell, mosh (brew install fish, mobile-shell) | |
4. Displays: scaled, change font size | |
5. Keyboard: repeat -> short and fast, F1, F2 as function keys | |
6. Install PyCharm, OneNote, Slack, KakaoTalk, GitHub Desktop, | |
7. brew install python3 | |
8. Install pip: https://pip.pypa.io/en/stable/installing/ | |
9. pip3 install jupyter | |
10. pip3 install matplotlib |
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
alias python python3 | |
alias pip pip3 | |
set vs2 [email protected] | |
set vs3 [email protected] |
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
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/cuda/lib64" | |
export CUDA_HOME="/usr/local/cuda" | |
export PATH="$HOME/torch/install/bin/th:$PATH" | |
export JAVA_HOME="$HOME/jdk/jdk1.8.0_74" | |
export PATH="$JAVA_HOME/bin:$PATH" | |
alias python=python3.5 | |
alias pip=pip3.5 | |
git config credential.helper 'cache --timeout=3600' |
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
#!/usr/bin/env python | |
""" | |
-------------------------------------------------------------------------------- | |
This code is modified version of: | |
https://github.com/eBay/bayesian-belief-networks/blob/master/bayesian/examples/bif/bif_parser.py. | |
NOTE: regex pattern of this parser is sensitive to spaces (will be fixed soon). | |
The output json file can be iterated with the following pseudo-code (d is the loaded json): | |
variables = d['variables'] |
NewerOlder