Skip to content

Instantly share code, notes, and snippets.

View averma111's full-sized avatar
😀
I may be slow to respond.

The Pythonic averma111

😀
I may be slow to respond.
  • San Francisco
View GitHub Profile
@averma111
averma111 / DL0101EN-1-1-Forward-Propagation-py-v1.0.ipynb
Created January 10, 2021 08:24
Created on Skills Network Labs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@averma111
averma111 / .vimrc
Created October 13, 2020 08:51 — forked from miguelgrinberg/.vimrc
My .vimrc configuration for working in Python with vim
" plugins
let need_to_install_plugins = 0
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
let need_to_install_plugins = 1
endif
call plug#begin()
Plug 'tpope/vim-sensible'