Skip to content
View rodrigodiasnoronha's full-sized avatar
Block or Report

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 👋

I'm Rodrigo, software developer, game collector, e-sports fan, may a streamer sometimes, open sourcerer and a gaming pc enthusiast

Pinned

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

    A JetBrains IDE Theme based on Lucy VS Code Theme

    Python

  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