Skip to content

Instantly share code, notes, and snippets.

View jtjoo's full-sized avatar

Jintae Jay Joo jtjoo

View GitHub Profile
<?php
echo "Hello World!";
?>
@jtjoo
jtjoo / conditional_statements.py
Last active October 28, 2017 17:34
Python Study
# if
if True:
print(" It's condition is True ")
# if-else
if False:
print(" It's condition is True ")
else:
print(" It's condition is False ")
@jtjoo
jtjoo / regex-problems.py
Last active November 11, 2017 07:29
Regular Expression
# These problems are from http://regexone.com
# I've learned very well via this site.
# I strongly recommend this site learn regular expression.
# It's super easy to learn, and fun.
#
# And I referenced link below to use regex on python
# https://docs.python.org/3/library/re.html#re.match
import re
@jtjoo
jtjoo / .vimrc
Last active July 21, 2019 01:37
my vim setting
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" !!! Need to install Vundle in path
" !!! RUN FIRST :: # git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\TrueTypeFont]
"949"="*D2Coding"
[HKEY_CURRENT_USER\Console]
"FaceName"="D2Coding"
"FontSize"=dword:00180000
"FontFamily"=dword:00000036
[HKEY_CURRENT_USER\Console\%SystemRoot%_system32_cmd.exe]
"FaceName"="D2Coding"