Skip to content

Instantly share code, notes, and snippets.

@fkatada
fkatada / windows_efi.md
Created September 27, 2025 10:58 — forked from csivanich/windows_efi.md
Fix or Move Windows 10 EFI Partition/Bootloader
@fkatada
fkatada / 0_prerequisites.md
Created September 21, 2025 00:43 — forked from dehsilvadeveloper/0_prerequisites.md
Installing Docker on WSL 2 with Ubuntu 22.04

Installing Docker on WSL 2 with Ubuntu 22.04

Instalando Docker em um WSL 2 com Ubuntu 22.04

Prerequisites

Before start the installation process, make sure you meet the following prerequisites:

  • A Windows 10 operating system with WSL 2 support.
  • WSL 2 enabled.
  • Ubuntu 22.04 installed on WSL 2.
@fkatada
fkatada / custom-onedrive-backup-folder.md
Created September 6, 2025 17:24 — forked from Compact023/custom-onedrive-backup-folder.md
create symbolic link to backup custom folders with onedrive for example
@fkatada
fkatada / .block
Created August 30, 2025 23:08 — forked from kerryrodden/.block
Sequences sunburst
license: apache-2.0
@fkatada
fkatada / aws-jmespath.sh
Created August 24, 2025 10:00 — forked from marjamis/aws-jmespath.sh
JMESPath and JQ Examples
aws ec2 describe-instances --query 'Reservations[].Instances[].[PrivateIpAddress, MetadataOptions]' --instance-ids <ids>
@fkatada
fkatada / jq-cheetsheet.md
Created August 7, 2025 21:16 — forked from olih/jq-cheetsheet.md
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq

@fkatada
fkatada / vim-shortcuts.md
Created July 26, 2025 22:01 — forked from tuxfight3r/vim-shortcuts.md
VIM SHORTCUTS

VIM KEYBOARD SHORTCUTS

MOVEMENT

h        -   Move left
j        -   Move down
k        -   Move up
l        -   Move right
$        -   Move to end of line
0        -   Move to beginning of line (including whitespace)

Oh My Posh - Quick Guide

Installing on windows 11

You can install oh-my-posh per terminal but you can also use winget for the easiest installation. It will apply to all available terminals on your system.

Open a PowerShell prompt and run the following command:

winget install oh-my-posh
@fkatada
fkatada / git-user-stats
Created July 22, 2025 10:47 — forked from shitchell/git-user-stats
Show user stats in a git repo
#!/bin/bash
#
# Show user stats (commits, files modified, insertions, deletions, and total
# lines modified) for a repo
git_log_opts=( "$@" )
git log "${git_log_opts[@]}" --format='author: %ae' --numstat \
| tr '[A-Z]' '[a-z]' \
| grep -v '^$' \
@fkatada
fkatada / git-commit-log-stats.md
Created July 22, 2025 09:17 — forked from eyecatchup/git-commit-log-stats.md
Some commands to get git commit log statistics for a repository on the command line.

git commit stats

Commands to get commit statistics for a Git repository from the command line -
using git log, git shortlog and friends.