Skip to content
View MrRogueKnight's full-sized avatar
🌴
On vacation
🌴
On vacation

Highlights

  • Pro

Organizations

@TeamVolzo

Block or report MrRogueKnight

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
MrRogueKnight/README.md
Status Badge

Prashant Ranjan

⚡ AI/ML Engineer | Mathematics & Computing


📋 Quick Navigation


🎯 About Me

Typing Animation

Mathematics & Computing undergraduate at RGIPT, building intelligent systems at the intersection of mathematical rigor and applied machine learning


🚀 Technical Arsenal


🤖 AI/ML Core

⚡ Systems

🌐 Full Stack

🗄️ Data Engineering

⛓️ Web3

🔧 DevOps

📊 GitHub Activity



  1. 🎉 Merged PR #2 in MrRogueKnight/FinAnalytics
  2. 💪 Opened PR #2 in MrRogueKnight/FinAnalytics
⚡ Shows my latest contributions to open source :)

🔄 Explore My Work


📈 GitHub Analytics


⚙️ Status

Workflow Status Last Commit Profile Views Auto Update

GitHub Readme Quote


Snake animation



✦ Mathematics as foundation. AI as tool. Impact as the goal. ✦
Last updated: Automatically refreshed every 30 minutes
⭐ If you like this profile, consider starring the repo!

💻 Coding Platforms

LeetCode CodeChef HackerRank Codeforces GeeksforGeeks TopCoder Kaggle

📝 Writing & Code Hosting

Hashnode MyCompiler Medium Substack Dev.to CodePen CodeSandbox

🌐 Social Media

LinkedIn GitHub Twitter Instagram Facebook YouTube Stack Overflow Dribbble Behance

Pinned Loading

  1. prashant-ranjan-resume prashant-ranjan-resume Public

    Curriculum Vitae (CV) for Prashant Ranjan

  2. licenses-certifications-awards licenses-certifications-awards Public

    This repository serves as a centralized and verifiable record of my key skills, licenses, certifications, awards, and honors. It's designed to provide a clear overview of my professional qualificat…

  3. Disable / Enable Internal Keyboard &... Disable / Enable Internal Keyboard & Mouse
    1
    using System;
    2
    using System.Collections.Generic;
    3
    using System.Diagnostics;
    4
    using System.Runtime.InteropServices;
    5
    using System.Windows.Forms;
  4. MATLAB implementation of Euler's met... MATLAB implementation of Euler's method for solving a single and a system of ordinary differential equations, with visualization
    1
    % Problem 1: Single ODE using Euler Method
    2
    
                  
    3
    % Question:
    4
    % Consider the initial value problem:
    5
    % dy/dt = −2*t*y^2, y(t=0)=1
  5. 🔧 Ultimate Windows Optimization Guid... 🔧 Ultimate Windows Optimization Guide (Beyond CCleaner & BleachBit)
    1
    @echo off
    2
    title Delete Temporary Files
    3
    echo Deleting Temporary Files...
    4
    del /s /f /q "%USERPROFILE%\AppData\Local\Temp\*"
    5
    del /s /f /q "C:\Windows\Temp\*"
  6. MATLAB code implementing Euler's met... MATLAB code implementing Euler's method to numerically solve a first-order ODE and a system of two coupled ODEs up to t=10, with specified initial conditions and time steps (Δt = 0.2 and 0.5, respectively). The code plots and displays the computed solutions
    1
    %%
    2
    % Problem 1: Linear Regression
    3
    clc; clear;
    4
    
                  
    5
    % (i) Data input and linear regression