Skip to content
View userhooke's full-sized avatar

Block or report userhooke

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. off-side-parser off-side-parser Public

    Off-side (indented) syntax parser

    TypeScript

  2. toypl toypl Public

    A toy programming language created for learning purpose.

    TypeScript

  3. send-to-inbox-pwa send-to-inbox-pwa Public

    JavaScript

  4. eq-quiz eq-quiz Public

    Find out your emotional style

    HTML

  5. simple lexer, parser and evaluator t... simple lexer, parser and evaluator to run calculations
    1
    const assert = require('assert').strict;
    2
    const readline = require('readline');
    3
    
                  
    4
    const TOKEN_TYPES = {
    5
      INT: 'INT',
  6. Serverless script to link Monobank A... Serverless script to link Monobank API and YNAB
    1
    const ynab = require("ynab");
    2
    const ynabAPI = new ynab.API(process.env.YNAB_TOKEN);
    3
    const adMaioraBudgetId = process.env.BUDGET_ID;
    4
    const monoDebitAccountId = process.env.MONO_DEBIT_ACCOUNT_ID;
    5