Script interactivo para buscar productos tasados en Todoconsolas (https://www.todoconsolas.com/es/vende). Devuelve los precios de compra.
Requisitos: python >=3.6, requests
#!/bin/bash | |
if [[ ! $UID -eq 0 ]] | |
then | |
echo "Must run as root!" | |
exit 1 | |
fi | |
fingerprintNotMatch() { | |
echo 'WARNING, Fingerprint NOT MATCH, exiting!' |
#!/bin/sh | |
mosquitto_sub -h localhost -t test -v | while read -r topic payload | |
do | |
echo "Rx @ ${topic}: ${payload}" | |
done |
version: '3' | |
services: | |
portainer: | |
# https://www.portainer.io/installation/ | |
# https://portainer.readthedocs.io/en/stable/deployment.html | |
container_name: portainer | |
image: portainer/portainer | |
ports: | |
- 9000:9000 |
#!/bin/bash | |
set -ex | |
git add . | |
git commit -m "$(whoami) @ $(date '+%F %T')" | |
git push | |
# if user == "foolano" & time == 20/april/2020 16:20:00 ; then commit msg == "foolano @ 2020-04-20 16:20:00" |
// ==UserScript== | |
// @name Portainer-Show node name on page title | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
let nodeName = undefined; | |
function setTitle() { | |
const endpointName = document.getElementsByClassName("endpoint-name")[0]; |
#!/bin/bash | |
# Usage: ./ping2csv.sh enp2s0 8.8.8.8 | |
# (will ping 8.8.8.8 using interface enp2s0) | |
# | |
# Will store ping results on a file named "ping-enp2s0-8.8.8.8.csv" with lines as: | |
# 2020-01-01 10:15:30,15.234 | |
set -x | |
INTERFACE="$1" |
using System.Windows.Forms; | |
using GTA; | |
using GTA.Native; | |
public class KillPlayerOnDemand : Script { | |
public KillPlayerOnDemand() { | |
KeyUp += OnKeyUp; | |
} |
Script interactivo para buscar productos tasados en Todoconsolas (https://www.todoconsolas.com/es/vende). Devuelve los precios de compra.
Requisitos: python >=3.6, requests
[/script/insurgency.inscheckpointgamemode] | |
bBots=True | |
SoloEnemies=50 | |
FriendlyBotQuota=50 | |
AIDifficulty=1.0 | |
bUseVehicleInsertion=True | |
RespawnDPR=0.5 | |
RespawnDelay=1 | |
bUseRandomCounterAttackTypes=True | |
bCounterAttackReinforce=True |