https://sjaks.iki.fi/

ID de exploración:
1e5113c5-5bd5-435c-a9a5-5ca951568509Finalizado
URL enviada:
https://sjaks.iki.fi/
Informe finalizado:

Enlaces: 2 encontrados

EnlaceTEXTO
https://github.com/sjaksGitHub
https://linkedin.com/in/sjaksLinkedIn

Variables JavaScript: 10 encontradas

NombreTipo
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
openRecipefunction
getRecipesfunction
clearParamfunction
closeRecipefunction
loadContentfunction
showFinnishfunction
showEnglishfunction

Mensajes de registro de la consola: 0 encontrados

HTML

<!--
homepage
sjaks@github
--><!DOCTYPE html><html lang="en"><head>
        <meta charset="UTF-8">
        <link rel="stylesheet" href="/assets/styles/main.css">
        <link rel="icon" href="/assets/icons/favicon.ico" type="image/png">

        <meta name="theme-color" content="#111">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">

        <title>Sami Jakonen</title>
        <meta name="description" content="Personal home page of Sami Jakonen">
        <meta name="subject" content="My personal website">
        <meta name="category" content="technology">
        <meta name="distribution" content="Global">
        <meta name="author" content="Sami Jakonen">
        <meta name="language" content="EN">

        <meta name="og:title" content="Sami Jakonen">
        <meta name="og:type" content="website">
        <meta name="og:site_name" content="Sami Jakonen">
        <meta name="og:description" content="Personal home page of Sami Jakonen">

        <script>
            let FF_FOUC_FIX;
        </script>
    </head>
    <body>
        <div class="wrapper">
            <heading>
                <div class="logo-wrapper">
                    <img alt="Logo" src="/assets/icons/cabba.jpeg">
                </div>
                <h1>
                    Sami Jakonen
                </h1>
                <h2>
                    Contact me at
                    <a href="mailto:%73ami.j%61%6Bonen@i%6Bi%2Efi">
                        [email protected]
                    </a>
                </h2>
            </heading>
            <div class="menu">
                <div class="item active">
                    <a id="home" onclick="loadContent(this.id)">Home</a>
                </div>
                <div class="item">
                    <a id="cv" onclick="loadContent(this.id)">CV</a>
                </div>
                <div class="item">
                    <a id="cookbook" onclick="loadContent(this.id)">Recipes</a>
                </div>
            </div>
            <div class="content">
                <main id="main-content">
                    Hi! I’m a Full Stack Developer at Cinia with a passion for coding, software architecture and FOSS.
                    I hold a Master’s in IT (DI), and on top of being intrigued by designing and building software products,
                    I am very keen on improving customer communication and learning more about good software product
                    and process management.
                </main>
                <aside>
                    <ul>
                        <li><a target="_BLANK" href="https://github.com/sjaks">GitHub</a></li>
                        <li><a target="_BLANK" href="https://linkedin.com/in/sjaks">LinkedIn</a></li>
                    </ul>
                </aside>
            </div>
            <footer>
                sjaks.iki.fi
            </footer>
        </div>

        <template id="home-template">
                Hi! I’m a Full Stack Developer at Cinia with a passion for coding, software architecture and FOSS.
                I hold a Master’s in IT (DI), and on top of being intrigued by designing and building software products,
                I am very keen on improving customer communication and learning more about good software product
                and process management.
        </template>

        <template id="cv-template">
            This is my simplified <i>curriculum vitae</i> with the most noteworthy accomplishments.
            <div">
                <h3>Work experience</h3>
                <ul>
                    <li>Cinia - Software developer - 05/2023 - present</li>
                    <li>Seravo - Software developer - 09/2020 - 09/2022</li>
                    <li>Seravo - Intern - 05/2020 - 09/2020</li>
                </ul>
                <h3>Education</h3>
                <ul>
                    <li>Tampere University - Master of Science in Technology - 2022 - 2024</li>
                    <li>Tampere University - Bachelor of Science - 2018 - 2022</li>
                </ul>
                <h3>Tinkering projects</h3>
                <ul>
                    <li>Many coding projects on my GitHub</li>
                    <li>Home automation and Home Assistant setup</li>
                    <li>Linux and MacOS systems</li>
                    <li>Gravel bike</li>
                </ul>
                <h3>Technologies</h3>
                <ul>
                    <li>Javascript/Typescript/React</li>
                    <li>Python</li>
                    <li>Java/Spring</li>
                    <li>HTML/CSS</li>
                    <li>Linux CLI and networking tools</li>
                    <li>Docker/GitHub Actions/GitLab CI</li>
                    <li>SQL</li>
                </ul>
            
        </div"></template>

        <template id="cookbook-template">
            <div id="recipe-container">
                <span class="close-btn" onclick="closeRecipe()">✕</span>
                <div id="recipe-view"></div>
            </div>
            <span style="color:darkred">WIP!</span> Some quite alright recipes. Many are vegan and all of them fit in a vegetarian diet. The recipes are in Finnish, but there're English translations available.
            <div class="lang-select">
                Recipe language: <span onclick="showFinnish()">FI</span> | <span onclick="showEnglish()">EN</span>
            </div>
            <table id="cookbook-content">
                <tbody><tr>
                    <th>Recipe</th>
                    <th>Allergies</th>
                    <th>Favourite</th>
                </tr>
            </tbody></table>
        </template>
        <script src="assets/scripts/recipes.js"></script>
    

</body></html>