Skip to content
View alyssonbruno's full-sized avatar
🤑
I'm here!
🤑
I'm here!

Organizations

@TRE-TO @ABNFS

Block or report alyssonbruno

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
alyssonbruno/README.md
  • 👋 Hi, I’m Alysson Bruno, Husband, Father, Programmer, Professor, Research and Student.
  • 👀 I’m interested in Science, Programming, Data Vizualization, and more thinks like this others one.
  • 🌱 I’m currently learning cybersecurity
  • 📫 How to reach me @alyssonbruno in Twitter, Linkedin and here

Pinned Loading

  1. Make a clone of one file or device. ... Make a clone of one file or device. Emule the command dd, without type conversion
    1
    
                  
    2
    import io
    3
    import mmap
    4
    from typing import Optional
    5
    
                  
  2. file-down-count file-down-count Public

    A simple file download counter

  3. makepass makepass Public

    Make a random password with a few worlds (4 by default) in a selected language (pt_BR by default)

    Python

  4. testa_servico testa_servico Public

    Verifica se os dados enciados para um servi;co está correto

    Python

  5. todo todo Public

    A Simple To-Do Application

    Java

  6. Verificando expressão numérica Verificando expressão numérica
    1
    def eval_expr(text):
    2
        test_char = lambda c: c in '1234567890.,*/+-()'
    3
        for char in text:
    4
            if not test_char(char):
    5
                raise Exception('Invalid Char in String')