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
| # Update Database | |
| $ freshclam | |
| # Scan recursive | |
| $ clamscan --infected --remove --recursive /home |
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
| # Install QtSixA is the Sixaxis Joystick Manager | |
| $ sudo apt-get update && | |
| $ sudo apt-get install git dialog build-essential pyqt4-dev-tools libusb-dev libjack-dev libbluetooth-dev python-dbus checkinstall -y && | |
| $ git clone https://github.com/falkTX/qtsixa.git && | |
| $ cd qtsixa && | |
| $ make && | |
| $ sudo checkinstall | |
| # Connect with USB | |
| $ sixpair |
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
| # Programas para recuperação de dados (Windows) | |
| Recuva | |
| https://www.ccleaner.com/recuva | |
| DMDE - DM Disk Editor and Data Recovery Software | |
| https://dmde.com/ | |
| PhotoRec | |
| https://www.cgsecurity.org/wiki/PhotoRec |
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
| # Instalando | |
| Coloque o arquivo zip dentro da sua pasta home | |
| unzip ePass2003-Linux-x64 | |
| cd ePass2003-Linux-x64/config | |
| sudo sh config.sh | |
| sudo cp -rf ~/ePass2003-Linux-x64/ /usr/lib/ | |
| cd .. | |
| cd redist/ | |
| sudo cp libcastle.so.1.0.0 /usr/lib | |
| sudo ln -s /usr/lib/ePass2003-Linux-x64/redist/pkimanager_admin /bin/pkimanager_admin |
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
| /* | |
| Classe de uso para criptogradar e descriptografar dados | |
| Autor: Alex Ishida | |
| Data: 14/04/2020 | |
| Exemplo de uso | |
| final String secretKey = "3213215421356513213"; | |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- | |
| PATH | |
| netbeans-8.2/java/maven/conf/settings.xml | |
| Licensed to the Apache Software Foundation (ASF) under one | |
| or more contributor license agreements. See the NOTICE file | |
| distributed with this work for additional information | |
| regarding copyright ownership. The ASF licenses this file |
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
| require 'openssl' | |
| class CryptoService | |
| def encrypt(data,key) | |
| digest = Digest::SHA256.new | |
| digest.update(key) | |
| key = digest.digest | |
| cipher = OpenSSL::Cipher::AES.new(256, :CBC) | |
| cipher.encrypt |
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
| #PASSO 1 | |
| sudo apt-get install -y ubuntu-desktop tigervnc-standalone-server tigervnc-common tigervnc-xorg-extension tigervnc-viewer | |
| #PASSO 2 | |
| vncserver | |
| #PASSO 3 | |
| #definir senha | |
| #PASSO 4 |
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
| # Resolvendo problemas com o pip | |
| python -m pip install --user somepackage | |
| python3 -m pip install --user somepackage | |
| # Adicionar .bashrc | |
| pip() ( python -m pip "$@" ) | |
| pip3() ( python3 -m pip "$@" ) |
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
| pt-BR: | |
| views: | |
| pagination: | |
| first: "« Primeira" | |
| last: "Última »" | |
| previous: "‹ Anterior" | |
| next: "Próxima ›" | |
| truncate: "…" | |
| helpers: | |
| page_entries_info: |