Skip to content

Instantly share code, notes, and snippets.

View sudoheader's full-sized avatar
🕶️
🧑‍💻 in the matrix

Raymond Nazaryan sudoheader

🕶️
🧑‍💻 in the matrix
View GitHub Profile
@sudoheader
sudoheader / windowsPython3.md
Created October 13, 2019 05:55
Python 3.x.x on Windows

The Windows installation for Python3 does not add to Path for some reason so doing this manually will help with calling python as python3 and not python2.

That is if python2 is already installed on the system.

I used most of this guide to get Python3 installed on my system: https://phoenixnap.com/kb/how-to-install-python-3-windows

I had an issue where on the command line, typing python would use Python2 instead of Python3.

The python installer for Windows installs python3 by default in C:\Users\<username>\AppData\Local\Programs\Python\Python37-32 instead of directly on the C: drive.

@sudoheader
sudoheader / keybase.md
Created May 1, 2019 17:54
Keybase proof

Keybase proof

I hereby claim:

  • I am sudoheader on github.
  • I am sudoheader (https://keybase.io/sudoheader) on keybase.
  • I have a public key ASC5Tnv-18WZuQ5qGMB41ZVztfA50UjSUD_vh3oaJL5_-go

To claim this, I am signing this object:

@sudoheader
sudoheader / github-repo-create.md
Last active October 9, 2017 04:53
Create Github repo from command line

From hub.github.com

install homebrew from brew.sh

brew install hub

alias git=hub

create a repo for a new project

git init

git add . &amp;&amp; git commit -m "Initial commit."