Skip to content
View eengineergz's full-sized avatar

Block or report eengineergz

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 is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Learning-with-Udemy-C-course Learning-with-Udemy-C-course Public

    Relearning how to code in C++ (it's been a while) (pun intended)(please forgive code style, structure & general readability; this is learning/practice only)

    C++ 1

  2. blog-templates blog-templates Public

    Forked from bgoonz/blog-templates

    Different styles of web-architecture with a focus on blogging.

    JavaScript

  3. knowledge knowledge Public

    Forked from nikivdev/go

    Everything I know

    Go

  4. fastfib.js fastfib.js
    1
    function fastFib(n, memo = {}) {
    2
      if (n in memo) return memo[n];
    3
      if (n === 1 || n === 2) return 1;
    4
      memo[n] = fastFib(n - 1, memo) + fastFib(n - 2, memo);
    5
      return memo[n];
  5. linsearch.js linsearch.js
    1
    function search(array, term) {
    2
      for (let i = 0; i < array.length; i++) {
    3
        if (array[i] === term) {
    4
          return i;
    5
        }
  6. gif-tool gif-tool Public

    JavaScript