Skip to content

Instantly share code, notes, and snippets.

View alphonse92's full-sized avatar

Alejandro Molina alphonse92

View GitHub Profile
@alphonse92
alphonse92 / Exploitation.md
Created May 21, 2025 18:14 — forked from yezz123/Exploitation.md
Pentesting-Exploitation
@alphonse92
alphonse92 / README.md
Created December 10, 2020 15:00 — forked from madslundt/README.md
My Counter-Strike: Global Offensive config

My CS:GO Config

Put autoexec.cfg in ...\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg or take what you want from it and add to your autoexec config!

After the Wild West Simulator 2015 update, video.txt needs to be put in ...\Steam\userdata\<Steam3 ID>\730\local\cfg

Launch Options

-novid -freq 144 -refresh 144 -tickrate 128 -maxplayers_override 50 -nojoy -nod3d9ex1 +exec autoexec.cfg
@alphonse92
alphonse92 / Update remote repo
Created November 10, 2019 22:21 — forked from mandiwise/Update remote repo
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