can i just say that im stoked to meet u? humans are super cool


Tay, 23.3.2016 20:32

V O R T R A G

iOS 17 Predictive Text
Transformer Model
Diffusion Model

Labels und Bilderkennung

Facebook Photos Tag Suggestions

* 15.12.2010

As of January 2011, the site housed more than 90 billion images, making it the largest database of pictures on the Web.

ThisPersonDoesNotExist.com

Website, * 2.2019 von Philip Wang

A few sample faces
A few sample faces

CAPTCHAs

* 2000

Unleserliche Schriftzeichen und Straßenschilder
Ein klassisches Captcha. Nervige Tests für Menschen.
Is there any feeling more frustrating than clicking all the correct answers and getting a “please try again”?

Google Faces

App, *2013 von onformative

searching for faces on earth

Automatisierung & Datensammlung

Shirley Card

Farbkarte, * 1940–1990er von Kodak

KODAK WHITE

Globaler Internetzugang

Tay twittert
Tay twittert
Tay twittert

Datenproduktion

Apple Sets New Record: Acquires 32 AI Startups in 2023, the Highest Among Major-Tech Companies


Stocklytics, 7.2.2024

T H E O R I E

Datentypen

JavaScript kennt diese Typen für gespeicherte Werte:

var test; console.log(test); // undefined test = 45.78; console.log(test); // 45.78 test = "Bubatz"; console.log(test); // Bubatz console.log(test === "Bubatz"); // true console.log(beispiel); // null
JS

Bedingungen

const a = 12; const b = 9; var summe = a + b; if(summe === 21) { console.log("Twenty-one"); // true } if(summe > 20) { console.log("Summe ist größer als 20"); // true } else { console.log("Summe ist kleiner gleich 20"); // false }
JS
JavaScript Bedingungen (Idee)
JavaScript Bedingungen (Idee)

P R A X I S

Projekt anlegen

Dynamische Inhalte

Den Text einer Headline durch das Klicken auf einen Button ändern.

<section> <h1 id="zitat">Im Moment habe ich kein E-lan</h1> <img src="media/beispiel-grafik.png" alt="Schwere Füße"> <button id="wow">WOW</button> </section>
HTML
var titel = document.getElementById("zitat"); var button = document.getElementById("wow"); function quote() { console.log(titel); titel.classList.add("highlight"); titel.textContent = "That’s hot"; } button.onclick = quote;
JS

Den Dateipfad einer Grafik durch das Klicken auf einen Button ändern.

<section> <h1 id="zitat" >Im Moment habe ich kein E-lan</h1> <img id="dings" src="media/beispiel-grafik.png" alt="Schwere Füße"> <button id="wow">WOW</button> </section>
HTML
… var bild = document.getElementById("dings"); function quote() { console.log(titel); titel.classList.add("highlight"); titel.textContent = "That’s hot"; bild.src = "media/andere-beispiel-grafik.jpg"; } button.onclick = quote;
JS

Abgabe

Übung so gut wie möglich fertig machen (vollständig und sauber) und bis zum nächsten Termin per Slack DM abgeben.

📂 → 🗜️ → 🎁 → 💬 → ✅