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
#!/bin/bash | |
# Limpar | |
clear | |
# Usuário padrão (UID 1000) | |
USUARIO=$(id -nu 1000) | |
# Verificar acesso root | |
if [[ $EUID -eq 0 ]]; then |
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
#!/bin/bash | |
# Usuário padrão (UID 1000) | |
USUARIO=$(id -nu 1000) | |
# Limpar Tela | |
clear | |
# Verificar acesso root | |
if [[ $EUID -eq 0 ]]; then |
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
#!/bin/bash | |
# Usuário padrão (UID 1000) | |
USUARIO=$(id -nu 1000) | |
# Verificar acesso root | |
if [[ $EUID -eq 0 ]]; then | |
echo -e "Esse script NÃO deve ser executado como ${USER}" | |
exit | |
fi |
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
#!/bin/bash | |
# | |
# Login do usuário | |
USUARIO=$(id -nu 1000) | |
# Verificar acesso root | |
if [[ $EUID -eq 0 ]]; then | |
echo -e "Esse script NÃO deve ser executado como ${USER}" | |
exit |
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
############################################################### | |
# Lista de pacotes Arch Linux (Cinnamon Desktop) (03/06/2025) | |
# Lembre-se a WIKI é sempre sua aliada | |
# https://wiki.archlinux.org/title/Cinnamon | |
############################################################### | |
# Compressão | |
7zip | |
unrar | |
unzip |
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
# Windows | |
//192.168.100.13/dados_03 /mnt/dados cifs username=USER,password=PASSWORD,uid=1000,gid=1000,rw,noperm,iocharset=utf8,_netdev,x-systemd.automount 0 0 |
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
<?php | |
class SpotenApp | |
{ | |
public $apiType = "dev"; | |
public $apiUrl = ["homolog" => "https://dashboard-homolog.spoten.app/api", "producao" => "https://dashboard.spoten.app/api"]; | |
public $apiTimeout = 5; | |
public $apiLastRequest = []; | |
public $companyId = 267; |
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
<?php | |
class LogAPI | |
{ | |
/** | |
* Called when a unknow function is received | |
* | |
* @param string $name Function name | |
* @param type $arguments Function argument list | |
*/ |
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
// SmileY Userconfig 6.0 | |
// -full -freq 144 -gl -w 800 -32bpp -noforcemparms -noforcemaccel -noforcemspd -nojoy -nocrashdialog | |
alias "+info" "net_graph 3;+showscores;net_graphpos 2" | |
alias "-info" "net_graph 0;-showscores;net_graphpos 2" | |
unbindall | |
bind "TAB" "+info;cl_righthand 1" | |
bind "ENTER" "+attack" |
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
# Leitor da Balanca Capital TCP/IP (192.168.92.93:8080 (Soja), 192.168.92.94:8081 (Farelo) e 192.168.92.95:8080 (Oleo Degomado)) | |
param([string] $endereco = "127.0.0.1", [int] $porta = 8082, [string] $url = "https://dominio.br/balanca.php") | |
try | |
{ | |
$produto = "Balanca Desconhecida" | |
switch($endereco) | |
{ | |
"192.168.92.93" |
NewerOlder