Skip to content

Instantly share code, notes, and snippets.

View akane10's full-sized avatar

Yapie Rosyadie akane10

View GitHub Profile
// inherit-compose.js
// Inheritance vs Composition
//INHERITANCE
// Character > Human > Sam
// Character > Robot > x73
// Character > Cyborg > Dolph
const Character = {
talk: function(...msg){
@akane10
akane10 / composing.software.md
Created March 3, 2019 14:46 — forked from frankfaustino/composing.software.md
Eric Elliot: Composing Software Series

Eric Elliott: Composing Software

@akane10
akane10 / nodejs-cheatsheet.js
Created March 3, 2019 14:45 — forked from LeCoupa/nodejs-cheatsheet.js
Complete Node.js CheatSheet --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
/* *******************************************************************************************
* THE UPDATED VERSION IS AVAILABLE AT
* https://github.com/LeCoupa/awesome-cheatsheets
* ******************************************************************************************* */
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html
@akane10
akane10 / ssh.md
Created March 3, 2019 14:43 — 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

@akane10
akane10 / composing-software.md
Created March 3, 2019 11:56 — forked from rosario/composing-software.md
Eric Elliott's Composing Software Series