Skip to content
View dmazzer's full-sized avatar

Block or report dmazzer

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

Pinned Loading

  1. hass-interface hass-interface Public

    Hardware interface for Home Assistant

    C++ 1

  2. Forwarding IPv4 Ports to IPv6 Hosts Forwarding IPv4 Ports to IPv6 Hosts
    1
    #!/bin/bash
    2
    
                  
    3
    # UDP: 
    4
    socat UDP4-LISTEN:5683,fork,su=nobody UDP6:[aaaa::212:4b00:615:a1f7]:5683
    5
    
                  
  3. CoolMilkDevice CoolMilkDevice Public

    Hackathon project to control milk cooling tank.

    Python 2

  4. nrf5-tools nrf5-tools Public

    Stuff to help the development with Nordic NRF52840.

    Makefile 2

  5. flask-mongoengine-tutorial.py flask-mongoengine-tutorial.py
    1
    # http://docs.mongoengine.org/tutorial.html
    2
    from mongoengine import *
    3
    
                  
    4
    db = connect('tumblelog')
    5
    db.drop_database('tumblelog')