View Windows_Console_Setting.reg
[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" |
View .vimrc
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 |
View regex-problems.py
# 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 |
View conditional_statements.py
# 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 ") |
View helloworld.php
<?php | |
echo "Hello World!"; | |
?> |