Skip to content

Instantly share code, notes, and snippets.

@Addin
Addin / rst_carta.md
Last active September 21, 2024 04:43
Carta abierta eliminación RST

Carta Abierta en Defensa del Régimen Simple de Tributación (RST)

Estimado Señor Presidente y miembros del Gobierno,

Como gremio de trabajadores de software y profesionales independientes en Colombia, queremos expresar nuestra preocupación ante la propuesta de eliminar el Régimen Simple de Tributación (RST) en la próxima reforma tributaria. El RST ha sido una herramienta fundamental para nosotros y miles de trabajadores por cuenta propia en todo el país, simplificando nuestras obligaciones fiscales y fomentando la formalización.

Beneficios del RST para nuestro sector

  1. Facilidad tributaria:
  • El RST ha reducido trámites y costos, lo que facilita el cumplimiento fiscal, especialmente para quienes ofrecemos servicios al exterior.
@Scot3004
Scot3004 / poo_en_python_with_plant.ipynb
Last active August 28, 2023 23:31
poo_en_python_with_plant.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Scot3004
Scot3004 / introducci-n-a-python.ipynb
Created July 11, 2022 21:02
Introducción a python.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Marcas locales

Lista de mis marcas locales favoritas por categoría #supportLocal 🍃 Marcas colombianas con productos hechos en casa 🇨🇴

Ropa 👗

@osw4l
osw4l / commands.sh
Last active July 24, 2024 02:54
deploy django-osw4l 2020
sudo su -
# update so
sudo apt update
sudo apt upgrade
# install curl
sudo apt install curl
#install docker-compose via curl
@Lh4cKg
Lh4cKg / install_hp.sh
Last active September 2, 2024 02:09
Installing networked HP printer and scanner on Fedora Linux
# docs for more information see the official HPLIP project site here.
# https://developers.hp.com/hp-linux-imaging-and-printing
# Step 1. Update Fedora Linux
# Simply run dnf command:
$ sudo dnf upgrade
# Step 2. Search for HPLIP software
@Klerith
Klerith / preferencias_usuario.dart
Last active March 10, 2023 22:27
Flutter: Configuración singleton para las preferencias del usuario
import 'package:shared_preferences/shared_preferences.dart';
/*
Recordar instalar el paquete de:
shared_preferences:
Inicializar en el main
final prefs = new PreferenciasUsuario();
await prefs.initPrefs();
@jdnichollsc
jdnichollsc / ABC.md
Last active September 18, 2024 05:06
The Job Interview Guide

The Job Interview Guide 💼

And English is a Work in Progress ⌛

@sww314
sww314 / Dockerfile
Created July 24, 2018 19:42
Django + PostGIS Docker File
FROM python:3.6-alpine
ENV PYTHONUNBUFFERED 1
RUN apk update \
# psycopg2 dependencies
&& apk add --virtual build-deps gcc python3-dev musl-dev \
&& apk add postgresql-dev \
# Pillow dependencies
&& apk add jpeg-dev zlib-dev freetype-dev lcms2-dev openjpeg-dev tiff-dev tk-dev tcl-dev \
@delgadofarid
delgadofarid / models.py
Created June 16, 2018 17:17
Corrección Manual Django Semana 2 - 5. Modelos de Django
from django.db import models
from django.utils import timezone
class Post(models.Model):
author = models.ForeignKey(
'auth.User',
on_delete=models.CASCADE, #Cambio incluido
)
title = models.CharField(max_length=200)
text = models.TextField()