This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clear | |
//hud | |
r_fullscreen_gamma "2.6" // brilho geral da tela | |
hud_scaling "1" // tamanho da HUD | |
hud_showtargetid "1" // indicação do ID do inimigo na tela | |
cl_color "0" // sua cor no lobby | |
cl_hud_color "4" // cor da HUD | |
cl_allow_animated_avatars "0" // desabilita avatares animados | |
cl_showloadout "1" // mostra sempre os equipamentos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sv_cheats 1 | |
mp_restartgame 1 | |
mp_freezetime 0 | |
mp_roundtime 60 | |
mp_roundtime_defuse 60 | |
mp_maxmoney 60000 | |
mp_startmoney 60000 | |
mp_buy_anywhere 1 | |
mp_buytime 60000 | |
sv_infinite_ammo 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function FindIdealMtu() { | |
$target = 'google.com' | |
$min = 0 | |
$max = 1500 | |
while ($min -le $max) { | |
$mid = [Math]::Floor(($min + $max) / 2) | |
$packetSize = $mid - 28 | |
if ($packetSize -lt 0) { | |
$packetSize = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"theme": "dark", | |
"defaultProfile": "{90cbdc15-f4fe-49d2-a245-ec066b70845f}", | |
"copyOnSelect": false, | |
"copyFormatting": false, | |
"tabWidthMode": "titleLength", | |
"showTabsInTitlebar": false, | |
"profiles": | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"key": "shift+alt+right", | |
"command": "editor.action.indentLines", | |
"when": "editorTextFocus && !editorReadonly" | |
}, | |
{ | |
"key": "shift+alt+left", | |
"command": "outdent", | |
"when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin line-clampin($maxLines) { | |
display: -webkit-box; | |
overflow: hidden; | |
-webkit-line-clamp: $maxLines; | |
-webkit-box-orient: vertical; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ $(grep -oE 'gcc version ([0-9]+)' /proc/version | awk '{print $3}') -gt 5 ] && \ | |
echo "WSL2" || echo "WSL1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="exemple" style="background-color:ffff00"> | |
<p class="text">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.</p> | |
</div> |