Skip to content
View rajkane's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report rajkane

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

Hi there 👋

My name is Daniel. I'm an Engineer of Information and Control Systems. I'm programming in Python and Spel+. My most used development tools are IDE PyCharm and IDE Epson RC+. I also focus on vision systems and convolutional neural networks.

  • 🔭 I’m currently working on Tatiana project
  • 🌱 I’m currently learning on threading
  • 📫 How to reach me:

Pinned

  1. rajkane rajkane Public

  2. AquaLight-Calculator AquaLight-Calculator Public

    I created this application for aquarists who need to calculate the optimal lighting for their tanks.

    Python

  3. Fibonacci with memotization Fibonacci with memotization
    1
    from functools import wraps
    2
    import time
    3
    
                  
    4
    
                  
    5
    total = []
  4. coffee-mania coffee-mania Public

    a small application developed for me and my colleague. Since we are both coffee lovers and often one of us is missing small coins, we invite each other =].

    Python

  5. recursion_fibonacci.py recursion_fibonacci.py
    1
    def recursion_fibonacci(n: int):
    2
        """ recursion fibonacci sequence function """
    3
        return n if n <= 1 else fib_recursive(n - 1) + fib_recursive(n - 2)