Skip to content
View Nipsuli's full-sized avatar

Organizations

@TheGrowthEngineeringCompany

Block or report Nipsuli

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. tauri-plugin-clerk tauri-plugin-clerk Public

    Official community maintained Clerk SDK for Tauri

    TypeScript 13

  2. clerk-fapi-rs clerk-fapi-rs Public

    Unofficial Clerk Frontend API SDK for Rust

    Rust 12 3

  3. datamodels datamodels Public

    JSON (De)Serialization for python 3.7 dataclasses

    Python 2

  4. dotfiles dotfiles Public

    My personal machine setup scripts and configs

    Shell 1

  5. Numerically stable parallel safe sta... Numerically stable parallel safe standard deviation in PostgreSQL
    1
    CREATE OR REPLACE FUNCTION _wstd_state(state numeric[3], val numeric, weight numeric)
    2
      RETURNS numeric[3] AS $$
    3
      DECLARE
    4
        s_n_1 CONSTANT numeric NOT NULL := state[1];
    5
        mu_n_1 CONSTANT numeric NOT NULL := state[2];
  6. Two pass shuffle implementation for ... Two pass shuffle implementation for algorithm described: in https://blog.janestreet.com/how-to-shuffle-a-big-dataset/
    1
    import contextlib
    2
    import tempfile
    3
    import random
    4
    
                  
    5