Giter Site home page Giter Site logo

pysignal's Introduction

Hi, I'm Dhruv Govil

Hi, I'm Dhruv. I'm currently a Software Engineer, working on Spatial Computing Content Pipelines for Apple Logo Apple Vision Pro. My background is as an artist and software developer in Visual Effects and Animation. I enjoy working as a mix of art and technology.

My opinions, repos and other content here are not a reflection of my employers, unless otherwise specified or agreed. I am making my contributions/submissions to the projects in my personal capacity and am not conveying any rights to any intellectual property of any third parties.

My code repos remain up as a reference but will not be modified further, with the exception of those with employer approval or as administrative actions.

Facts About Me

  • ๐Ÿ‡จ๐Ÿ‡ฆ๐Ÿ‡ฎ๐Ÿ‡ณliving in ๐Ÿ‡จ๐Ÿ‡ฆ, formerly in ๐Ÿ‡บ๐Ÿ‡ธ
  • ๐Ÿ˜„ Pronouns: He/Him
  • ๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ป Programming Polyglot with a focus on Python, Rust, Swift, C++, C# among others.
  • โœจ I love to Animate as well as designing UI & UX.
  • ๐Ÿ’ฌ My name is pronounced dh ส€ /oo/ v, or it's Drew with a V added on. Don't worry about it.
  • ๐Ÿ“ธ I shoot live concerts and I play ๐ŸŽธguitar in my free time.

Notable Work

Apple Vision Pro
Apple Vision Pro

Software Engineer working on Spatial Computing Content Pipelines.
Alliance for OpenUSD
Alliance for OpenUSD

Founding member of Alliance for OpenUSD. Working on File Format specification.
App Clip Code
App Clip Code

Responsible for creating the generator, early visual designs and worked on demo content.
SmallFoot
SmallFoot
Pipeline Supervisor (One of Two).
Spider-Man: Homecoming
Spider-Man: Homecoming
Pipeline and Layout Supervisor.

pysignal's People

Contributors

adricepic avatar boredstiff avatar dgovil avatar jacobfeder avatar ldunham1 avatar mc-risson avatar merikesh avatar synapticarbors avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

pysignal's Issues

AttributeError: 'ClassSignalFactory' object has no attribute 'register'

With python 3.6 using the following code:

from PySignal import *

def greet(name):
    print("Hello,", name)

class Foo(object):
    started = ClassSignal()
    classSignalFactory = ClassSignalFactory()
    classSignalFactory.register('Greet') #Causes an error
    
    def __init__(self):
        super(Foo, self).__init__()
        self.started.connect(greet)
        self.started.emit('Watson')

        self.signalFactory = SignalFactory()
        self.signalFactory.register('Greet')
        self.signalFactory['Greet'].connect(greet)
        self.signalFactory['Greet'].emit('Sherlock')
         
        self.classSignalFactory['Greet'].connect(greet)
        self.classSignalFactory['Greet'].emit('Moriarty')
        
        ended = Signal()
        ended.connect(greet)
        ended.emit('Mycroft')

foo = Foo()

Threading support, queued Signal connections

Firstly, this project is super cool, thanks for tackling this!

Looking through your tests and code, I don't see much in regards to threading support, or implications of using signals for thread communication. At least in Qt, I see that as a major feature of Signals and Slots. The ability to send a signal/message to a thread and have that message queue is a pretty awesome feature. While I don't see explicit support for this, it's possible that "it just works." If that's the case, it would be great to see some examples of it's usage in a threading context.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.