Skip to content

Instantly share code, notes, and snippets.

View hardianlawi's full-sized avatar
👨‍💻
Living

Hardian Lawi hardianlawi

👨‍💻
Living
View GitHub Profile
@hardianlawi
hardianlawi / download_images.sh
Last active March 22, 2024 05:26
Bash script to download images based on a list of urls
# This script is used to download images given a list of urls
imgdir=$1
urllist=$2
mkdir $imgdir
while read p;
do
wget $p -P $imgdir
done < $urllist
@hardianlawi
hardianlawi / vim_customization.md
Last active August 25, 2018 00:54
Vim Customization for Python User

Vim Customization

Step-by-step Vim Customization for Ubuntu 16.04 for Python user.

Remove vim if it is already installed

Use the command below to remove vim:

sudo apt-get remove vim vim-runtime