Skip to content

Instantly share code, notes, and snippets.

View sina-mansour's full-sized avatar
🧠
🤹🧠 Juggling brains!

Sina Mansour L. sina-mansour

🧠
🤹🧠 Juggling brains!
View GitHub Profile
@jobovy
jobovy / gaussian_kde_angular_metric.ipynb
Created November 28, 2022 01:58
Gaussian KDE with periodic boundary conditions
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@paulallies
paulallies / gist:0052fab554b14bbfa3ef
Last active August 3, 2024 16:45
Remove node_modules from git repo
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin <branch-name>