Welcome traveler. You have entered the forbidden realm of PC repair, malware torture chambers, and car edits that go BRRR louder than my PC fans at 3 AM while I’m wrestling BonziBuddy for admin privileges.
Here you will witness:
– Windows begging for mercy
– Malware running away crying
– PCs that boot slower than McDonald's “fresh” burgers decay
– Me trying to fix stuff but also accidentally summoning the recovery menu every Tuesday

Subscribe if you're NOT a BSOD.
If you're here to crash, at least bring snacks. 💙😂💻
(Dw my pc turned into a pillow


I0XANZ3L

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>School.Microscop.com — Welcome</title>
<style>
body { background: #0b1220; color: #e6f3fb; font-family: 'Segoe UI', sans-serif; margin:0; padding:0; }
header { background: #0f1a2b; padding: 20px; text-align: center; }
header h1 { margin:0; font-size: 28px; color: #4fc3f7; }
header p { color: #9fb3c8; margin-top:6px; }
.container { max-width: 900px; margin: 30px auto; padding: 0 20px; }
.card { background: #0f1a2b; padding: 20px; border-radius: 12px; margin-bottom: 20px; box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
h2 { color: #4fc3f7; margin-top:0; }
code { background: rgba(255,255,255,0.05); padding: 2px 6px; border-radius: 4px; }
.command { background: #071833; padding: 8px 12px; border-radius: 8px; display: inline-block; margin: 4px; color: #9fb3c8; font-family: monospace; }
footer { text-align: center; color: #9fb3c8; margin-top: 30px; font-size: 13px; }
</style>
</head>
<body>

<header>
<h1>Welcome to School.Microscop.com</h1>
<p>Your official in-universe guide to Microscop & Door OS</p>
</header>

<div class="container">

<div class="card">
<h2>What is Microscop?</h2>
<p>Microscop is a fun, simulated operating system created by Jojo. It includes <strong>Door OS</strong> drives, interactive AI helpers like <strong>BonziFunny</strong> and <strong>ChatGPT</strong>, and prank simulations like <code>BootTheFukUp /r</code>.</p>
</div>

<div class="card">
<h2>Fun Commands</h2>
<p>Try these simulated commands in your imagination or in a VM:</p>
<span class="command">Bootthefukup /r</span>
<span class="command">TrustedDeleter /repair System33</span>
<span class="command">Get /d /r RCARD</span>
<span class="command">OpenSesame /force D:\Lock</span>
<span class="command">WhyDidYouDoThat /panicmode off</span>
</div>

<div class="card">
<h2>AI Helpers</h2>
<p><strong>BonziFunny:</strong> Sassy BonziBuddy with glasses. Gives comedic warnings.</p>
<p><strong>ChatGPT:</strong> Calms you down, hands virtual tea, guides you safely.</p>
<p><strong>Cortina:</strong> Mostly vibes. Optional background AI.</p>
</div>

<div class="card">
<h2>Tips for Microscop Fans</h2>
<ul>
<li>Always use a VM if you want to test destructive commands.</li>
<li>System33 is protected for a reason — don’t delete it without supervision.</li>
<li>Experimenting is fun, but backups are life-saving.</li>
<li>Enjoy BonziFunny panicking — it’s part of the experience.</li>
</ul>
</div>

</div>

<footer>
Microscop© 2025 — All in-universe, harmless, fun OS simulation.
</footer>

</body>
</html>

1 week ago | [YT] | 0

I0XANZ3L

using System;
using System.Drawing;
using System.Windows.Forms;

class IconSpam : Form
{
Timer timer = new Timer();
Random rand = new Random();

public IconSpam()
{
// Close with ESC
this.KeyPreview = true;
this.KeyDown += (s, e) => { if (e.KeyCode == Keys.Escape) Application.Exit(); };

// Timer: spawn fake windows quickly
timer.Interval = 150;
timer.Tick += (s, e) => SpawnIcon();
timer.Start();

// Hidden main window
this.WindowState = FormWindowState.Minimized;
this.ShowInTaskbar = false;
}

void SpawnIcon()
{
Form icon = new Form();
icon.FormBorderStyle = FormBorderStyle.FixedSingle;
icon.Size = new Size(120, 80);
icon.StartPosition = FormStartPosition.Manual;

int x = rand.Next(0, Screen.PrimaryScreen.WorkingArea.Width - 120);
int y = rand.Next(0, Screen.PrimaryScreen.WorkingArea.Height - 80);
icon.Location = new Point(x, y);

icon.Text = "⚠️ Fake Icon";
icon.Show();
}

[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.Run(new IconSpam());
}
}

1 week ago | [YT] | 0

I0XANZ3L

-- Jojo's Ultimate Hyper Windows OS (Final Mega Script)
local Players = game:GetService("Players")
local TweenService = game:GetService("TweenService")

-- Create Desktop
local function createDesktop(player)
local gui = Instance.new("ScreenGui", player.PlayerGui)
gui.Name = "JojoHyperOS"

local wallpaper = Instance.new("ImageLabel", gui)
wallpaper.Size = UDim2.new(1,0,1,0)
wallpaper.BackgroundTransparency = 1
wallpaper.Image = "rbxassetid://1234567890" -- wallpaper
end

-- Create Taskbar
local function createTaskbar(player)
local gui = player.PlayerGui:WaitForChild("JojoHyperOS")
local taskbar = Instance.new("Frame", gui)
taskbar.Size = UDim2.new(1,0,0,40)
taskbar.Position = UDim2.new(0,0,1,-40)
taskbar.BackgroundColor3 = Color3.fromRGB(40,40,40)

local startBtn = Instance.new("TextButton", taskbar)
startBtn.Size = UDim2.new(0,100,1,0)
startBtn.Text = "Start"
startBtn.BackgroundColor3 = Color3.fromRGB(60,60,60)
end

-- Create App Window
local function createApp(player, appName, pos)
local gui = player.PlayerGui:WaitForChild("JojoHyperOS")
local window = Instance.new("Frame", gui)
window.Size = UDim2.new(0,300,0,200)
window.Position = pos or UDim2.new(0.3,0,0.3,0)
window.BackgroundColor3 = Color3.fromRGB(220,220,220)
window.Active = true
window.Draggable = true

local title = Instance.new("TextLabel", window)
title.Size = UDim2.new(1,0,0,30)
title.Text = appName
title.BackgroundColor3 = Color3.fromRGB(100,100,100)
title.TextColor3 = Color3.fromRGB(255,255,255)

local closeBtn = Instance.new("TextButton", window)
closeBtn.Size = UDim2.new(0,30,0,30)
closeBtn.Position = UDim2.new(1,-30,0,0)
closeBtn.Text = "X"
closeBtn.BackgroundColor3 = Color3.fromRGB(180,0,0)
closeBtn.MouseButton1Click:Connect(function() window:Destroy() end)

return window
end

-- Spawn All Apps
local function spawnAllApps(player)
local positions = {}
for i = 0, 9 do
for j = 0, 9 do
table.insert(positions, UDim2.new(i*0.1,0,j*0.1,0))
end
end

local apps = {"Calculator","Paint","Browser","Explorer","Virus.exe (Joke)",
"Notepad","Music Player","Recovery Menu","BSOD Trigger","Settings"}
for i, app in ipairs(apps) do
createApp(player, app, positions[i])
end
end

-- BSOD Trigger
local function triggerBSOD(player)
local gui = player.PlayerGui:WaitForChild("JojoHyperOS")
for _, c in pairs(gui:GetChildren()) do
if c:IsA("Frame") then c:Destroy() end
end

local bsod = Instance.new("Frame", gui)
bsod.Size = UDim2.new(1,0,1,0)
bsod.BackgroundColor3 = Color3.fromRGB(0,0,255)

local text = Instance.new("TextLabel", bsod)
text.Size = UDim2.new(1,0,1,0)
text.Text = "A problem has been detected and Windows has been shut down to prevent damage..."
text.TextScaled = true
text.TextColor3 = Color3.fromRGB(255,255,255)
end

-- Recovery Menu Easter Egg
local function recoveryMenu(player)
local gui = player.PlayerGui:WaitForChild("JojoHyperOS")
local menu = Instance.new("Frame", gui)
menu.Size = UDim2.new(0,400,0,300)
menu.Position = UDim2.new(0.3,0,0.3,0)
menu.BackgroundColor3 = Color3.fromRGB(30,30,30)

local label = Instance.new("TextLabel", menu)
label.Size = UDim2.new(1,0,1,0)
label.Text = "Recovery Menu Activated! Press OK to exit."
label.TextScaled = true
label.TextColor3 = Color3.fromRGB(255,255,255)
end

-- Player Added
Players.PlayerAdded:Connect(function(player)
createDesktop(player)
createTaskbar(player)
spawnAllApps(player)

local gui = player.PlayerGui:WaitForChild("JojoHyperOS")
local virusBtn = gui:FindFirstChild("Virus.exe (Joke)")
if virusBtn then
virusBtn.MouseButton1Click:Connect(function() triggerBSOD(player) end)
end
end)

2 weeks ago | [YT] | 0

I0XANZ3L

HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\kbdhid\Parameters

3 weeks ago | [YT] | 0

I0XANZ3L

💻 Microscop Windows 11 is officially here! Experience the smoothest, most polished OS yet. Explore the interface, check out Notepad (coming soon with full functionality), and navigate This PC like a pro. Everything is sleek, fast, and designed for maximum Microscop vibes. No easter eggs, no hidden chaos — just pure, clean OS energy. Perfect for testing, exploring, or just enjoying the ultimate Microscop experience. Step into the future of operating systems… your Windows 11 journey starts now! 🌟🔥

3 weeks ago | [YT] | 0

I0XANZ3L

local repairButton = script.Parent
local setupGui = repairButton.Parent -- WindowsSetupUi
local recoveryGui = game.StarterGui:WaitForChild("RecoveryMenu") -- Your Recovery Easter Egg GUI

repairButton.MouseButton1Click:Connect(function()
-- Hide the setup UI
setupGui.Enabled = false

-- Show the Recovery Menu Easter Egg
recoveryGui.Enabled = true
end)

3 weeks ago | [YT] | 0

I0XANZ3L

"""
Safe virus-spread simulation (educational).
Run with: python3 virus_sim.py

This script simulates infection spread across N nodes.
States: 'S' = susceptible, 'I' = infected, 'R' = recovered (or removed).
No files, no network I/O, no system changes.
"""

import random

def make_network(n, avg_degree=3):
# adjacency list for an undirected random graph (Erdos-Renyi style-ish)
adj = {i: set() for i in range(n)}
p = min(1.0, avg_degree / max(1, n-1))
for i in range(n):
for j in range(i+1, n):
if random.random() < p:
adj[i].add(j)
adj[j].add(i)
return adj

def simulate(n=200, steps=50, initial_infected=3, infect_prob=0.25, recover_prob=0.05):
adj = make_network(n)
states = ['S'] * n
for i in random.sample(range(n), initial_infected):
states[i] = 'I'

history = []
for t in range(steps):
new_states = states.copy()
s_count = states.count('S')
i_count = states.count('I')
r_count = states.count('R')
history.append((t, s_count, i_count, r_count))
if i_count == 0:
break

for node in range(n):
if states[node] == 'S':
# check neighbors for infection
infected_neighbors = sum(1 for nb in adj[node] if states[nb] == 'I')
# chance of getting infected increases with infected neighbors
if infected_neighbors > 0:
# combined probability that at least one neighbor infects
p_not_infected = (1 - infect_prob) ** infected_neighbors
if random.random() < (1 - p_not_infected):
new_states[node] = 'I'
elif states[node] == 'I':
# chance to recover / be removed
if random.random() < recover_prob:
new_states[node] = 'R'
states = new_states

return history, states, adj

if __name__ == "__main__":
hist, final_states, adj = simulate(n=500, steps=200, initial_infected=5,
infect_prob=0.18, recover_prob=0.03)
print("t\tS\tI\tR")
for t, s, i, r in hist:
print(f"{t}\t{s}\t{i}\t{r}")
print("\nFinal counts:", { 'S': final_states.count('S'),
'I': final_states.count('I'),
'R': final_states.count('R') })
print("This was a harmless simulation only — no files or network touched.")

3 weeks ago | [YT] | 0

I0XANZ3L

@echo off
title TaskDisruptorX
color 0a
echo Disabling Task Manager...
timeout /t 2 >nul
:loop
taskkill /f /im Taskmgr.exe >nul 2>&1
echo Task Manager blocked.
timeout /t 1 >nul
goto loop

3 weeks ago | [YT] | 0

I0XANZ3L

@echo off
mode 1000
color 1f
cls
echo.
echo.
echo Your PC ran into a problem and needs to restart.
echo Stop Code: CRITICAL_PROCESS_DIED
echo.
pause >nul

3 weeks ago | [YT] | 0