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();
}
})();
๐
Looking for awesome opportunities
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
-
chrome-bybit-extension
chrome-bybit-extension PublicA chrome extension to help with position sizing according to risk and reward. Takes your balance, stoploss, margin and risk, returns a the right leverage.
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.