Skip to content

Instantly share code, notes, and snippets.

View ndy40's full-sized avatar

Ndifreke Ekott ndy40

View GitHub Profile
@ndy40
ndy40 / terminal_emojis.md
Created October 18, 2025 23:18 — forked from nicolasdao/terminal_emojis.md
Terminal emojis. Keywords: terminal console symbol emoji emoticon icon
Emoji Name Text example
πŸš€ Rocket You're up
πŸ“¦ Package Installing additional dependencies...
βš“ Hook Running completion hooks...
πŸ“„ Document Generating README.md...
πŸŽ‰ Party Successfully created project hello-vue.
πŸ‘‰ Next Get started with the following commands:
βœ” Tick Task completed
✨ Magic Assembling project...
@ndy40
ndy40 / event_bus.py
Last active January 29, 2025 17:12
EventBus class
import importlib
import inspect
import os
from functools import wraps
from typing import List, Callable, Dict, Type, ClassVar
class EventBus:
listeners: Dict[str, List[Callable]]