Skip to content
View lukediamond's full-sized avatar

Organizations

@bonfire-xmpp

Block or report lukediamond

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. bonfire-xmpp/bonfire bonfire-xmpp/bonfire Public

    A modern XMPP client

    Vue 4

  2. eqgen-py eqgen-py Public

    Generates EqualizerAPO presets from pink noise

    Python

  3. Nelder-Mead Trinomial Fitting Nelder-Mead Trinomial Fitting
    1
    import numpy as np
    2
    
                  
    3
    def calc_mse(params, points):
    4
    	a, b, c = params
    5
    	deviations = a*np.power(points[:, 0], 2) + b*points[:, 0] + c - points[:, 1]
  4. E2 Rocket PD Controller E2 Rocket PD Controller
    1
    # https://www.youtube.com/watch?v=WB5VggLmqCU
    2
    
                  
    3
    @name 
    4
    @inputs Pitch:number Yaw:number Roll:number Height:number Pos:vector
    5
    @outputs TA:number DA:vector TB:number DB:vector
  5. Inverse Kinematics (jsfiddle) Inverse Kinematics (jsfiddle)
    1
    <!-- https://jsfiddle.net/5na1v28g/ -->
    2
    <canvas id="cvs" width="800" height="800"></canvas>
  6. opus streaming over UDP opus streaming over UDP
    1
    #include <condition_variable>
    2
    #include <cassert>
    3
    #include <vector>
    4
    #include <mutex>
    5
    #include <winsock2.h>