GitHub

Pinned Loading

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

    Python 1

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

    C 3 1

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

    Swift 17 2

  4. My personal website

    JavaScript

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

    CSS 4 2

  6. 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))

Read the original on github.com ↗