Skip to content
View mfilipelino's full-sized avatar
🏠
Working from home
🏠
Working from home
  • SSense
  • Montreal - Canada
Block or Report

Block or report mfilipelino

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
mfilipelino/README.md
  • 👋 Hi, I’m @mfilipelino
  • 👀 I’m interested in Computer Science and Distributed Systems
  • 🌱 I’m currently learning about Machine Learning and Deep Learning

If you can't play, you can't learn

Pinned Loading

  1. CB-SMoT CB-SMoT Public

    The CB-SMoT (Clustering-Based Approach for Discovering Interesting Places in a Single Trajectory) - Data: http://www.sptrans.com.br/

    Python 6

  2. cdc-event-souce-generator cdc-event-souce-generator Public

    Python

  3. prolog.pl prolog.pl
    1
    /*1 - Definir um predicado que faça a inserção de um elemento na primeira posição de uma lista */
    2
    
                  
    3
    inserePrimeira(X,L,[X|L]).
    4
    
                  
    5
    /*2 - Definir um predicado que faça a inserção de um elemento na posição N da lista*/
  4. Gerador de labirinto e buscador de c... Gerador de labirinto e buscador de caminho usando busca em profundidade.
    1
    # -*- coding: utf-8 -*-
    2
    '''
    3
    Gerador de Labirinto e busca A*
    4
    Aplicativo que gera labirinto e monstra o caminho da origem ao destino utilizando o algoritmo de busca A*
    5
  5. robocircuit.c robocircuit.c
    1
    #define SPEED 75
    2
    #define	INPUT_BLACKCOLOR 1
    3
    #define	INPUT_BLUECOLOR 2
    4
    #define	INPUT_GREENCOLOR 3
    5
    #define	INPUT_YELLOWCOLOR 4
  6. catdog.c catdog.c
    1
    #include <stdlib.h>
    2
    #include <GL/glut.h>
    3
    #include <stdio.h>
    4
    #include <math.h>
    5