Me!

Published at 8/16/2023

#SvelteKit#Svelte

A little about me & also for the landing page :P


I’ll present myself in code! :zerotwo_hype:

ts
import { Human } from './species' // Think grander ✨
import genericDetails from './me.private'
class Ham extends Human {
nick = 'Ham'
social = {
discord: 'TooMuchHam',
guilded: 'https://www.guilded.gg/u/sosweetham'
}
interests = ['Programming', 'Gaming', 'Anime'] // :gigachad:
constructor(proDetails: Omit<Human, "nick"|"social"|"interests">) {
super(proDetails)
}
greet() {
return `Hello, I'm ${this.nick}!
My interests are ${this.interests.join(', ')}!`
}
}
const ham = new Ham(genericDetails)
const greeting = ham.greet()
ts
import { Human } from './species' // Think grander ✨
import genericDetails from './me.private'
class Ham extends Human {
nick = 'Ham'
social = {
discord: 'TooMuchHam',
guilded: 'https://www.guilded.gg/u/sosweetham'
}
interests = ['Programming', 'Gaming', 'Anime'] // :gigachad:
constructor(proDetails: Omit<Human, "nick"|"social"|"interests">) {
super(proDetails)
}
greet() {
return `Hello, I'm ${this.nick}!
My interests are ${this.interests.join(', ')}!`
}
}
const ham = new Ham(genericDetails)
const greeting = ham.greet()

I enjoyed making this, I hope you enjoyed reading it :D