Skip to content

Instantly share code, notes, and snippets.

View Naramsim's full-sized avatar
🎅
Always in Christmas mood

Alessandro Pezzè Naramsim

🎅
Always in Christmas mood
View GitHub Profile
@Naramsim
Naramsim / 0nlyoung7
Created March 25, 2021 21:38 — forked from Original-Streak/0nlyoung7
Start dates
#2015-09-13
@Naramsim
Naramsim / install-comodo-ssl-cert-for-nginx.rst
Created July 7, 2016 13:28 — forked from bradmontgomery/install-comodo-ssl-cert-for-nginx.rst
Steps to install a Comodo PositiveSSL certificate with Nginx.

Setting up a SSL Cert from Comodo

I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.

These are the steps I went through to set up an SSL cert.

Purchase the cert

@Naramsim
Naramsim / screen.md
Last active October 28, 2015 20:40 — forked from hsuh/screen.md
screen spliting with screen

In screen the terminal multiplexer.

  • new session screen -S NewSession
  • switch between sessions ctrl a then n
  • detach to the current session ctrl a then d
  • list screens screen -ls
  • attach to an attached session screen -x pidOfSession
  • delete detached session screen -X -S pidOfSession quit
  • To split vertically: ctrl a then |.
  • To split horizontally: ctrl a then S (uppercase one).
  • To unsplit: ctrl a then Q (uppercase one).