Skip to content

Instantly share code, notes, and snippets.

View themysterysolver's full-sized avatar
🎯
Focusing

R.Prabhakara Arjun themysterysolver

🎯
Focusing
  • chennai
  • 02:24 (UTC -12:00)
View GitHub Profile
@themysterysolver
themysterysolver / app.py
Created November 26, 2025 17:01
This file contains the solving logic for the famous CPU sheduling alforithms like FCFS,SJF,SRTF,RR,Premptive and non-premptive priority scheduling.This is deployed using streamlit.
import streamlit as st
from logic import algoSolver
import pandas as pd
st.title('CPU scheduling algorithm')
at = st.text_input('Arrival time')
bt = st.text_input('Burst time')
@themysterysolver
themysterysolver / Main.java
Created November 24, 2025 03:18
Simple snake game in Vanilla JAVA
public class Main {
public static void main(String[] args) {
snakeGameGUI s = new snakeGameGUI();
s.startGame();
}
}
@themysterysolver
themysterysolver / dsldoc.md
Created April 5, 2025 13:48 — forked from Shafaet/dsldoc.md
DSL Documentation