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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body class="bg-gray-900 flex justify-center items-center h-screen"> | |
<div class="terminal-window"> | |
<p class="typing"></p> | |
</div> | |
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body class="bg-gray-900 flex justify-center items-center h-screen"> | |
<div class="terminal-window"> | |
<p class="typing"></p> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
NewerOlder