Skip to content
View JonathanGawrych's full-sized avatar

Block or report JonathanGawrych

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. Given an key of a deep object and yo... Given an key of a deep object and you're trying to find a path to it, BFS and print the path
    1
    const findPathByKey = (ob, key) => {
    2
    	const found = new Set();
    3
    	const queue = [{obj: ob, path: []}];
    4
    	let pathLength = 0;
    5
    	while (queue.length > 0) {
  2. Because Virtual Scroll sucks, disabl... Because Virtual Scroll sucks, disable it so you can use native search
    1
    // ==UserScript==
    2
    // @name         Disable Virtual Scroll in JIRA
    3
    // @version      2025-01-02
    4
    // @description  Because Virtual Scroll sucks, disable it so you can use native search
    5
    // @author       Jonathan Gawrych
  3. budget-merger budget-merger Public template

    Forked from ynab/ynab-api-starter-kit

    Allows you to merge budgets together. Useful if you are combining finances ❤️ or want to revert "Make a Fresh Start".

    Vue

  4. php-meminfo php-meminfo Public

    Forked from BitOne/php-meminfo

    PHP extension to get insight about memory usage

    PHP