class TheLokin {
private name: string;
private username: string;
private location: string;
constructor() {
this.name = 'Diego Ramil López';
this.username = 'TheLokin';
this.location = 'Spain';
}
introduce(): string {
return `
Hi, I'm ${this.name}, but you can call me '${this.username}' (because 'Master of Divs' was taken).
I'm a Frontend Developer from ${this.location} who lives on a steady diet of coffee and CSS bugs.
`;
}
debug(): void {
console.log(`Debugging ${this.username}...`);
setTimeout(() => console.log('Still debugging...'), 1000);
setTimeout(() => console.log('Alright, fixed... for now.'), 3000);
}
}
// Main function to meet me
(function main() {
const me = new TheLokin();
console.log(me.introduce());
me.debug();
})();
🛠️
Compiling...
I spend my time programming, and meanwhile, I listen to music. 🎵😊
Highlights
- Pro
Pinned Loading
-
Lambda-Calculus-Interpreter
Lambda-Calculus-Interpreter PublicOCaml implementation of a Lambda Calculus Interpreter
-
JPEG-Encoder-Decoder
JPEG-Encoder-Decoder PublicMatlab implementation of a JPEG encoder/decoder
MATLAB
-
El-Mundo-de-los-Bloques
El-Mundo-de-los-Bloques PublicImplementación en OCaml del Mundo de los Bloques
Tcl 1
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.