Skip to content
View ronaldwolvers's full-sized avatar

Block or report ronaldwolvers

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

Pinned Loading

  1. remove_element_at_index_for_any_slic... remove_element_at_index_for_any_slice.go
    1
    //Tested with Go 1.19
    2
    
                  
    3
    func RemoveElementFromSliceAtIndex[type_param any](s []type_param, index int) []type_param {
    4
    	return append (s[:index], s[index+1:]...)
    5
    }
  2. Generic paged cache for Go maps (Go ... Generic paged cache for Go maps (Go version 1.19)
    1
    package caching
    2
    
                  
    3
    type pagedMapCacheKey struct {
    4
    	key 		int
    5
    	page_number int
  3. Writing logs to a file in Go using a... Writing logs to a file in Go using a buffer (Go version 1.19)
    1
    package logging
    2
    
                  
    3
    import (
    4
    	"fmt"
    5
    	"os"
  4. android_bump_version_code_script android_bump_version_code_script Public

    A simple shell script to automatically bump the `versionCode` in your `app/build.gradle` file and create a corresponding tag.

    Shell 1

  5. AndroidOpenGL AndroidOpenGL Public

    Draw some triangles!

    Kotlin 1

  6. uninstall_android_apps_from_every_device uninstall_android_apps_from_every_device Public

    A handy Bash script to install several build variants from several running devices at once.

    Shell