-
Si enviΓ‘s una pregunta por WhatsApp, y ves que tu contacto estΓ‘ tipeando, es una buena prΓ‘ctica esperar a su respuesta antes de enviar una segunda pregunta, o mΓ‘s texto.
-
Es mucho mejor enviar en un ΓΊnico mensaje algo del estilo "Hola, cΓ³mo estΓ‘s? CΓ³mo viene tu dΓa?", que en 20 mensajes de una palabra por cada uno de ellos, recordemos que cada mensaje de seguro le generarΓ‘, a tu aΓΊn amigo, un sonido y tambiΓ©n muy posiblemente una vibraciΓ³n. 20 avisos seguidos de vibraciones predispone mal a la gente, y su respuesta puede no ser amistosa luego de esa acciΓ³n.
-
Si decidΓs enviar una obra literaria extensa por medio de un ΓΊnico mensaje de WhatsApp, te recordamos que no es muy cΓ³modo hacer scroll de la pantalla 1200 veces para leer desde la primera a la ΓΊltima palabra. Γste serΓa el caso contrario al 2), y tambiΓ©n ocurrirΓa que o el contacto no lo lea, o que cuando lances la pregunta "QuΓ© te pareciΓ³?" recibas una mentira o la nada misma.
-
El ser humano no es un dispara
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
#!/bin/bash | |
# Based on the instructions in this thread: | |
# https://www.reddit.com/r/linux_gaming/comments/1g55nl6/amd_gpus_will_now_default_to_a_high_performance/ | |
# /sys/class/drm/card1/device/power_dpm_force_performance_level | |
# https://www.kernel.org/doc/html/v5.0/gpu/amdgpu.html#power-dpm-force-performance-level | |
# manual | |
# auto|low|high|profile_standard|profile_min_sclk|profile_min_mclk|profile_peak |
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
from sys import exit | |
from textwrap import fill as tw | |
fail = [False] | |
def varcheck(var_name, var_value, optional = False): | |
is_empty = len(var_value) == 0 | |
if optional: | |
symbol = "π²" | |
elif is_empty or "$(" in var_value: |
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
#!/usr/bin/python | |
import sys | |
import pyexiv2 | |
import os | |
# print(sys.argv) | |
if sys.argv[1] == "-d": | |
files = sys.argv[2:] | |
realrun = False |
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
#!/usr/bin/python | |
import sys | |
from sys import argv | |
import pyexiv2 | |
import os | |
from progress.bar import IncrementalBar | |
help_message = f"""Find duplicate images in a list provided (using metadata) | |
Usage: |
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
0eNrsvetuXDmyNfgqA/+ai1WzeScLM/MU82OAhlGQ7WyXcGRJI8uN0/hQ7z6Zum4rGTvXWnHK5fKcP9WoUvYKMsgIcgdXRPyPN+8vv+5ubi+u7n57f339H29+/R8v/+XLm1//sfrXw9++XJ3fnN1dn326vfh4+Pf/fPNrCMvbN/++/98/3r45f//l+vLr3e7s8Mubi6tPb369u/26e/vm4sP11QPgl4tPV+eXh//33b9vdm9+fXNxt/v85u2bq/PPh3+7vP508eXu4sPZ3e35xdXZl7vrmzd74Iurj7uDtD/enkTYXe4+3N1eX+0xPlzcfvh6cbcCiH+8e/tmd3V3cXexexjP/b/8+7err5/f7273Ep5x9vIvzz78fj+KB4lv39xcf9n/P6+vHid/Flv/pdzPP4Vfyl7Mx4vbvfT7X8TDWF+hRxI9U+iJRA8UembQC4ddKOxCYVcKm1vP9oz94evtv3Yfzw4iZrru8QE1f4tZJ5j9GfPLwQY+/X5norb2gJpOj3QQqAVGPRg/DJtw2IDqtfapXtMMNGKgucNLFRI6/UJMPsOgxEIVGBTfU6FiGq0RX6SGb6j+OP32LWybwRJGVeewYQYLW1XGxxphmyJGGgOh18cdMICxRh62nd4FMRHLlaawZQabedgB6Ba2rZxwzVYWFNErbF214VrtLCii08HdZcbydG6P1+f2DD4R51Yf98A5nF60FGjY18qYLVsirKyGKexs4VKiYV8rYarbzC1dGebSTZVB3RXT4PYFbnUB3xWNBIX2BG51A98RgwRF9kNemAVrC7UbMmFx43HJ0ukly5GHDcBok/j9l7EvNOJ8K/MFnO2KXHjYBOwL2NbSwBeusaDIsnXp8xRcNNjmWoCXrCwsKLBghbG1h0tJLqeXrEQeNp1etJLgb/OHCFYGPvhKpj+jM/AhVQo61jYf61QBlTDbNh3rdGs1HhY4eUtHVXBYgwNoBbbWwEDTHHIaTYItKzXYBGpgQQEDqGC8o+DbvyYyNIFs/prBKAK |
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
#!/bin/bash | |
curl "https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=factorio-experimental" > PKGBUILD | |
INSTALLEDVER=`pacman -Qi factorio-experimental | grep Version | egrep -o '[0-9]\.[0-9]\.[0-9]'` | |
MAKEVER=`egrep '^pkgver\=[0-9]\\.[0-9]\\.[0-9]' PKGBUILD | egrep -o '[0-9]\.[0-9]\.[0-9]'` | |
if [[ $INSTALLEDVER == $MAKEVER ]]; then | |
echo "ππππππππππππππππ" | |
echo "π Factorio is up to date =) π" |
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
#!/usr/bin/python | |
from nltk.corpus import words | |
import numpy as np | |
from pyxdameraulevenshtein import ( | |
damerau_levenshtein_distance_ndarray as distance_list) | |
from sys import argv | |
victim = " ".join(argv[1:]).lower() | |
wl = [w.lower() for w in words.words()] |
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
"Harder" is a horrible safe word. | |
% | |
Never take a laxative and a sleeping pill at the same time | |
% | |
Don't not do that again. | |
% | |
Never ask your ouija board for recipes. | |
% | |
Don't shove beans up your nose. | |
% |
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
#!/bin/bash | |
# az-spn | |
tenant='tenant id' # in my use case I have a single tenant | |
declare -A dic | |
dic['joes dev sub']='subscription name or id' | |
dic['joes dev id']='SPN ID' | |
dic['joes dev pass']='SPN password' |
NewerOlder