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

Block or report VaskillerDev

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. SQL-92 reserved words.rs SQL-92 reserved words.rs
    1
    // Database Language SQL (SQL-92)
    2
    
                  
    3
    // A
    4
    pub const ABSOLUTE : &str = "ABSOLUTE";
    5
    pub const ACTION : &str = "ACTION";
  2. immutable quadtree implementation immutable quadtree implementation
    1
    use std::fmt::Debug;
    2
    use std::mem;
    3
    use crate::quad_tree::shape::{Point, Rectangle};
    4
    
                  
    5
    pub struct QuadTree<TValue: Debug> {
  3. qdb-sql qdb-sql Public

    A distributed relational database with a minimal set of dependencies and with SQL-92 support. Has slim runtime layer. Currently at the MVP stage.

    Rust

  4. ex0 ex0 Public

    Working out test tasks from interviews and LeetCode

    C#

  5. groupBy(arr, func) on typescript groupBy(arr, func) on typescript
    1
    type FunctionTypeAsKey = number | string;
    2
    type ClusterFuncSignature<T> = (e: T) => FunctionTypeAsKey;
    3
    type Group<T> = {
    4
        [k in FunctionTypeAsKey] : Array<T>
    5
    }
  6. immg immg Public

    Import maps module generator (immg). Import maps allows control over what URLs get fetched by JavaScript import statements and import() expressions.

    TypeScript