Skip to content

Instantly share code, notes, and snippets.

View M1ndBlast's full-sized avatar
💭
🧠 Minding...

Gustavo Alain Peduzzi Acevedo M1ndBlast

💭
🧠 Minding...
View GitHub Profile
@M1ndBlast
M1ndBlast / Infinite_like_tinder.js
Created June 16, 2024 21:12
Tinder Like Infinite
let idInterval;
idInterval = setInterval(() => {
let btn = Array.from(document.querySelectorAll('span.Hidden'))
.filter(e => e.innerText.toUpperCase() == "LIKE")[0]
.closest('button');
if (!btn) {
clearInterval(idInterval)
alert('Fin de la ejecución')
}
@M1ndBlast
M1ndBlast / autoavsr.ipynb
Last active November 28, 2023 16:33
autoavsr.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@M1ndBlast
M1ndBlast / sshkey_Windows.sh
Last active February 27, 2024 23:48
Unique SSH key for Windows and WSL
## Change your email
ssh-keygen -t ed25519 -C "your_email@example.com"
## Verifying if ssh agent is running
# Set-Service ssh-agent -StartupType Manual
# Start-Service ssh-agent
Get-Service ssh-agent
## Adding sshkey to agent
ssh-add ~\.ssh\id_ed25519
@M1ndBlast
M1ndBlast / Install_openmpi-4.1.4.sh
Created November 9, 2022 03:30
Install openmpi 4.1.4 on Ubuntu
# Updates libraries
sudo apt-get update
sudo apt-get upgrade
# Installs requerimients
sudo apt-get install g++ make
# Locate in user dir
cd ~
# Installs & unpack package
wget https://download.open-mpi.org/release/open-mpi/v4.1/openmpi-4.1.4.tar.gz
gunzip -c openmpi-4.1.4.tar.gz | tar xf -
@M1ndBlast
M1ndBlast / freeling-installation-dependencies.sh
Last active April 13, 2022 02:45
Freeling 4,2 Installation for Ubuntu w Dependencies
sudo apt update
sudo apt-get update
sudo apt-get install wget build-essential cmake
sudo apt install zlib1g libicu-dev libboost-dev libboost-program-options-dev libboost-regex-dev libboost-filesystem-dev libboost-system-dev libboost-thread-dev libboost-iostreams-dev
wget https://github.com/TALP-UPC/FreeLing/releases/download/4.2/freeling-4.2-focal-amd64.deb
sudo dpkg -i ./freeling-4.2-focal-amd64.deb
@M1ndBlast
M1ndBlast / pdf2txt.html
Last active December 6, 2021 23:41
PDF Decoder to Text
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PDF Decoder to Text</title>
<script src="https://cdn.jsdelivr.net/npm/pdfjs-dist@2.10.377/build/pdf.min.js"></script>
<script src="pdf2txt.multiple-1.0.js"></script>
</head>