Skip to content

Instantly share code, notes, and snippets.

View viniciusmelocodes's full-sized avatar
:octocat:
Serving customers with high quality projects

Vinícius Melo viniciusmelocodes

:octocat:
Serving customers with high quality projects
  • Vinícius Melo
  • Brazil
View GitHub Profile
[<MASTER."QUANTIDADE"> * <MASTER."VALOR_UNITARIO">]
var
GrupoRodapeColaborador: Integer;
procedure GF_COLABORADOROnAfterPrint(Sender: TfrxComponent);
begin
GrupoRodapeColaborador := 0;
end;
procedure GF_COLABORADOROnBeforePrint(Sender: TfrxComponent);
begin
[<MASTER."VALOR_PAGO"> - (<MASTER."VALOR_PAGO"> * (<MASTER."TAXA_ADMINISTRATIVA"> / 100))]
@viniciusmelocodes
viniciusmelocodes / XpSerials.txt
Created March 29, 2022 19:03 — forked from denizssch/XpSerials.txt
Windows XP ALL Serial Keys :) (For testing purpose [Ex: VM or PenTest])
FCKGW-RHQQ2-YXRKT-8TG6W-2B7Q8
Windows XP PRO Corporate serial number S/N: Key: MQPWW-PGVKX-YPMKG-8DH3G-KC8PW
windows xp home edition serial number S/N: 034634-262024-171505-828316-729010-413531-800424-400442
Windows XP 64 serial number S/N: B2RBK-7KPT9-4JP6X-QQFWM-PJD6G
Windows XP serial number S/N: K6C2K-KY62K-DQR84-RD4QV-QB74Q
Windows XP Professional 64-bit Corporate Edition 5.2.3790.1830 serial number S/N: VCFQD-V9FX9-46WVH-K3CD4-4J3JM
Microsoft Windows XP Professional SP2 serial number S/N: YY8F2-3CKVQ-RKTRG-6JMDR-9DTG6
Windows XP Professional Service Pack 1 sp1 serial number S/N: F46YY - 2R8VQ - R8GMY - 926VK - 6BQ73
Windows XP Pro serial number S/N: KBWR7-76BD8-J7MDQ-KKG&C-V9Q2J
echo on
cls
echo �Validando Licen�a para 180 Dias...�
CD\
C:
cd C:\users\administrator
slmgr.vbs -rearm
:end
copy /Y "C:\file.jpg" "\\pc01\teste"
hideexec.exe copy_file.cmd
https://code.kliu.org/misc/hideexec/
@viniciusmelocodes
viniciusmelocodes / rclone_crontab.sh
Created July 6, 2022 01:39
Mount RClone with Google Drive
0 0 * * * /usr/bin/rclone mount --daemon --allow-non-empty {name_remote_rclone}: /home/user/googledrive/
@viniciusmelocodes
viniciusmelocodes / mysql-docker.sh
Created January 25, 2023 04:05 — forked from spalladino/mysql-docker.sh
Backup and restore a mysql database from a running Docker mysql container
# Backup
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql
# Restore
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE