Friday

Today will be a bit of a mixed bag of some installation, winner

Winner of yesterdays challenge 👑

Best Guessers

  • Gruppe 1🥇

  • Gruppe 5🥇

Best sketchers

  • Gruppe 1🥇

  • Gruppe 5🥇

  • Gruppe 3🥇

KEA technicalities

  • Mit.kea.dk

  • Mail forwarding kea mail

    • Vi tester om det virker

  • Tilføj mobilnummer

    • Vi tester om det virker

Karakternavne og hvordan man skriver dem

  • | - Pipe (vertikal bar)

    • Mac: option + i

    • Windows: AltGr + ´

  • { - Curly brackets open (tuborg klammer)

    • Mac: option + shift + 8

    • Windows: Alt + 7

  • } - Curly brace close

    • Mac: option + shift + 9

    • Windows: Alt + 0

  • [ - Square brackets open (firkantede klammer)

    • Mac: option + 8

    • Windows: shift + 8

  • ] - Square brackets close (firkantede klammer)

    • Mac: option + 9

    • Windows: shift + 9

  • \ - Backslash

    • Mac: option + shift + 7

    • Windows: alt + <

  • $ - Dollar sign

    • Mac: option + shift + 3

    • Windows: altGr + 4

  • ` - Backtick

    • Mac: shift + ´

    • Windows: shift + ´

https://typing.io/lesson/javascript/jquery/traversing.js/1

Installation + follow along

  • Webstorm

    • Auto increment: preferences -> Tools -> Actions on save -> Reformat code

    • Lav meget simpel hjemmeside

  • DENNE INSTRUKTIONSSLIDE ER TIL INTELLIJ I SKAL DOWNLOADE WEBSTORM - SAMME PROCESS

image-20220825122839113
  • <!doctype html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport"
              content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
        <title>First html page!</title>
    </head>
    <body>
        <main>
            <h1>First html page!</h1>
        </main>
    </body>
    </html>
  • Workbench

    DROP DATABASE IF EXISTS `musicdatabase`;
    CREATE DATABASE `musicdatabase`;
    
    use `musicdatabase`;
    DROP TABLE IF EXISTS `artists`;
    
    CREATE TABLE `artists` (
    		artist_name VARCHAR(50),
        best_album VARCHAR(50)
    ); 
    
    INSERT INTO `artists` VALUES ("Kanye West","My Beautiful Dark Twisted Fantasy");
    INSERT INTO `artists` VALUES ("Ukendt Kunstner","Neonlys");
    INSERT INTO `artists` VALUES ("Finneas","Optimist");
    
    SELECT * FROM `artists`;

    Output:

    image-20220825213050313
  • NodeJs

    • Lav en meget simpel log

    • console.log("hello world");
  • Microsoft package

    • Teams

      • Check class room

Codelab - 9:30

Eksamen + portfølje afleveringer

Detaljeret information om portfølje afleveringer

Last updated