Skip to content

Instantly share code, notes, and snippets.

View beyonddream's full-sized avatar
🎯
Focusing

Arun beyonddream

🎯
Focusing
  • Microsoft
View GitHub Profile
@beyonddream
beyonddream / change_author_info.md
Last active July 29, 2020 06:15
change author info on already existing commits
@beyonddream
beyonddream / custom_vim.sh
Last active June 6, 2019 06:12
custom vim installation (Ubuntu 16)
# needed below dependencies to be installed (cmake, libcurses)
sudo apt-get install cmake libncurses5-dev libncursesw5-dev
# from https://github.com/Valloric/YouCompleteMe/wiki/Building-Vim-from-source
# make
git clone https://github.com/vim/vim.git
cd vim
./configure --with-features=huge \
--enable-multibyte \
@beyonddream
beyonddream / py_coding_tips.md
Last active December 19, 2025 16:42
Python Coding cheat sheet

Python Coding Tips for intermediate programmers

Note: Most of the example codes are adapted from the excellent 'Learning Python' by Fabrizio Romano

Python code style

Refer to PEP8 - https://www.python.org/dev/peps/pep-0008/