Skip to content

Instantly share code, notes, and snippets.

View Rofram's full-sized avatar
🚀
Focusing

Rodrigo de França Rofram

🚀
Focusing
View GitHub Profile
@Rofram
Rofram / cheatsheet.ps1
Created May 26, 2025 13:26 — forked from pcgeek86/cheatsheet.ps1
PowerShell Cheat Sheet / Quick Reference
Get-Command # Retrieves a list of all the commands available to PowerShell
# (native binaries in $env:PATH + cmdlets / functions from PowerShell modules)
Get-Command -Module Microsoft* # Retrieves a list of all the PowerShell commands exported from modules named Microsoft*
Get-Command -Name *item # Retrieves a list of all commands (native binaries + PowerShell commands) ending in "item"
Get-Help # Get all help topics
Get-Help -Name about_Variables # Get help for a specific about_* topic (aka. man page)
Get-Help -Name Get-Command # Get help for a specific PowerShell function
Get-Help -Name Get-Command -Parameter Module # Get help for a specific parameter on a specific command
@Rofram
Rofram / config.json
Last active May 10, 2025 22:38 — forked from birobirobiro/config.json
settings mini video me
{
"language": "default",
"theme": "borderless",
"customLanguages": [
{
"id": "custom",
"displayName": "Custom",
"dictionary": {
"default": "Default",
"language": "Language",
@Rofram
Rofram / aws.yml
Created January 10, 2022 22:29 — forked from Plankiton/aws.yml
AWS Actions
name: Deploy to Amazon ECS
on:
push:
- main
- develop
pull_request:
- main
- develop
release:
@Rofram
Rofram / rearct-native-app-in-wsl2.md
Last active September 7, 2021 18:55 — forked from bergmannjg/rearct-native-app-in-wsl2.md
Building a react native app in WSL2