Skip to content

Instantly share code, notes, and snippets.

@rpgove
rpgove / .block
Last active January 3, 2019 02:36
Speeding up KDE heatmaps with Barnes-Hut quadtrees
license: gpl-3.0
height: 500
scrolling: no
border: yes
@mandiwise
mandiwise / Update remote repo
Last active March 27, 2024 05:48
Transfer repo from Bitbucket to Github
// Reference: http://www.blackdogfoundry.com/blog/moving-repository-from-bitbucket-to-github/
// See also: http://www.paulund.co.uk/change-url-of-git-repository
$ cd $HOME/Code/repo-directory
$ git remote rename origin bitbucket
$ git remote add origin https://github.com/mandiwise/awesome-new-repo.git
$ git push origin master
$ git remote rm bitbucket