Skip to content

Instantly share code, notes, and snippets.

View Isopach's full-sized avatar
:octocat:
Working from home forever!

Isopach Isopach

:octocat:
Working from home forever!
View GitHub Profile
@Isopach
Isopach / LICENSE.txt
Created August 23, 2019 03:52 — forked from 140bytes/LICENSE.txt
140byt.es -- Click ↑↑ fork ↑↑ to play!
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@Isopach
Isopach / install_pyenv.sh
Last active February 18, 2019 03:35 — forked from ysaotome/install_pyenv.sh
pyenv install for CentOS 7+ x86_64 without root
#!/bin/zsh
# pyenv install for CentOS 7+ x86_64
git clone https://github.com/pyenv/pyenv.git ~/.pyenv
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
cat << _PYENVCONF_ >> ~/.zshrc
export PATH="$HOME/.pyenv/bin:$PATH"
@Isopach
Isopach / LICENCE SUBLIME TEXT
Created February 6, 2019 09:40
Sublime Text 3 Serial key build is 3176
## Sublime Text 3 Serial key build is 3176
> * Added these lines into /etc/hosts
127.0.0.1 www.sublimetext.com
127.0.0.1 license.sublimehq.com
> * Used the license key
----- BEGIN LICENSE -----
@Isopach
Isopach / update_curl.sh
Last active April 8, 2018 06:52 — forked from fideloper/update_curl.sh
Update curl on Ubuntu 16.04.4
#! /usr/bin/env bash
# Install any build dependencies needed for curl
sudo apt-get build-dep curl
# Get latest (as of Feb 25, 2016) libcurl
mkdir ~/curl
cd ~/curl
wget http://curl.haxx.se/download/curl-7.50.2.tar.bz2
tar -xvjf curl-7.50.2.tar.bz2