// Introduction -------------------------------------------------------
function greet(
style) {
const greeting
= 'Hi there, my name is';
const name
= 'Simon Ismair';
const aboutMyself
= [
`I'm a Lead Web Engineer and hobbyist photographer`,
`currently living near and working in Munich, Germany.`
];
console.
log(greeting
+ '\n%c' + name, style);
console.
log(aboutMyself.
join(
'\n'));
}
// Meta ---------------------------------------------------------------
const links
= {
Photos: 'https://photo.ismair.com',
Twitter: 'https://twitter.com/_aletheios',
StackOverflow: 'https://stackoverflow.com/users/1350193/aletheios',
GitHub: 'https://github.com/aletheios',
ACM: 'https://dl.acm.org/author_page.cfm?id=99658738605',
Spotify: 'https://open.spotify.com/user/aletheios'
};
// Other --------------------------------------------------------------
function showContactAndLegal() {
window.location.href
= 'contact-and-legal.html';
}
// Open the browser console to see the result of this code
greet(
'font-weight:bold');
console.
log(
JSON.stringify(links,
null,
2));