using System;

namespace Homepage
{
    class Body
    {

        static void Main(string[] args)
        {
            Console.WriteLine("Hello Friend!");
            Section1();
            Section2();
            Section3();
            Section4();
            Footer();
        }

        static void Section1()
        {
            Console.WriteLine("About me");
            
            string job = "enthusiastic programming";
            string degree = " Bachelor of Science FHO in Computer Science";
            string location = "Zurich, Switzerland";
            string[] languages = { "native German", "fluent English", "some French", "a little Norwegian" };
        }

        static void Section2()
        {
            Console.WriteLine("Awesome Software");
            // Sublime Merge - Git merging done right https://www.sublimemerge.com/
            // Sublime Text - Fast and powerfull editor https://www.sublimetext.com/
            // Git standup - Remember what you did yesterday https://github.com/kamranahmedse/git-standup
            // Autokbisw - Automatic keyboard switching for OSX https://github.com/jeantil/autokbisw
            // Beanstalk - Simple and fast work queue https://beanstalkd.github.io/
            // HTTPie - cUrl on steroids https://httpie.org/
            // Caddy - Web server with automatic HTTPS https://caddyserver.com/
            // Let's Encrypt - For a secure web https://letsencrypt.org/
            // Turris Omnia - My router of choice https://www.turris.cz/en/turris-omnia/
        }

        static void Section3()
        {
            Console.WriteLine("Usefull Links");
            // ohshitgit - Last resort for troubles with Git https://ohshitgit.com/
            // dev.to - Developer community https://dev.to
            // 3Blue1Brown - Genius math videos https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw
            // Ben Eater - Tutorials about tech https://www.youtube.com/user/eaterbc
            // The Arcane Algorithm Archive - A guide to important algorithms https://www.algorithm-archive.org/
        }

        static void Section4()
        {
            Console.WriteLine("Fun & Interesting");
            // programming is terrible - A blog on programming https://programmingisterrible.com/
            // Beginner Programmers' Mistakes - Article on professional programming https://jscomplete.com/learn/pro-programmer/beginner-programmers-mistakes
            // Xkcd - Webcomic for Engineers https://xkcd.com/
            // ProjectEuler - For when you need a challenge https://projecteuler.net/
            // On The Turing Completeness of PowerPoint - https://www.youtube.com/watch?v=uNjxe8ShM-8
            // Vasa - Why your project management sucks https://vimeo.com/95284690
        }

        static void Footer()
        {
            // Contact me at dominik@thamm.dev
        }
    }
}