Skip to content
View jafetbntz's full-sized avatar

Block or report jafetbntz

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. simple-ftp-server.py simple-ftp-server.py
    1
    from pyftpdlib.authorizers import DummyAuthorizer
    2
    from pyftpdlib.handlers import FTPHandler
    3
    from pyftpdlib.servers import FTPServer
    4
    
                  
    5
    authorizer = DummyAuthorizer()
  2. Utility Scripts Utility Scripts
    1
    # -*- coding: utf8 -*-
    2
    
                  
    3
    while 1 == 1:
    4
        
    5
        file = input('Ingerse la ruta del archivo a convertir: ')
  3. ionic-rich-text ionic-rich-text Public

    Forked from IsmaFunes/IonicRichText

    Simple rich text editor for ionic 3 apps

    TypeScript

  4. cntxt cntxt Public

    Python

  5. hermes hermes Public

    The project contains a microservice to receive a list of coordinates (a path) and generates a map snapshot drawing the path for those coordinates through a call to MapBox's Static Images API.

    Python

  6. Ejercicio 23 del libro Álgrebra Line... Ejercicio 23 del libro Álgrebra Lineal de Kolman, Pag. 24,
    1
    from math import*
    2
    
                  
    3
    
                  
    4
    def get_module(x):
    5
       return round(sqrt(sum([a*a for a in x])),3)