class Person {
constructor(username, job, codingLanguages) {
this.username = username;
this.job = job;
this.codingLanguages = codingLanguages;
}
details() {
console.log(`Hello, my name is ${this.username}`);
console.log(`I'm a ${this.job}`);
console.log(`I work with ${this.codingLanguages.join(', ')}`);
}
}
const me = new Person('fox3000foxy', 'Independent Developer', ['JavaScript', 'TypeScript', 'Node.js', 'HTML/CSS']);
me.details();
| Gist | Description |
|---|---|
| setup-ssh-signing.sh | SSH commit signing setup script with key import/export and history re-signing controls |
| pokerManager.ts | TypeScript poker manager snippet |
| key-sys.js | JavaScript key system utility |
| createProxy.js | Proxy creation utility |
| weights-api.ts | Weights unofficial API TypeScript module |
| buld-download-url.js | Download URL builder utility |
| honeypotMiddleware.js | Honeypot middleware for bot traffic filtering |
| gistfile1.txt | Short text gist |
| Discord Experiments.js | Discord experiments snippet |
| ruin_for_ai.py / ruin_move.py | Ruin project scripts |
| project.py | Python project gist |
| eratz.py / main.py / mainpy.py | Python multi-file gist |



