Skip to content

Instantly share code, notes, and snippets.

@jlsjonas
jlsjonas / byobuCommands
Created October 9, 2023 09:57 — forked from jshaw/byobuCommands
Byobu Commands
Byobu Commands
==============
byobu Screen manager
Level 0 Commands (Quick Start)
------------------------------
<F2> Create a new window
@jlsjonas
jlsjonas / gettersetterES6.js
Created January 30, 2017 16:49
Presentation
class Person {
constructor(name, surname){
this.name = name;
this.surname = surname;
}
about(){
console.log(`Hello my name is ${this.name} ${this.surname}`);
}