Skip to content

Instantly share code, notes, and snippets.

View becxer's full-sized avatar
🎲
Let's play boardgame!

Dr. Seohyun Back becxer

🎲
Let's play boardgame!
View GitHub Profile
@becxer
becxer / CUDA LD_LIBRARY_PATH CONFIG
Last active July 10, 2017 17:13
CUDA LD_LIBRARY_PATH CONFIG
export CUDA_HOME=/usr/local/cuda
export LD_LIBRARY_PATH=${CUDA_HOME}/lib64
PATH=${CUDA_HOME}/bin:${PATH}
export PATH
@becxer
becxer / .gitignore
Created May 30, 2016 15:51
android studio gitignore
# Built application files
/*/build/
# Crashlytics configuations
com_crashlytics_export_strings.xml
# Local configuration file (sdk path, etc)
local.properties
@becxer
becxer / reqdemon.sh
Last active August 29, 2015 14:22
web api auto requester
#!/bin/bash
#
# web api auto requester
#
# @author becxer
# @email [email protected]
#
if [ $# -le 1 ]
then
echo ""
@becxer
becxer / authorize_template
Last active August 29, 2015 14:22
authorize template
#!/bin/bash
#
# usage or description of source code
#
# @ author becxer
# @ e-mail [email protected]
#
@becxer
becxer / plotoss.py
Last active August 29, 2015 14:22
gnuplot wrapper
#!/usr/bin/python
#
# used to make dem for gnuplot script more easier
#
# @author becxer
# @email [email protected]
#
import sys
import os
import subprocess
#!/usr/bin/python
#
# use to check process info logging
# @author becxer
# @email [email protected]
#
import os
import datetime
import time
@becxer
becxer / convert_encoding.sh
Created May 25, 2015 03:39
convert_encoding.sh (convert files encoding batch)
#!/bin/bash
FROM=UTF-16
TO=UTF-8
ICONV="iconv -f $FROM -t $TO"
# Convert
find ./ -type f -name "*.txt" | while read fn; do
cp ${fn} ${fn}.bak
$ICONV < ${fn}.bak > ${fn}
rm ${fn}.bak
done
@becxer
becxer / pydemon
Last active January 27, 2018 20:30
pydemon ( relaunch when detect modified )
#!/usr/bin/python
#
# use to run python program forever
# @author becxer
# @email [email protected]
#
import signal
import sys
import subprocess
import time
@becxer
becxer / algorithm-solving-template.cpp
Last active August 29, 2015 14:14
algorithm solving template for cpp
#include <fstream>
#include <iostream>
#define VERSION "ARGV" //FILE, STDIN, ARGV
using namespace std;
char* INPUT_TEXT = "test.in";
char* OUTPUT_TEXT = "test.out";
int solution(istream& in, ostream& out){
@becxer
becxer / .vimrc
Last active October 22, 2015 17:17
.vimrc (no plugin)
"
" becxer's vim options
"
" @ author becxer
" @ email [email protected]
"
"Customize toggle shortcut
noremap <c-f> :tabNext<cr>
noremap <c-n> :set invnumber<cr> :set list!<cr>