Skip to content

Instantly share code, notes, and snippets.

View thiagobraga's full-sized avatar

Thiago Braga thiagobraga

View GitHub Profile
@thiagobraga
thiagobraga / youtube-enhancer.json
Last active February 11, 2024 01:51
Extensions: Backup of settings for Enhancer for Youtube #Chrome
{"version":"2.0.122.1","settings":{"blur":0,"brightness":100,"contrast":100,"grayscale":0,"huerotate":0,"invert":0,"saturate":100,"sepia":0,"applyvideofilters":false,"backgroundcolor":"#000000","backgroundopacity":85,"blackbars":false,"blockautoplay":true,"blockhfrformats":false,"blockwebmformats":false,"boostvolume":false,"cinemamode":false,"cinemamodewideplayer":true,"controlbar":{"active":false,"autohide":false,"centered":true,"position":"absolute"},"controls":["speed","screenshot","options"],"controlsvisible":true,"controlspeed":false,"controlspeedmousebutton":false,"controlvolume":false,"controlvolumemousebutton":false,"convertshorts":false,"customcolors":{"--dimmer-text":"#cccccc","--hover-background":"#232323","--main-background":"#111111","--main-color":"#00adee","--main-text":"#eff0f1","--second-background":"#181818","--shadow":"#000000"},"customcssrules":"","customscript":"","customtheme":false,"darktheme":true,"date":0,"defaultvolume":true,"disableautoplay":true,"executescript":false,"expanddescrip
@thiagobraga
thiagobraga / sociopata-release.md
Last active April 4, 2022 03:00
# Sociopata Release atualizado até 03/04/2022 em português e inglês.

Sociopata

Release

English

Sociopata started in 2008 in the cities of Bauru and Agudos, SP, Brazil, with the proposal to merge thrash metal with hardcore and progressive. The members are Kleber (vocals), Braga (guitar), Birão (bass), Léo (guitar) and Cowboy (drums). The band's releases are the demo Sociopata [2013] and the EP "Corrosão" [2016], in addition to performing several shows throughout the state of São Paulo.

The band's name is quite suggestive and open to interpretation, taking a psychological bias, as well as the lyrics, which lead listeners to self-analysis of their actions. Lyrics that address selfishness, greed, misinformation and social differences, among other topics that are almost always recent. >

@thiagobraga
thiagobraga / activate-windows-10.bat
Last active March 2, 2022 18:50
[Windows 10] Activation batch file
slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX
slmgr /skms kms8.msguides.com
slmgr /ato
@thiagobraga
thiagobraga / readme.md
Last active January 6, 2021 20:12
[Git] Como ignorar arquivos localmente sem incluir no .gitignore

Ignorar alterações em arquivos com update-index

git update-index --assume-unchanged package.json
git update-index --assume-unchanged resources/assets/sass/old_css/helper.css
git update-index --assume-unchanged resources/views/errors/500.blade.php
git update-index --assume-unchanged resources/views/layouts/admin/head.blade.php
git update-index --assume-unchanged resources/views/layouts/admin/master.blade.php
git update-index --assume-unchanged resources/views/layouts/student/head.blade.php
git update-index --assume-unchanged resources/views/layouts/student/master.blade.php
@thiagobraga
thiagobraga / clock-override.md
Last active December 16, 2020 13:08
[Ubuntu] Clock Override #Gnome
🗓️  %a %d/%m/%Y    ⌚ %H:%M:%S
@thiagobraga
thiagobraga / js.blade.php
Created November 24, 2020 21:38
Laravel BrowserSync
@if (env('APP_ENV') === 'local')
<script async src="http://localhost:3000/browser-sync/browser-sync-client.js"></script>
@endif
@thiagobraga
thiagobraga / install-dbeaver.sh
Last active November 7, 2020 03:25
Install DBeaver #Ubuntu
sudo add-apt-repository ppa:serge-rider/dbeaver-ce -y
sudo apt-get update
sudo apt-get install dbeaver-ce -y
@thiagobraga
thiagobraga / settings.json
Last active November 4, 2020 17:28
Sublime Text settings #Sublime
{
"font_face": "Fira Code Regular",
"font_size": 9,
"line_padding_top": 8,
"line_padding_bottom": 8,
"color_scheme": "Packages/Nord/Nord.sublime-color-scheme",
"ignored_packages":
[
"Vintage"
],
@thiagobraga
thiagobraga / xdebug.ini
Created October 31, 2020 20:54
Xdebug config
xdebug.idekey=docker
xdebug.remote_connect_back=0
xdebug.remote_host=10.0.1.2
xdebug.remote_port=9001
xdebug.remote_autostart=1
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.cli_color=1
xdebug.profiler_enable=0
@thiagobraga
thiagobraga / install-redis-cli-ubuntu.md
Last active October 24, 2020 13:16
Snippet for install redis-cli on Ubuntu