Skip to content
View kerenskybr's full-sized avatar
๐Ÿค–
___
๐Ÿค–
___
Block or Report

Block or report kerenskybr

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
kerenskybr/README.md

Hi there, welcome to my GitHub profile :octocat:

LinkedIn Badge
  • ๐Ÿ‡ง๐Ÿ‡ท My name is Roger Monteiro and I'm from Brazil

  • ๐Ÿข Iโ€™m currently working as Sysadmin at Deeper Systems

  • ๐ŸŽ“ I have a degree in System Analysis and a post graduation in Data Science

  • ๐Ÿ˜ธ Feel free to connect with me through LinkedIn

Skills:

  • ๐Ÿ Python
  • ๐Ÿƒ MongoDB
  • ๐Ÿง Linux
  • ๐Ÿ’ฝ OpenCV
  • ๐Ÿณ Docker
  • ๐Ÿ’ป Unity 3D
  • ๐ŸŽฎ Godot
  • ๐ŸŽจ Blender

I have also written some articles in the area of machine learning. You can find them on my linkedin profile ๐Ÿฐ

Visitor Count

Pinned Loading

  1. 26_weeks_datascience 26_weeks_datascience Public

    Jupyter Notebook 63 28

  2. odt_to_pdf odt_to_pdf Public

    Simple tool for converting odt files to pdf

    Python 1 1

  3. papers_publicados papers_publicados Public

    Papers publicados / Published papers

  4. Remove null keys and values from a n... Remove null keys and values from a nested structure of dicts, tuple and lists
    1
    def remove_none(json_file):
    2
    	""" Remove null keys and values from
    3
    	a nested structure of dicts, tuple and lists.
    4
    	"""
    5
    	if isinstance(json_file, (list, tuple, set)):
  5. Function to find intersection betwee... Function to find intersection between two lines
    1
    def intersection(horizontal, vertical):
    2
        # https://en.wikipedia.org/wiki/Line%E2%80%93line_intersection
    3
        # Horizontal x y x y
    4
        # Vertical x y x y
    5
        # x1, y1, x2, y2, x3, y3, x4, y4
  6. Divide a list in chunks from given size Divide a list in chunks from given size
    1
    def divide_chunks(a_list, chunk_size):
    2
        """Divide a list in chunks from given size
    3
        """
    4
    
    
    5
        for i in range(0, len(a_list), chunk_size):