Skip to content

Instantly share code, notes, and snippets.

View Terance98's full-sized avatar
🎯
Focusing

Thomas Terance Terance98

🎯
Focusing
  • Kochi
View GitHub Profile
@Terance98
Terance98 / README.md
Created May 20, 2020 15:47 — forked from anhldbk/README.md
TLS client & server in NodeJS

1. Overview

This is an example of using module tls in NodeJS to create a client securely connecting to a TLS server.

It is a modified version from documentation about TLS, in which:

  • The server is a simple echo one. Clients connect to it, get the same thing back if they send anything to the server.
  • The server is a TLS-based server.
  • Clients somehow get the server's public key and use it to work securely with the server

2. Preparation

@Terance98
Terance98 / ssh.md
Created September 5, 2019 13:00 — forked from bradtraversy/ssh.md
SSH & DevOps Crash Course Snippets

SSH Cheat Sheet

This sheet goes along with this SSH YouTube tutorial

Login via SSH with password (LOCAL SERVER)

$ ssh brad@192.168.1.29

Create folder, file, install Apache (Just messing around)

$ mkdir test

$ cd test