import {
Human,
Coffee,
Cappuccino,
Language,
Typescript,
React,
Vue,
NestJS,
Jest,
} from '@mmintel/awesome';
interface Developer extends Human {
test: () => void;
code: () => void;
addFramework: () => void;
}
class Marc implements Developer {
private frameworks: Framework[];
constructor(
private language: Language,
private coffee: Coffee,
) {}
public sayHello(): void {
console.log(`
Hi there ๐,
I'm Marc, a Software Developer from Cologne, Germany.
I love Typescript on client side, with NodeJS or Deno.
I have a lot of experience with frontend frameworks like React or Vue.
On the server side I prefer to work with Nestjs.
I also like C# with Unity a lot but that's just for fun.
I'm always interested to work on awesome projects, in that case you should contact me.
Cheers
`);
}
public addFramework(framework: Framework): void {
this.frameworks.push(framework);
}
public async code(): void {
await this.coffee.drink();
for (const framework of this.frameworks) {
await this.language.use(framework);
}
await this.coffee.drink();
this.language.writeSomeCode();
}
public async test(): void {
const jest = this.frameworks.find(f => f instanceOf Jest);
jest.run();
}
public dance(): void {
// do nothing
}
}
const language: Language = new Typescript();
const coffe: Coffee = new Cappuccino();
const marc = new Marc(language, coffee);
marc.addFramework(React);
marc.addFramework(Vue);
marc.addFramework(NestJS);
marc.addFramework(Jest);
(async () => {
marc.sayHello();
try {
await marc.code();
} catch {
await marc.test();
}
})();
Popular repositories Loading
-
datocms-tools
datocms-tools Public archiveProvides tools to import, export or reset DatoCMS projects. Will also make sure to update existing models.
-
-
-
statamic-asset-manifest
statamic-asset-manifest PublicAddon for Statamic: searches occurences of files and replaces them as listed in the manifest
PHP 3
-
vanilla-js-module-starter
vanilla-js-module-starter PublicProvides minimal setup to create node modules with Javascript without any framework
JavaScript 1
-
WolfBot
WolfBot PublicForked from Ekliptor/WolfBot
Crypto currency trading bot written in TypeScript for NodeJS
TypeScript 1
If the problem persists, check the GitHub status page or contact support.