Skip to content

Instantly share code, notes, and snippets.

@ox1111
ox1111 / test.py
Last active October 11, 2017 03:04
import urllib
print test
@ox1111
ox1111 / quasi RNN구현체.git
Created October 12, 2017 00:08
quasi RNN구현체
https://github.com/salesforce/pytorch-qrnn
quasi RNN구현체
https://arxiv.org/abs/1611.01576
속도향상은 nvidia cudnn쪽을 cupy바꿔서 달성
@ox1111
ox1111 / leveldb.py
Created October 13, 2017 02:00
leveldb 사용하기
#
#
# write by kyoung chip ,jang
#
#
#
import leveldb
class CDbManager :
@ox1111
ox1111 / bitcon_transactions_structs.git
Created October 13, 2017 02:25
bitcon transactions structs
#
# write by kyoung chip , jang
#
---- address.address = 1KPSq3Mhs9MKaR3CMAEBv4C9juLkyYPLnY
|
| address.hash160 = c9b0f9c33ebf1cb8adbb9bddde6b8b181822d8d2
| address.final_balance = 1097614
| address.n_tx = 3
| address.total_received = 1097614
@ox1111
ox1111 / CFileWrite.py
Last active April 2, 2019 00:47
file write
# -*- coding: utf-8 -*-
#
# write by kyoung chip , jang
#
# python 3.6
#
#
class CFileWrite :
@ox1111
ox1111 / directory_maker.py
Last active February 16, 2023 22:44
make directory
# -*- coding: utf-8 -*-
#
# write by kyoung chip , jang
#
# python 3.6
#
# ubuntu : python3 directory_maker.py test333/test1212
# windows : python3 directory_maker.py test111\test777
#
import os
@ox1111
ox1111 / file_write.py
Last active April 2, 2019 00:25
file wirte ][ 추상클래스 사용하기
# -*- coding: utf-8 -*-
#
# write by kyoung chip , jang
#
# python 3.6
#
#
from abc import *
@ox1111
ox1111 / fileattr.py
Last active October 16, 2017 11:56
파일 속성 가져오기
# -*- coding: utf-8 -*-
#
# write by kyoung chip , jang
#
# python 3.6
#
import hashlib
import sys
import os
import time
@ox1111
ox1111 / hello.rs
Created October 17, 2017 05:51
hello world 찍기
//
// write by kyoung chip
//
// install
//
// curl -sSf https://static.rust-lang.org/rustup.sh | sh
//
// rustc hello.rs
// ./hello
//