Skip to content

Instantly share code, notes, and snippets.

View WeltonThomasFerreira's full-sized avatar
🏠
Working from home

Thom Ferreira WeltonThomasFerreira

🏠
Working from home
View GitHub Profile
// type, model, interface
// type.ts
export interface IUser {
name: string;
lastname: string;
birthday: string | Date;
skills: {
id: number;
value: string;
oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH\material.omp.json" | Invoke-Expression
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete
Import-Module posh-git
@WeltonThomasFerreira
WeltonThomasFerreira / README.md
Last active July 12, 2022 11:54
Angular 2+ Roadmap
@WeltonThomasFerreira
WeltonThomasFerreira / Pipfile
Last active May 30, 2022 19:06
Python in VS Code: Setup
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
[dev-packages]
autopep8 = "*"
// node: v18.2.0
import * as readline from 'node:readline/promises';
import { stdin as input, stdout as output } from 'node:process';
const rl = readline.createInterface({ input, output });
const answer = await rl.question('What do you think of Node.js? ');
rl.write(answer + "\n")
rl.close();
@WeltonThomasFerreira
WeltonThomasFerreira / README.md
Last active August 30, 2022 09:06
MongoDB: Basic Shell and CRUD