Skip to content
View sukesh-ak's full-sized avatar

Organizations

@DarkMagic-CE @HFAT-Platform @YawSports @TUX-Templates
Block or Report

Block or report sukesh-ak

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

Hi there 👋

Polymath, with 3 decades+ experience in Technology.
Expertise in Microsoft software stack (Ex-MSFTE), designing & building Applications on Linux with Docker, IoT & Azure Architecture.

Always excited about new challenges in Technology including but not limited to Cyber Security and UX Designs. Special interest in Digital Forensics.

  • 🔭 Currently working on
    • Digital Forensics for Android/iOS.
    • Embedded Hardware and firmware IOT projects (ESPRESSIF & STM32).
    • C++ with GLFW/SDL2 + OpenGL for multi-platform UI Applications.
    • Technology Consulting Projects.
  • 💬 Ask me about
    • Building Cloud Applications to Desktop (Linux/Windows) to IoT Device firmware.
    • Solution Consulting including building a vision and roadmap for Business.
    • Product Design from Software to Functional Sports Wear.
    • Last but not least, VFX, MoCap and 3D Modeling using Blender.

📫 Reach out to me, if you think my expertise aligns with your project needs : https://www.sukesh.me

Static Badge
If you use my projects or like them, consider sponsoring me. Anything helps and encourages me to keep going.
See details here: https://github.com/sponsors/sukesh-ak

Your sponsorship would help me not only maintain the projects I'm involved in, but also support my other community activities and purchase hardware for testing these libraries. If you're an individual user who has enjoyed my projects or benefited from my community work, please consider donating as a sign of appreciation. If you run a business that uses my work in your products, sponsoring my development makes good business sense: it ensures that the projects your product relies on stay healthy and actively maintained.

Thank you for considering supporting my work!

PROJECT HIGHLIGHTS

Project Name Description Link
ESP32-TUX ESP32-TUX - ESP32 / ESP32-XX Touch UX Template using LVGL to get you started Repo
ImGui-GLFW-OpenGL3 Hardware Accelerated multi-platform UI using ImGui, GLFW and OpenGL3 Repo
AutoDebug Debugger to run Windbg Commands and also query .NET CLR Runtime data in C# Repo
Python SSL Webserver Minimal Webserver with SSL support using Python Repo
Torify 6.0 Connect & browse DarkWeb .onion websites using .NET 6.0 SOCKS support Article
Nvidia GPU vs CPU Comprarison of vector operation using CPU vs GPU using Nvidia Cuda Repo
Math: Haversine Distance Formula Spherical Trignometry : HaversineDistance function to find distance between 2 GeoCordinates Gist
Math: Spherical to Cartesian Spherical to Cartesian coordinates Gist
Setup MQTT Broker How to setup Mosquitto MQTT Broker using docker on Debian/Raspberry Pi Article
Windows Sandbox with VS Code Script to launch Windows Sandbox with latest VS Code pre-installed Repo
Eventpipe Diagnostics Trace and analyze application on how EventPipe in .NET Core works Repo
DroidBackup Convert Android Backup to GZ zip format Repo
About IMU What is IMU (Inertial Measurement Unit) and what are its use cases Article
Linux Frame Buffer - LVGL LVGL UI widgets on a Raspberry PI (Linux) display using Linux Frame Buffer Repo

Pinned

  1. AutoDebug AutoDebug Public

    Simple Debugger to run Windbg Commands and also query .NET CLR Runtime data in C#

    C# 19 4

  2. setup-mosquitto-with-docker setup-mosquitto-with-docker Public

    How to setup Mosquitto MQTT Broker using docker with Authentication and Websocket support.

    C++ 128 24

  3. ESP32-TUX ESP32-TUX Public

    ESP32-TUX - ESP32 / ESP32-XX Touch UX Template using LVGL to get you started

    C 208 50

  4. Torify.NET Torify.NET Public

    How to connect & browse DarkWeb .onion websites using .NET 6.0 SOCKS support in just a few lines of C# code.

    C# 1 1

  5. Spherical Trignometry : HaversineDis... Spherical Trignometry : HaversineDistance function to find distance between 2 GeoCordinates
    1
    /// <summary>
    2
    /// Returns the distance in miles or kilometers of any two GeoCordinates
    3
    /// Ref: https://en.wikipedia.org/wiki/Haversine_formula
    4
    /// </summary>
    5
    /// <param name="pos1">Location 1</param>
  6. Spherical to Cartesian coordinates Spherical to Cartesian coordinates
    1
    /// Converts Spherical to Cartesian coordinates
    2
    int earthRadius = 6367; //radius in km
    3
    private Cartesian convertSphericalToCartesian(double latitude, double longitude)
    4
    {
    5
        var lat = DegreesToRadians(latitude);