Skip to content

Instantly share code, notes, and snippets.

View danielsayidi's full-sized avatar

Daniel danielsayidi

View GitHub Profile
@danielsayidi
danielsayidi / Boxy Tomorrow.sublime-theme
Created August 18, 2018 11:22
Sublime text for better UI
[
{
"class": "sidebar_label",
"color": [250, 250, 250],
//"shadow_color": [0, 0, 0],
//"shadow_offset": [0, -1],
"font.size": 15.5,
//"font.italic": true,
"font.bold": false,
"font.face": "San Francisco Display",
@danielsayidi
danielsayidi / install_python36_on_deb.txt
Created June 27, 2018 05:23
Installing python3.6.5 on debain9.4
make sure your system is upgraded by typing these comments
sudo apt update
sudo apt upgrade
Next, install the default GCC toolchain with:
sudo apt install build-essential
Next, we need to install a few prerequisites for building Python:
@danielsayidi
danielsayidi / install virtualenv ubuntu 16.04.md
Created June 15, 2018 04:52 — forked from Geoyi/install virtualenv ubuntu 16.04.md
How to install virtual environment on ubuntu 16.04

How to install virtualenv:

Install pip first

sudo apt-get install python3-pip

Then install virtualenv using pip3

sudo pip3 install virtualenv