Skip to content

Instantly share code, notes, and snippets.

View seokbeomKim's full-sized avatar

김석범 (SukBeom Kim) seokbeomKim

View GitHub Profile
@seokbeomKim
seokbeomKim / before-after-zip.sh
Last active July 21, 2022 03:06
vscode scripts
#!/bin/bash
# This is a script to generate a zip file containing changes in a git
# repository. Some customers require zip file of changes without any concerning
# about detail of it, looking into commit messages :(. To make it better, this
# script generates both customer's want and normaal patches.
echo 'Generate a zip-version patch ...'
GIT_ROOT=$(git rev-parse --show-toplevel)
@seokbeomKim
seokbeomKim / compile_tmux.sh
Created September 28, 2021 02:01 — forked from tessus/compile_tmux.sh
compile tmux (static)
#!/bin/bash
TMUX_VERSION=2.3
NCURSES_VERSION=6.0
LIBEVENT_VERSION=2.0.22
BASEDIR=${HOME}/work/tmux-static
TMUXTARGET=${BASEDIR}/local
mkdir -p $TMUXTARGET
cd $BASEDIR
@seokbeomKim
seokbeomKim / .clang-format
Last active August 4, 2019 06:51
clang-format
---
Language: Cpp
# BasedOnStyle: LLVM
AccessModifierOffset: -2
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignEscapedNewlines: Right
AlignOperands: true
AlignTrailingComments: true
@seokbeomKim
seokbeomKim / .bash_profile
Last active September 25, 2023 15:12 — forked from chrisdone/gist:02e165a0004be33734ac2334f215380e
env-configuration
# This is personal bash_profile
export TERM=xterm-256color
function cd
{
if [ $# -eq 0 ]; then
pushd ~ > /dev/null
elif [ " $1" = " -" ]; then
pushd "$OLDPWD" > /dev/null
else