Pinned Loading
-
mini-projects
mini-projects PublicSimple implementations of tools commonly used during software development (to better understand how they work)
Kotlin
-
Snake game on a Micro:bit controller
Snake game on a Micro:bit controller 1from microbit import *
2from random import randrange
34class State:
5def __init__(self):
-
Spring Boot - `@JsonEnumDefaultValue...
Spring Boot - `@JsonEnumDefaultValue` with logging 1class EnumDeserializationProblemLoggingModule : SimpleModule() {
23override fun setupModule(context: SetupContext) {
4super.setupModule(context) // Required, as documented in the Javadoc of SimpleModule
5context.addDeserializationProblemHandler(LoggingEnumDeserializationProblemHandler())
-
Reddit comment deletion script
Reddit comment deletion script 1$('a').filter(function() {
2return $(this).text() === 'delete'
3}).each(function() {
4this.click()
5})
-
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).
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.