Skip to content
View asher-dev's full-sized avatar

Block or report asher-dev

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.

Content in all repositories owned by your account will be closed.
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. InTwoMirrorInTwoMirrorPublic

    Public mirror of repo for In Two, a two-player co-op puzzle game developed in Unity.

    C#

  2. odds-and-endsodds-and-endsPublic

    Collection of Miscellaneous Sketches

    JavaScript

  3. tile-compiletile-compilePublic

    CSP Solver for a children's tile-placing game (CSC384 Final Project)

    Python

  4. Promises in ES6, for asynchronous se...Promises in ES6, for asynchronous sequences
    1
    ## A Primer on Promises in ES6
    2
    3
    *(Post was originally written as a response to a question about how to resolve "callback hell" when asynchronous calls need to be executed sequentially.)*
    4
    5
    A popular system for managing sequential asynchronous operations, called "Promises", was integrated into ES6 (the latest release version of ECMAScript/Javascript). It's definitely a good idea to make sure you understand basic callbacks before diving into the Promises API, but it can really streamline asynchronous sequences once your callbacks start to get hellish.
  5. HackerRank Solution: BFS Shortest PathHackerRank Solution: BFS Shortest Path
    1
    #!/bin/python3
    2
    # https://www.hackerrank.com/challenges/bfsshortreach/problem
    3
    4
    importmath
    5
    importos
  6. Something approximating a python structSomething approximating a python struct
    1
    #!/usr/bin/env python3
    2
    """
    3
     [Created: March 2018]
    4
     Oh hello, I'm here to destroy everything you love about Python.
    5