Skip to content
View MrRogueKnight's full-sized avatar
:octocat:
Focusing
:octocat:
Focusing

Organizations

@epixcoding @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.

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

🙋‍♂️ About Me

  • 🌱 Learning: Trying to make C++, Python, and AI understand me so far, Python seems to be the only one listening.
  • 👨‍💻 Projects: I write code. Sometimes, it even works.
  • 📝 Articles: I write about tech, AI, and programming so engaging that even my compiler reads them without errors. 👉 Check them out on My Substack via Linktree.

🤝 Let's Connect🌐

mrrogueknight

MrRogueKnight MrRogueKnight MrRogueKnight MrRogueKnight MrRogueKnight MrRogueKnight MrRogueKnight MrRogueKnight MrRogueKnight MrRogueKnight MrRogueKnight MrRogueKnight @MrRogueKnight MrRogueKnight MrRogueKnight MrRogueKnight MrRogueKnight MrRogueKnight MrRogueKnight/profile MrRogueKnight MrRogueKnight.substack.com

GitHub Readme Quote

📊 GitHub Stats:

Snake animation

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
    @echo off
    2
    :: Check for Administrator rights
    3
    net session >nul 2>&1
    4
    if %errorLevel% neq 0 (
    5
        echo Requesting administrative privileges...
  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