Skip to content
View jkcgs's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report jkcgs

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
jkcgs/README.md

who am I

I do python stuff, mainly web development, using Django and Flask. I'm also (ocasionally) working on a Discord bot called AlexisBot.

I'm also a software engineer, with a degree from Universidad de La Frontera, from Temuco, Chile.

You can follow me at @lile.cl@mak

Pinned Loading

  1. alexis-bot alexis-bot Public

    Another Discord bot, initially created for /r/chile's guild (https://discord.gg/chile)

    Python 9 7

  2. bot-language-manager bot-language-manager Public

    It manages language files for this certain bot. Made in motherf*cking Electron.

    JavaScript

  3. Mirror-UFRO/mirror-ufro-status Mirror-UFRO/mirror-ufro-status Public

    Flask application that powers the UFRO mirror status page

    Python 2

  4. nginx ssl rules TLSv1.2, gives A+ on... nginx ssl rules TLSv1.2, gives A+ on qualys ssl test
    1
    upstream backend {
    2
        server unix:///tmp/backend.sock;
    3
    }
    4
    
                  
    5
    server {
  5. find_str, una función bastante útil ... find_str, una función bastante útil para hacer scrapping sin tener que usar bs4.
    1
    def find_str(cont, ini, end):
    2
        """
    3
        Busca una cadena de texto según una cadena inicial y otra final. Extrae el texto que está
    4
        inmediatamente después de la cadena inicial, para buscar la cadena final desde la inicial,
    5
        y devuelve el texto que está entre ellos, sin incluir las cadenas de búsqueda.