Skip to content

Instantly share code, notes, and snippets.

View JokerPhoenix05's full-sized avatar
🏠
Working from home

Joker Phoenix JokerPhoenix05

🏠
Working from home
View GitHub Profile
@JokerPhoenix05
JokerPhoenix05 / NoEditHDCommunity.md
Created March 24, 2026 15:35
React Interview Checklist

🔥 Core React (Must Know)

These are almost guaranteed topics.

1. Components & JSX

  • Functional components (modern standard)
  • Props (passing & destructuring)
  • Conditional rendering (&&, ternary)
@JokerPhoenix05
JokerPhoenix05 / FixDnDReorder.md
Last active March 22, 2026 13:22
It's a fix for Tasks dragged between columns always drop at the bottom instead of the intended position because task order is not maintained. The system only updates task status, not its position within the column.

✅ ✅ 🔥 COMPLETE IMPLEMENTATION (FRONTEND + BACKEND)


🧩 1. BACKEND — Schema Update

📁 taskCard.model.js

@JokerPhoenix05
JokerPhoenix05 / CybersecurityGuideResources.md
Created February 24, 2026 14:22
A comprehensive guide for beginners to start and advance their career in the cybersecurity field.

Cybersecurity Guide and Resources

A comprehensive guide for beginners to start and advance their career in the cybersecurity field.

Resources

Practise Cybersecurity

  • OverTheWire Wargames → The wargames offered by the OverTheWire community can help you to learn and practice security concepts in the form of fun-filled games.
  • NA → ...
@JokerPhoenix05
JokerPhoenix05 / MinecraftMapmaking.md
Last active February 13, 2026 08:55
This is a guide to creating maps for Minecraft.

Minecraft Mapmaking Guide

This is a guide to creating maps for Minecraft.

Create New World

  • World Name: <YOUR_MAP_NAME>
  • Game Mode: Creative
  • Allow Cheats: ON
  • Bonus Chest: OFF
@JokerPhoenix05
JokerPhoenix05 / FreePublicAPIs.md
Created February 5, 2026 22:03
A lightweight registry of free, no-authentication public APIs templates for developers.

Free Public APIs

A lightweight registry of free, no-authentication public APIs templates for developers.

Resource Name API URL
@JokerPhoenix05
JokerPhoenix05 / OverTheWireWargames.md
Last active February 2, 2026 21:27
This is a cheat sheet for OverTheWire: Wargames. It includes SSH host information, level passwords, and essential terminal commands.

The wargames offered by the OverTheWire community can help you to learn and practice security concepts in the form of fun-filled games.

Tip

SSH Information

  • Host: bandit.labs.overthewire.org
  • Port: 2220
@JokerPhoenix05
JokerPhoenix05 / hexToRgb.js
Created November 25, 2024 19:25
Converts a HEX color string to an RGB object.
/**
* Converts a HEX color string to an RGB object.
* @param {string} hex - The HEX color string (e.g., "#FFFFFF" or "FFFFFF" or "#FFF" or "FFF").
* @returns {object} An object containing the red, green, and blue components.
*/
function hexToRgb(hex) {
// Normalize the hex string by removing the hash and ensuring it's 6 characters long
hex = hex.replace(/^#/, '');
if (hex.length === 3) {
hex = hex.split('').map(char => char + char).join('');
@JokerPhoenix05
JokerPhoenix05 / README.md
Last active August 26, 2024 11:54 — forked from vikasganiga05/README.md
All of the themes / plugins / extensions / settings I use for VSCode.

Installing VSCode Extensions

Installing the vscode extensions from vscode-extensions.txt file one by one.

To get the list of installed vscode extensions to vscode-extensions.txt file.

# Run this command in the terminal.
$ code --list-extensions > vscode-extensions.txt
@JokerPhoenix05
JokerPhoenix05 / main.dart
Last active January 13, 2024 06:14
DartCrashCourse
void main() {
String name = "Neon Tuts";
print(name);
const int age = 25;
print(age);
bool isOnline = true;
print(isOnline);