Skip to content

Instantly share code, notes, and snippets.

View Nicolas-albu's full-sized avatar
🐍
I love Python!

Nícolas Albuquerque R. Nicolas-albu

🐍
I love Python!
View GitHub Profile
@deyvicode
deyvicode / app.ts
Last active May 19, 2023 04:48
TypeScript - POO
class Course {
constructor(private _id: number, private _name: string) {}
// get and set
get id() {
return this._id
}
@leocomelli
leocomelli / git.md
Last active May 4, 2024 16:49
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda