Skip to content

Instantly share code, notes, and snippets.

VISTO:

La Ley No 23.313 sancionada el 17 de abril de 1986 y promulgada el 6 de mayo de 1986 que le dio aprobación al Pacto Internacional de Derechos Civiles y Políticos que recepta la garantía del plazo razonable en su artículo 14.3c, incorporado luego a la Constitución Nacional en virtud del art. 75 inc. 22,

Y CONSIDERANDO:

Que el pueblo de la Nación viene sufriendo un creciente estado de inseguridad en los últimos años como consecuencia del flagelo ocasionado por el crimen organizado y el narcotráfico.

Que parte importante de ese crecimiento ha tenido y tiene por causa una ineficiente respuesta policial en la prevención y la represión del delito, así como una notoria ineficacia en razón de importantes demoras en los procesos formados para su juzgamiento.

@mgaitan
mgaitan / ley_represores_lesa.md
Created August 26, 2024 02:45
Proyecto publicado por Arrieta en X

VISTO:

La Ley No 23.313 sancionada el 17 de abril de 1986 y promulgada el 6 de mayo de 1986 que le dio aprobación al Pacto Internacional de Derechos Civiles y Políticos que recepta la garantía del plazo razonable en su artículo 14.3c, incorporado luego a la Constitución Nacional en virtud del art. 75 inc. 22,

Y CONSIDERANDO:

Que el pueblo de la Nación viene sufriendo un creciente estado de inseguridad en los últimos años como consecuencia del flagelo ocasionado por el crimen organizado y el narcotráfico. Que parte importante de ese crecimiento ha tenido y tiene por causa una ineficiente respuesta policial en la prevención y la represión del delito, así como una notoria ineficacia en razón de importantes demoras en los procesos formados para su juzgamiento. Que la garantía establecida en el artículo 14.3.c del citado Tratado, ratificado por la ley que se reglamenta en el presente, consistente en el compromiso de la Nación de juzgar a las personas sin dilaciones indebidas, derecho constitucional que se extie

#!/usr/env python
# /// script
# requires-python = ">=3.11"
# dependencies = [
# "pip-requirements-parser",
# "rich",
# ]
# ///
"""
@mgaitan
mgaitan / KnowBe4 2024 Kevin Mitnick Security Awareness Training.md
Last active July 19, 2024 18:23
my answers for KnowBe4 "2024 Kevin Mitnick Security Awareness Training - 45 minutes"

Question 1

You receive a suspicious email. What is the most important reason to report it rather than just delete it?

  • If you delete it, you might accidentally click on it from your deleted items folder.
  • Others likely received the same email and might not know it was a phishing attempt.
  • Phishing emails can still infect your computer even if they are deleted.
  • You don’t have to report it; just delete it so you are safe from the attack and don’t have to worry about it at all.

# This file was autogenerated by uv via the following command:
# make dependencies
backoff==2.2.1 \
--hash=sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba \
--hash=sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8
# via
# opentelemetry-exporter-otlp-proto-grpc
# opentelemetry-exporter-otlp-proto-http
boto3==1.26.44 \
--hash=sha256:4f4c3018caf2ddaf355f202be8ff48c5ecf9d4208d6d6c581055428fcfa2309b \
@mgaitan
mgaitan / README.md
Created May 29, 2024 23:43
Playwright-pytest login just once per session (sharing storage state)

Simplest way to use Playwright sharing the "state" among tests.

The first test won't have the storage file so it will get a new empty page with no context and set it up / login.

Further tests will get a Page instance injected that has the same context as the first one, reusing the signed-in state.

Check https://playwright.dev/python/docs/auth#reusing-signed-in-state

@mgaitan
mgaitan / pastebin.txt
Created May 28, 2024 11:37
image pastebin
paste images as comments!
@mgaitan
mgaitan / README.md
Last active February 8, 2024 14:19
La Mandibula de Zago

Oscar Zago es el presidente del bloque de Diputados de La Libertad Avanza.

Al menos durante declaraciones a periodísticas, parece tener problemas mandibulares. ¡Ayudale a dejarla en su lugar!

Este es un juego sin fines de lucro que no juzga las libertades de los individuos para consumir sustancias o votar leyes de acuerdo a sus creencias.

BEGIN:VCALENDAR
BEGIN:VEVENT
SUMMARY:La Calma 1
DTSTART;TZID=America/Buenos_Aires:20240108T000000
DTEND;TZID=America/Buenos_Aires:20240108T000000
DTSTAMP:20231129T173523Z
END:VEVENT
BEGIN:VEVENT
SUMMARY:La Calma 1
DTSTART;TZID=America/Buenos_Aires:20240109T000000
@mgaitan
mgaitan / git-split-commit
Created November 9, 2023 14:36
Replaces a target commit with multiple smaller commits
#!/usr/bin/env python3
"""
Replaces a target commit with multiple smaller commits and then reapplies
the subsequent commits on top of it. The original commit is split by each changed file, and then subsequent
commits are cherry-picked on top of the new split commits.
It's useful to fine-grain a `git bisect` to find a problematic change.
Usage: