Skip to content

Instantly share code, notes, and snippets.

View dieegov's full-sized avatar
😀

Diego Vieira dieegov

😀
View GitHub Profile
@dieegov
dieegov / reduce-mp4.md
Created February 3, 2024 15:33
Reduce Batch MP4 - Keep Quality
for file in *.MP4; do ffmpeg -i "$file" -c:v libx265 -vtag hvc1 "output/$(basename "$file" .mp4)"; done
@dieegov
dieegov / theme.json
Last active May 12, 2022 17:05
oh-my-posh-theme
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"blocks": [
{
"alignment": "left",
"segments": [
{
"background": "#ffe9aa",
"foreground": "#100e23",
"powerline_symbol": "\ue0b0",
@dieegov
dieegov / app.js
Created September 23, 2020 03:35
Get all videos from youtube playlist
// npm install axios --save;
const axios = require('axios').default;
const fs = require('fs');
const apiKey = '{YOUR_KEY_HERE}'; // Chave gerada no console de desenvolvedor do youtube
const playlistId = 'UUDt4dFdsJyjjA8mQULkOLLw'; // Playlist com todos os videos
const totalVideos = 2413;
const urlVideos = `https://www.googleapis.com/youtube/v3/playlistItems?playlistId=${playlistId}&key=${apiKey}&part=snippet&maxResults=50`
@dieegov
dieegov / force-git-to-update-gitignore.md
Created July 16, 2020 20:41
Force git to update .gitignore

Remove all files

git rm -r --cached .

Remove specific file

git rm -r --cached {file.txt}

Add files back

@dieegov
dieegov / reset-touchbar
Created May 29, 2020 22:55
Macbook Pro - Restart the Touch Bar when it stops working
killall ControlStrip
@dieegov
dieegov / osx-disable-creative-cloud-startup.md
Last active April 19, 2020 15:50
OSX - Disable Creative Cloud startup on Mac

Open terminal then type the following command

launchctl unload -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist

If you want to load back

launchctl load -w /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
@dieegov
dieegov / estados-brasileiros.json
Created March 12, 2020 13:56
Lista de todos os estados brasileiros em JSON
[
{ "id": 1, "sigla": "AC", "nome": "Acre" },
{ "id": 2, "sigla": "AL", "nome": "Alagoas" },
{ "id": 3, "sigla": "AM", "nome": "Amazonas" },
{ "id": 4, "sigla": "AP", "nome": "Amapá" },
{ "id": 5, "sigla": "BA", "nome": "Bahia" },
{ "id": 6, "sigla": "CE", "nome": "Ceará" },
{ "id": 7, "sigla": "DF", "nome": "Distrito Federal" },
{ "id": 8, "sigla": "ES", "nome": "Espírito Santo" },
{ "id": 9, "sigla": "GO", "nome": "Goiás" },