Skip to content

Instantly share code, notes, and snippets.

View abdulrahman004's full-sized avatar

abdulrahman004

View GitHub Profile
#python3
import pandas as pd
df = pd.read_excel("Oct.xlsx", skiprows=2)
df = df.fillna(method="ffill")
with open ("out.txt","w") as out:
for i, r in df.iterrows():
@abdulrahman004
abdulrahman004 / install_git_lfs.sh
Created November 9, 2018 01:10 — forked from show0k/install_git_lfs.sh
Compile and Install git-lfs on Raspberry Pi (with golang compilation)
install_git_lfs()
{
set -e
# Get out if git-lfs is already installed
if $(git-lfs &> /dev/null); then
echo "git-lfs is already installed"
return
fi
GIT_LFS_BUILD=$HOME/.bin