Skip to content
View orel-adivi's full-sized avatar
✉️
Feel free to contact me!
✉️
Feel free to contact me!

Highlights

  • Pro
Block or Report

Block or report orel-adivi

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

Hi there 👋, I'm Orel Adivi!

My name is Orel Adivi, and I am a software engineering student 🖥️ and a teaching assistant at Technion - Israel Institute of Technology.

This is what I currently do:

  • 🌱 I am currently working on my bachelor's degree in software engineering in the Technion.
  • 🔭 I am currently a teaching assistant at the "Introduction to Computer Science" course (for electrical engineering & computer science students), in the Technion.
  • 💬 Ask me about computer science, tissue engineering, and phonology.

Reach me here: 📫 Email (orel.adivi [at] gmail.com), 🌐 Personal website, 📖 Facebook, 💼 LinkedIn, ⌨️ GitHub.

Pinned Loading

  1. CodingBlocks5/PuppetBlocks CodingBlocks5/PuppetBlocks Public

    Learn programming with blocks and a puppet.

    JavaScript 6 1

  2. CorSys CorSys Public

    Synthesizing best-effort Python expressions while weighting the chance for mistakes in given user outputs.

    Python 4 1

  3. orel-adivi.github.io orel-adivi.github.io Public

    Orel Adivi's personal website

    HTML 1

  4. Random-Greedy Random-Greedy Public

    Generating and comparing low-rate deletion correcting codes.

    Python 2

  5. This program is a Prolog program tha... This program is a Prolog program that simulates a Turing machine.
    1
    get_val(0, [X|_], X) :- !.
    2
    get_val(I, [_|Xs], V) :- Inew is I - 1, get_val(Inew, Xs, V).
    3
    
                  
    4
    member(X, [X|_]).
    5
    member(X, [_|Ys]) :- member(X, Ys).
  6. This program shows the time complexi... This program shows the time complexity differences between different implementations for Fibonacci number calculation.
    1
    import time
    2
    
                  
    3
    def iterative_fibonacci(num):
    4
    	current = 1
    5
    	prev = 0