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.

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. InTwoMirror InTwoMirror Public

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

    C#

  2. odds-and-ends odds-and-ends Public

    Collection of Miscellaneous Sketches

    JavaScript

  3. tile-compile tile-compile Public

    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 Path HackerRank Solution: BFS Shortest Path
    1
    #!/bin/python3
    2
    # https://www.hackerrank.com/challenges/bfsshortreach/problem
    3
    
                  
    4
    import math
    5
    import os
  6. Something approximating a python struct Something 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