This file contains hidden or 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
| const EventEmitter = require('events'); | |
| const eventBus = new EventEmitter(); | |
| module.exports = eventBus; |
This file contains hidden or 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
| from collections import defaultdict | |
| from threading import Lock | |
| class EventBus: | |
| def __init__(self): | |
| self.events = defaultdict(list) | |
| self.lock = Lock() | |
| def subscribe(self, event, callback): | |
| with self.lock: |
This file contains hidden or 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
| <?php | |
| // Lemmod - Couldn't be bothered to make my own class as this works as well | |
| /** | |
| * STable - Generate HTML Tables | |
| * | |
| * @package STable | |
| * @category STable | |
| * @name STable | |
| * @version 1.0 |
This file contains hidden or 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
| { | |
| "private": true, | |
| "scripts": { | |
| "dev": "vite", | |
| "build": "vite build" | |
| }, | |
| "devDependencies": { | |
| "@tailwindcss/forms": "^0.5.2", | |
| "@tailwindcss/typography": "^0.5.0", | |
| "alpinejs": "^3.0.6", |
This file contains hidden or 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
| QUEUE_DB_HOST= | |
| QUEUE_DB_PORT=27017 | |
| QUEUE_DB_USER=root | |
| QUEUE_DB_PASS=12345678 | |
| QUEUE_DB_NAME=test | |
| QUEUE_DB_COLL=queue |
This file contains hidden or 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
| <?php | |
| namespace App\Session; | |
| use Illuminate\Session\DatabaseSessionHandler; | |
| class MongoSessionHandler extends DatabaseSessionHandler | |
| { | |
| /** |
NewerOlder