Skip to content

Instantly share code, notes, and snippets.

View aradhyamathur's full-sized avatar

aradhya mathur aradhyamathur

View GitHub Profile
@aradhyamathur
aradhyamathur / zshrc
Created May 15, 2022 11:11
zshrc config
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/home/thor/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
@aradhyamathur
aradhyamathur / init.vim
Created May 15, 2022 11:10
nvim config
:set clipboard+=unnamedplus
:set list
:set nocompatible
:filetype plugin on
:syntax on
:set number
":set relativenumber"
:set autoindent
:set tabstop=4
:set shiftwidth=4
@aradhyamathur
aradhyamathur / config
Last active July 30, 2022 06:59
i3 config file
# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
@aradhyamathur
aradhyamathur / Dropout.py
Created June 2, 2017 20:41 — forked from yusugomori/Dropout.py
Dropout Neural Networks (with ReLU)
# -*- coding: utf-8 -*-
import sys
import numpy
numpy.seterr(all='ignore')
'''