Skip to content
View geovanisouza92's full-sized avatar
🏠
Working from home
🏠
Working from home

Organizations

@cyclejs-community
Block or Report

Block or report geovanisouza92

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
geovanisouza92/README.md

Hi there 👋

Pinned

  1. geo geo Public

    Geo programming language based on https://interpreterbook.com/

    Go 14 1

  2. irpf-docker irpf-docker Public

    Dockerfile 33 6

  3. Cartesian Product algo Benchmark Cartesian Product algo Benchmark
    1
    const Benchmark = require('benchmark');
    2
    const suite = new Benchmark.Suite();
    3
    
                  
    4
    const A = Array(3).fill(null).map((_, index) => index + 1);
    5
    const B = A.map((a) => [a, a * -1]);
  4. A builder type where build() only ap... A builder type where build() only appears after correct initalization
    1
    interface Buildable<T> {
    2
      build(): T;
    3
    }
    4
    
                  
    5
    type HasSawThickness = { sawThickness: number };
  5. Reactive expression evaluator Reactive expression evaluator
    1
    import {run} from '@cycle/xstream-run'
    2
    import {makeDOMDriver, div, input, button, label} from '@cycle/dom'
    3
    import {makeLocalStorageDriver} from 'cyclejs-storage'
    4
    import Collection from '@cycle/collection'
    5
    import xs from 'xstream'
  6. filter-context.ts filter-context.ts
    1
    /* eslint-disable @typescript-eslint/no-non-null-assertion */
    2
    
                  
    3
    type Job = {
    4
      id: number;
    5
      code: string;