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
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') | |
} | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
## Change your email | |
ssh-keygen -t ed25519 -C "[email protected]" | |
## 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 |
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
# 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 - |
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
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 |
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
<!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/[email protected]/build/pdf.min.js"></script> | |
<script src="pdf2txt.multiple-1.0.js"></script> | |
</head> |