Skip to content

Instantly share code, notes, and snippets.

View YousufProjs-exe's full-sized avatar
💭
A FY CSM likes C / Java and a kid learning and proving.

YousufProjs-exe

💭
A FY CSM likes C / Java and a kid learning and proving.
  • Joined Feb 25, 2026
View GitHub Profile
@YousufProjs-exe
YousufProjs-exe / Task-Manager.css
Created February 27, 2026 19:58
TASK MANAGER Browser , All three Files i.e, Task-Manager .html ; .css ; .js below ~{ " ITS A DEMO VERSION!! " } ~
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
@YousufProjs-exe
YousufProjs-exe / Guess The Number "GAME"
Last active February 27, 2026 19:50
A Guessing Number game verses Computer (limit 100 ; Customize when can "i="in source code). Required JDK with IDE or Built in Compiler.
import java.util.Random;
import java.util.Scanner;
public class Game_3
{
public static void main(String args[])
{
System.out.println("Welcome");
@YousufProjs-exe
YousufProjs-exe / Rock Paper and Scissors "GAME"
Last active February 27, 2026 19:34
A Fun GUI less Rock Paper Scissors game using Nested Loop and under fundamentals of Java. You will need JDK if opening in any IDE like Visual Studio Code or if your opening it in a bulit in Java Compiler like BlueJ.
import java.util.Scanner;
import java.util.Random;
//importing java classes
public class game_1
{
public static void main(String agrs[])
{
@YousufProjs-exe
YousufProjs-exe / Calculator.c
Created February 26, 2026 14:05
The calculator prompts users to enter two numbers and select an operation. It then performs the calculation and displays the result. The program is designed with clarity in mind, making it an excellent resource for beginners learning C programming concepts such as input/output handling, conditional statements, loops, and basic arithmetic logic.
#include <stdio.h>
int main()
{
int a, b, opt, res;
// declaring variables
printf("Welcome To Switch Case Calculator\n");
// Welcome command / Message