Skip to content

Instantly share code, notes, and snippets.

View Coronel-B's full-sized avatar
😄

Braian Coronel Coronel-B

😄
View GitHub Profile
@Coronel-B
Coronel-B / init_Ubuntu_20.04.sh
Last active June 14, 2021 18:30
Initialize Ubuntu 20.04 LTS with the installation of dependencies and apps
#!/bin/bash
: '
Initialize Ubuntu 20.04 LTS with the installation of dependencies and apps
USING:
$ cd; sudo apt-get install git; sudo rm -Rf 8d3*4; git clone https://gist.github.com/8d3da8ce21b80ffab1e0784fe4fdc5e4.git; cd 8d3*4; sudo chmod +x init_Ubuntu_20.04.sh; ./init_Ubuntu_20.04.sh
PRECONDITION: Run the script without sudo
'
@Coronel-B
Coronel-B / ExcludeToStringUtils.kt
Last active April 18, 2021 15:18
Exclude property in toString () method
import java.lang.reflect.Field
import java.util.*
/**
* SPDX-License-Identifier: MIT
*/
/**
* Source: https://kotlinlang.org/docs/tutorials/kotlin-for-py/annotations.html
*/