Skip to content

Instantly share code, notes, and snippets.

View Jonamaita's full-sized avatar
🚀
I am Learning!

Jonathan Jonamaita

🚀
I am Learning!
View GitHub Profile
@Jonamaita
Jonamaita / instructions.md
Last active January 3, 2025 13:42 — forked from matthewjberger/instructions.md
Install a nerd font on ubuntu

1.) Download a Nerd Font

2.) Unzip and copy to ~/.fonts

3.) Run the command fc-cache -fv to manually rebuild the font cache

@Jonamaita
Jonamaita / settings.py
Created September 22, 2022 13:17 — forked from jurrian/settings.py
Client-side rate limiting for Sentry
import logging
import sentry_sdk
from ratelimitingfilter import RateLimitingFilter
from sentry_sdk.integrations.django import DjangoIntegration
from sentry_sdk.integrations.logging import LoggingIntegration
# Sentry
sentry_logging = LoggingIntegration(
level=logging.INFO, # Capture info and above as breadcrumbs
@Jonamaita
Jonamaita / comandos_manejo_texto.md
Created June 28, 2021 03:39
Comandos para manejo de Texto

CAT

Este comando nos sirve para mostrar texto de un fichero.

cat /etc/issue

Si queremos ver el número de linea.

cat -n /etc/issue

@Jonamaita
Jonamaita / instalar_podman_ubuntu.md
Last active May 17, 2021 02:56
¿ Como instalar Podman para ubuntu 20.04?

¿ Como instalar Podman para ubuntu 20.04?

  1. Creamos un archivo llamado podman.list dentro del directorio /etc/apt/sources.list.d/.

  2. Dentro el archivo escribimos lo siguiente:

    deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/testing/xUbuntu_20.04/ /
@Jonamaita
Jonamaita / comandos_docker.md
Last active May 17, 2021 02:46
Comandos Docker

Comandos generales

Descargar una imagen:

docker pull <image_name>

Borrar una imagen:

@Jonamaita
Jonamaita / semantica_commits.md
Last active May 17, 2021 02:39
Semánticas para commits

Semántica commits

Este archivo contiene algunas semánticas para los commits:

feat - A new feature
fix - A bug fix
docs - Documentation only changes
style - Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
refactor - A code change that neither fixes a bug nor adds a feature
@Jonamaita
Jonamaita / curl.md
Last active March 8, 2022 18:13 — forked from subfuzion/curl.md
curl examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.