Skip to content

Instantly share code, notes, and snippets.

View ItsMurumba's full-sized avatar
🚀

Kelvin Murumba ItsMurumba

🚀
View GitHub Profile
<?
# MIT license, do whatever you want with it
#
# This is my invoice.php page which I use to make invoices that customers want,
# with their address on it and which are easily printable. I love Stripe but
# their invoices and receipts were too wild for my customers on Remote OK
#
require_once(__DIR__.'/../vendor/autoload.php');
@rezafarhadur
rezafarhadur / install virtualenv ubuntu 16.04.md
Last active July 17, 2025 07:53
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 
@tevashov
tevashov / Asset.js
Last active October 27, 2022 21:39
Hide all children div except a specific one #jQuery
$('#target div:not(#exclude)').hide();
//or
$('#target').children().filter(':not(#exclude)').hide();