Skip to content

Instantly share code, notes, and snippets.

View evereq's full-sized avatar
🔥
Building Ever 🚀

Ruslan Konviser evereq

🔥
Building Ever 🚀
View GitHub Profile

Keybase proof

I hereby claim:

  • I am evereq on github.
  • I am evereq (https://keybase.io/evereq) on keybase.
  • I have a public key ASDfXaDdLEPLaV6vdQFlVSa2ro6J1uuJaf-J9m6auAWZago

To claim this, I am signing this object:

@evereq
evereq / ever-cla-individual
Last active May 29, 2019 20:30
Ever Individual Contributor License Agreement (CLA)
# Ever Individual Contributor License Agreement
Thank you for your interest in contributing to Ever ("We" or "Us").
This contributor agreement ("Agreement") documents the rights granted by contributors to Us. To
make this document effective, please sign it and send it to Us by mail, email, fax, or electronic
submission, following the instructions at https://ever.dev/caa. This is a legally binding document, so
please read it carefully before agreeing to it. The Agreement may cover more than one software
project managed by Us.
@evereq
evereq / ever-caa-entity
Last active May 29, 2019 20:30
Ever Entity Contributor Assignment Agreement (CAA)
# Ever Entity Contributor Assignment Agreement
Thank you for your interest in contributing to Ever ("We" or "Us").
This contributor agreement ("Agreement") documents the rights granted by contributors to Us. To
make this document effective, please sign it and send it to Us by electronic submission, following the
instructions at https://ever.dev/caa. This is a legally binding document, so please read it carefully
before agreeing to it. The Agreement may cover more than one software project managed by Us.
1. Definitions
@evereq
evereq / ever-caa-individual
Last active May 29, 2019 20:31
Ever Individual Contributor Assignment Agreement (CAA)
# Ever Individual Contributor Assignment Agreement
Thank you for your interest in contributing to Ever ("We" or "Us").
This contributor agreement ("Agreement") documents the rights granted by contributors to Us.
To make this document effective, please sign it and send it to Us by electronic submission,
following the instructions at https://ever.dev/caa. This is a legally binding document, so
please read it carefully before agreeing to it. The Agreement may cover more than one software
project managed by Us.
@evereq
evereq / gist:b33fa4e25bb6739348f14cc4b22e9d83
Created December 30, 2018 16:53
Add 4Gb Swap file (Ubuntu)
sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon -s
sudo cp /etc/fstab /etc/fstab.bak
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab