Skip to content
View nataliemarleny's full-sized avatar
🧠
Thinking about thinking
🧠
Thinking about thinking

Organizations

@indentinc @shardsys
Block or Report

Block or report nataliemarleny

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. vercel/next.js vercel/next.js Public

    The React Framework

    JavaScript 121k 25.9k

  2. indentinc/sanityio-referenced-by indentinc/sanityio-referenced-by Public

    Sanity plugin for viewing resources which reference a particular resource.

    JavaScript 17 4

  3. Script to evaluate the percentage of... Script to evaluate the percentage of the size of a pattern in the JavaScript files of a given url
    1
    #!/usr/bin/env bash
    2
    set -eu -o pipefail
    3
    # Script expects these binaries to be present:
    4
    # - wget
    5
    # - node
  4. Memoization Example Memoization Example
    1
    const fs = require("fs");
    2
    
                  
    3
    // "4\n1\n2\n5\n3"
    4
    const input = fs.readFileSync(0).toString();
    5