Skip to content
View rodrigodiasnoronha's full-sized avatar
๐Ÿ 
Working from home
๐Ÿ 
Working from home

Block or report rodrigodiasnoronha

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
rodrigodiasnoronha/README.md
$ Hi There ๐Ÿ‘‹
fun main() {    
    val name = "rodrigo";
    var workingAs = "software developer";
    var hobbiesAndStuffs = arrayOf(
      "game collector",
      "e-sports fan",
      "may a streamer sometimes",
      "open sourcerer",
      "gaming pc enthusiast"
    );
    
    val howToReachMe = "you cannot reach me (:";
}

Pinned Loading

  1. lucy-jetbrains-theme-unofficial lucy-jetbrains-theme-unofficial Public

    A JetBrains IDE Theme based on Lucy VS Code Theme

    Python 1

  2. Calculate distance in KM between 2 p... Calculate distance in KM between 2 points (coordinates)
    1
    function getDistanceFromLatLonInKm(lat1: number, lon1: number, lat2: number, lon2: number) {
    2
        function deg2rad(deg: number) {
    3
            return deg * (Math.PI / 180);
    4
        }
    5