Skip to content
View timotgl's full-sized avatar
Block or Report

Block or report timotgl

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

  1. inspector-bokeh inspector-bokeh Public

    Canvas-based blur detection with JavaScript

    JavaScript 43 13

  2. How to fully uninstall Razer Synapse... How to fully uninstall Razer Synapse 2 on OS X (10.11-10.13) (El Capitan, Sierra, High Sierra) without using Razer's official uninstall tool
    1
    # How to uninstall Razer Synapse 2 ( https://www.razerzone.com/synapse-2 )
    2
    # on OS X (10.11-10.13) (El Capitan, Sierra, High Sierra)
    3
    # without using Razer's official uninstall tool.
    4
    
                  
    5
    # Tested on OS X 10.11.5 in July 2016.
  3. photostream photostream Public

    A photo gallery JavaScript single page app built with React, Redux, and Typescript.

    TypeScript 2 1

  4. photostream-next photostream-next Public

    A photo gallery JavaScript app built with Next.js 14, React, and Typescript.

    TypeScript

  5. sparerpauschbetrag-durch-etf-verkauf-ausnutzen sparerpauschbetrag-durch-etf-verkauf-ausnutzen Public

    A React app that calculates how many shares (of stocks, ETFs, etc.) you need to sell to take advantage of the tax free amount for capital gains ("Sparer-Pauschbetrag") as regulated in the german in…

    TypeScript

  6. curryAndCall as a prototype method f... curryAndCall as a prototype method for Functions
    1
    Function.prototype.curryAndCall = function () {
    2
        var args = Array.prototype.slice.call(arguments);
    3
        
    4
        var curry = function (originalFunc, collectedArgs) {
    5
            return function () {