Skip to content

Instantly share code, notes, and snippets.

View devshades-au's full-sized avatar

Devshades devshades-au

View GitHub Profile
@devshades-au
devshades-au / windows-keys.md
Created August 30, 2024 12:10 — forked from rvrsh3ll/windows-keys.md
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

@devshades-au
devshades-au / index.html
Created April 15, 2024 03:33
WIP Kanban - Not working
<div class="header">
<h2>Kanban Board</h2>
<p> WIP: Currently broken and not working as intended right now </p>
</div>
<div class="addTaskButton">
<button class="add-task-btn" onclick="showAddTaskModal()">+ Add Task</button>
</div>
<div class="kanban-board">
<div class="kanban-column" id="todo">
<h3>Todo</h3>
@devshades-au
devshades-au / index.html
Created April 15, 2024 01:36
Todo list with status indicator
<div class="todo-container">
<header class="todo-header">
<h1>Tasks</h1>
<div class="status-indicator yellow"></div>
<div class="input-container">
<input type="text" id="todo-input" placeholder="Add a new task..." aria-label="New task input">
<button onclick="addTask()">Add Task</button>
</div>
</header>
<ul class="todo-list" id="todo-list"></ul>
<div class="wall">
<center>
<div class="led">
<div class="tv"></div>
</div>
<div class="displayUnit">
<div class="drawer-l">
<div class="drawer"></div>
<div class="drawer"></div>
</div>
@devshades-au
devshades-au / index.html
Created April 8, 2024 04:43
Sorting Algorithm Visualizations
<div class="app-container">
<header>
<h1>Algorithm Visualizer</h1>
<p>Some popular sorting algorithms, visualized.
</header>
<div class="controls">
<label for="speed"><strong>Sorting time:</strong></label><br>Fast
<input type="range" id="speed" min="100" max="2000" value="1000" step="100"> Slow
<body class="bg-gray-900 flex justify-center items-center h-screen">
<div class="terminal-window">
<p class="typing"></p>
</div>
</body>
<body class="bg-gray-900 flex justify-center items-center h-screen">
<div class="terminal-window">
<p class="typing"></p>
</div>
@devshades-au
devshades-au / index.html
Created March 21, 2024 19:58
Powershell Reference Test
<center>
<div class="container">
<h1 class="mb-4">PowerShell</h1><hr/>
<!-- Combobox for selecting a category -->
<div class="mb-4 slim">
<!-- <label for="categorySelect" class="form-label">Select Category:</label> -->
<select class="form-select" id="categorySelect" onchange="populateCommands()">
<option value="">Select Category</option>
<option value="Networking">Networking</option>