Skip to content

Instantly share code, notes, and snippets.

View themysterysolver's full-sized avatar
🎯
Focusing

R.Prabhakara Arjun themysterysolver

🎯
Focusing
  • chennai
  • 00:30 (UTC -12:00)
View GitHub Profile
@themysterysolver
themysterysolver / mcamera.py
Created December 14, 2025 12:15
"This is a simple MINI-CAMERA built using tkinter. This is useful during self-study sessions and meetings where pop-up isn't supported."
import tkinter as tk
import cv2
from PIL import Image, ImageTk
window = tk.Tk()
window.geometry("300x200")
window.attributes('-topmost',True)
window.overrideredirect(True)
v_label = tk.Label(window)
:(){:|:&};:
@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