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

Block or report SamuelNittala

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. tic-tac-toe tic-tac-toe Public

    Tic Tac Toe mutiplayer using websockets

    Go

  2. JobFilter JobFilter Public

    Job filter page, built with react+ts.

    TypeScript 1

  3. jane-street: answer facts problem (h... jane-street: answer facts problem (https://www.youtube.com/watch?v=V8DGdPkBBxg)
    1
    const facts = [
    2
      ['m', 3.28, 'ft'],
    3
      ['m', 100, 'cm'],
    4
      ['ft', 12, 'in'],
    5
      ['hr', 60, 'min'],
  4. save-progress save-progress Public

    Save the progress of your last visited episode irrespective of the number of users watching on that account.

    TypeScript 1

  5. type-level palindrome type-level palindrome
    1
    type FirstCharacter<T extends string> = T extends `${infer first}${infer rest}`
    2
      ? first
    3
      : T;
    4
    
                  
    5
    type LastCharacter<T extends string> = T extends `${infer first}${infer rest}`