Skip to content
View SimonKocurek's full-sized avatar

Block or report SimonKocurek

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
SimonKocurek/README.md

Linkedin StackOverflow

Pinned Loading

  1. mini-projects mini-projects Public

    Simple implementations of tools commonly used during software development (to better understand how they work)

    Kotlin

  2. Mazes Mazes Public archive

    Terminal mazes game made in C (Weekly project)

    C 1

  3. Snake game on a Micro:bit controller Snake game on a Micro:bit controller
    1
    from microbit import *
    2
    from random import randrange
    3
    
                  
    4
    class State:
    5
        def __init__(self):
  4. Spring Boot - `@JsonEnumDefaultValue... Spring Boot - `@JsonEnumDefaultValue` with logging
    1
    class EnumDeserializationProblemLoggingModule : SimpleModule() {
    2
    
                  
    3
        override fun setupModule(context: SetupContext) {
    4
            super.setupModule(context) // Required, as documented in the Javadoc of SimpleModule
    5
            context.addDeserializationProblemHandler(LoggingEnumDeserializationProblemHandler())
  5. Reddit comment deletion script Reddit comment deletion script
    1
    $('a').filter(function() {
    2
      return $(this).text() === 'delete'
    3
    }).each(function() {
    4
      this.click()
    5
    })
  6. Geo Bunding Box Geo Bunding Box
    1
    /**
    2
     * Utility functions:
    3
     * - getBoundingBox: Gets a box surrounding all points that are a certain distance from provided point on the Earth sphere.
    4
     *                   Take care when longitude crosses the 180th meridian. In such case, the minLongitude (e.g., 175) 
    5
     *                   will be greater than the maxLongitude (e.g. -175).