Skip to content
Avatar

Highlights

  • Arctic Code Vault Contributor

Pinned

  1. Python addon for creating paper models in Blender (development version)

    Python 295 44

  2. Webcam-based eye tracker

    C++ 4

  3. Robot for pwning the Ketchup House competition

    Java 1

  4. 1
    #!/usr/bin/python3
    2
    import cv2
    3
    import numpy
    4
    import pyautogui
    5
    
                  
  5. 1
    def format_dict(obj, refs=tuple()):
    2
        return "<< " + "".join("/{} {}\n".format(key, format_value(value, refs)) for (key, value) in obj.items()) + ">>"
    3
    
                  
    4
    def format_value(value, refs=tuple()):
    5
        if value in refs:
  6. 1
    def pairs(seq, cyclic=True):
    2
        it = iter(seq)
    3
        first = prev = next(it)
    4
        for here in it:
    5
            yield prev, here

50 contributions in the last year

Sep Oct Nov Dec Jan Feb Mar Apr May Jun Jul Aug Sep Mon Wed Fri

Contribution activity

September 2020

Seeing something unexpected? Take a look at the GitHub profile guide.

You can’t perform that action at this time.