Skip to content

Instantly share code, notes, and snippets.

@maxc01
maxc01 / update_aur.sh
Created June 27, 2017 12:01
update ArchLinux AUR in current directory
#!/usr/bin/env bash
find . -mindepth 1 -maxdepth 1 -type d | while read -r software_name
do
echo -e "\e[36mStart update package ${software_name}"
cd ${software_name}
git pull
makepkg -si --needed --noconfirm
cd ..
echo -e "\e[36mFinished update package ${software_name}"
@maxc01
maxc01 / word2vec.ipynb
Last active January 17, 2017 15:00
Udacity deep learning Assignment 5, my implementation of CBOW
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.