Skip to content
View Haspaker's full-sized avatar
Block or Report

Block or report Haspaker

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. elastic-bubble-simulation elastic-bubble-simulation Public

    A bouncing bubble, simulated using point masses connected by spring forces, enclosing a volume of ideal gas

    Python

  2. parallel-lattice-boltzmann-simulation parallel-lattice-boltzmann-simulation Public

    A parallel implementation of the multiphase multiphase Shan-Chen Lattice-Boltzmann method suitable for massively parallel computing

    C 3 1

  3. TodoSwift TodoSwift Public

    [today widget] A simple todo list for Notification Center, written in Swift

    Swift 17 2

  4. haspaker.se haspaker.se Public

    My personal website

    JavaScript

  5. anagram.tips anagram.tips Public

    A website for finding and creating anagrams in six different languages.

    CSS 4 2

  6. drunken-walk.clj drunken-walk.clj
    1
    (defn neighbors
    2
      ([size yx] (neighbors [[0 0] [1 1] [-1 -1] [-1 1] [1 -1] [-1 0] [1 0] [0 -1] [0 1]] size yx))
    3
      ([deltas size yx]
    4
         (filter (fn [new-yx]
    5
                   (every? #(< -1 % size) new-yx))