Skip to content

Instantly share code, notes, and snippets.

View edumco's full-sized avatar
🦄
Build, Test, Deploy!

José Eduardo Montenegro Cavalcanti de Oliveira edumco

🦄
Build, Test, Deploy!
View GitHub Profile
@edumco
edumco / ubuntu.sh
Last active April 16, 2024 23:21
Ubuntu
#!/bin/sh
# Update list of apps
sudo apt update
# Upgrade your installed apps but Skip update on CI environments
if [ -z ${CI+x} ]; then sudo apt --assume-yes upgrade; else echo "Skipping upgrade"; fi
# Install some basic utilities
sudo apt install --assume-yes --no-install-recommends ubuntu-restricted-extras \
@edumco
edumco / video.md
Last active February 24, 2023 03:43
Tips on screen recording

Recording screens and creating small video files

Record less frames per second

Normal speed is 60 frames per second but you can perceive motion using less frames: 24 on movies, 12 on animations.

So using 12 frames youre recording a fifth (20%) and if you're recording a slide you can go even further using 5fps and keeping only 5% of video data.

Reduce the output resolution

@edumco
edumco / teams.md
Last active June 20, 2022 14:06
Microsoft Teams tricks

Teams Issues

Teams is a super-app with multiple plugins and sub-apps that can cause some troubles from time to time.

Here are some tips to fix and to prevent a lot of small troubles and performance botlenecks.

Cache cleaning

Basic Cleaning PowerShell Script

@edumco
edumco / windows.md
Last active July 24, 2023 18:53
Tricks on windows Powershell

Chocolatey

Install terminal tools on windows

choco install powershell-core microsoft-windows-terminal gsudo --confirm

List all versions of a package in chocolatey