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

Block or report janickr

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

    A python package to connect to the Bluetooth LE GATT services of BBC micro:bit devices. Use your micro:bit as a wireless game controller!

    Python 11

  2. bubblegum bubblegum Public

    java micro web framework

    Java 2 1

  3. shortcuttranslator shortcuttranslator Public

    Intellij plugin to translate shortcuts between keymaps

    Java 12 1

  4. conway's game of life in SQL (postgr... conway's game of life in SQL (postgresql) - http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life
    1
    with recursive generation1(x,y) as (   --the initial board setup
    2
      select 2, 3
    3
      union
    4
      select 3, 3
    5
      union
  5. Transducers in java. An exercise bas... Transducers in java. An exercise based on http://phuu.net/2014/08/31/csp-and-transducers.html
    1
    import java.util.ArrayList;
    2
    import java.util.Arrays;
    3
    import java.util.Collection;
    4
    import java.util.List;
    5
    import java.util.function.BiFunction;