feat(privat/CV): sync to latest upstream (cv-upstream/main, 30f9608b)
This commit is contained in:
@@ -0,0 +1,595 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Speaker-CV — Dr. Andre Knie</title>
|
||||
<style>
|
||||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
|
||||
|
||||
:root {
|
||||
--bg: #ffffff;
|
||||
--bg-dark: #0a0a0a;
|
||||
--neon: #39ff14;
|
||||
--neon-dim: #2bcc0f;
|
||||
--card: #f6f6f6;
|
||||
--card-border: #e8e8e8;
|
||||
--text: #1a1a1a;
|
||||
--text-light: #666666;
|
||||
--text-on-dark: #e8e8e8;
|
||||
--white: #ffffff;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
body {
|
||||
font-family: 'Inter', -apple-system, sans-serif;
|
||||
font-size: 10pt;
|
||||
line-height: 1.45;
|
||||
color: var(--text);
|
||||
background: #d0d0d0;
|
||||
}
|
||||
|
||||
@page {
|
||||
size: A4 portrait;
|
||||
margin: 12mm 13mm;
|
||||
}
|
||||
|
||||
.page {
|
||||
width: 210mm;
|
||||
min-height: 297mm;
|
||||
padding: 13mm 14mm;
|
||||
position: relative;
|
||||
background: var(--bg);
|
||||
overflow: hidden;
|
||||
margin: 0 auto 8mm auto;
|
||||
box-shadow: 0 2px 12px rgba(0,0,0,0.25);
|
||||
}
|
||||
|
||||
@media print {
|
||||
body { -webkit-print-color-adjust: exact; print-color-adjust: exact; background: #fff; }
|
||||
.page { padding: 0; width: 100%; min-height: 0; margin: 0; box-shadow: none; }
|
||||
.page + .page { page-break-before: always; }
|
||||
}
|
||||
|
||||
/* === HEADER === */
|
||||
.header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 18px;
|
||||
padding-bottom: 12px;
|
||||
border-bottom: 2px solid var(--bg-dark);
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.avatar-img {
|
||||
width: 92px;
|
||||
height: 92px;
|
||||
border-radius: 50%;
|
||||
object-fit: cover;
|
||||
object-position: center top;
|
||||
border: 2px solid var(--bg-dark);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.header-center { flex: 1; }
|
||||
|
||||
.header-center h1 {
|
||||
font-size: 24pt;
|
||||
font-weight: 800;
|
||||
color: var(--bg-dark);
|
||||
line-height: 1.05;
|
||||
letter-spacing: -0.5px;
|
||||
}
|
||||
|
||||
.header-center .tagline {
|
||||
font-size: 11pt;
|
||||
color: var(--neon-dim);
|
||||
font-weight: 700;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
.header-center .subtagline {
|
||||
font-size: 9pt;
|
||||
color: var(--text-light);
|
||||
font-weight: 500;
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
.header-meta {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px 16px;
|
||||
font-size: 8pt;
|
||||
color: var(--text-light);
|
||||
margin-top: 7px;
|
||||
}
|
||||
|
||||
.header-meta span::before {
|
||||
content: '›';
|
||||
color: var(--neon-dim);
|
||||
margin-right: 3px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.logo-dhive {
|
||||
height: 56px;
|
||||
flex-shrink: 0;
|
||||
align-self: flex-start;
|
||||
}
|
||||
|
||||
/* === INTRO / CLAIM === */
|
||||
.claim {
|
||||
background: var(--card);
|
||||
border-left: 3px solid var(--neon);
|
||||
padding: 11px 15px;
|
||||
border-radius: 0 4px 4px 0;
|
||||
font-size: 10pt;
|
||||
line-height: 1.55;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.claim strong { color: var(--bg-dark); font-weight: 600; }
|
||||
|
||||
/* === SECTION TITLES === */
|
||||
.section { margin-bottom: 15px; }
|
||||
|
||||
.section-title {
|
||||
font-size: 9pt;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
color: var(--neon-dim);
|
||||
margin-bottom: 9px;
|
||||
padding-bottom: 3px;
|
||||
border-bottom: 1px solid var(--card-border);
|
||||
}
|
||||
|
||||
/* === TALK CARDS === */
|
||||
.talk-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 9px;
|
||||
}
|
||||
|
||||
.talk-card {
|
||||
background: var(--card);
|
||||
border: 1px solid var(--card-border);
|
||||
border-left: 3px solid var(--neon);
|
||||
border-radius: 0 4px 4px 0;
|
||||
padding: 9px 12px;
|
||||
}
|
||||
|
||||
.talk-card .kicker {
|
||||
font-size: 6.5pt;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.6px;
|
||||
color: var(--neon-dim);
|
||||
}
|
||||
|
||||
.talk-card h3 {
|
||||
font-size: 10pt;
|
||||
font-weight: 700;
|
||||
color: var(--bg-dark);
|
||||
line-height: 1.2;
|
||||
margin: 2px 0 4px 0;
|
||||
}
|
||||
|
||||
.talk-card p {
|
||||
font-size: 8.5pt;
|
||||
line-height: 1.4;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
/* === FORMATS ROW === */
|
||||
.formats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 10px;
|
||||
}
|
||||
.format-box {
|
||||
background: var(--white);
|
||||
border: 1px solid var(--card-border);
|
||||
border-top: 2px solid var(--neon);
|
||||
border-radius: 4px;
|
||||
padding: 8px 11px;
|
||||
}
|
||||
.format-box h4 {
|
||||
font-size: 9pt;
|
||||
font-weight: 700;
|
||||
color: var(--bg-dark);
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
.format-box p {
|
||||
font-size: 7.5pt;
|
||||
color: var(--text-light);
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
/* === STATS BAR === */
|
||||
.stats-bar {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
background: var(--bg-dark);
|
||||
padding: 12px 16px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.stat-item { text-align: center; }
|
||||
.stat-value {
|
||||
font-size: 17pt;
|
||||
font-weight: 800;
|
||||
color: var(--neon);
|
||||
line-height: 1.05;
|
||||
}
|
||||
.stat-label {
|
||||
font-size: 7pt;
|
||||
color: var(--text-on-dark);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.4px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
/* === AUDIENCE TAGS === */
|
||||
.tag-grid { display: flex; flex-wrap: wrap; gap: 5px; }
|
||||
.tag {
|
||||
background: var(--card);
|
||||
color: var(--text);
|
||||
padding: 3px 9px;
|
||||
border-radius: 10px;
|
||||
font-size: 8pt;
|
||||
font-weight: 500;
|
||||
border: 1px solid var(--card-border);
|
||||
}
|
||||
|
||||
/* === TESTIMONIALS === */
|
||||
.testimonial {
|
||||
background: var(--card);
|
||||
border-radius: 4px;
|
||||
padding: 10px 14px;
|
||||
margin-bottom: 8px;
|
||||
position: relative;
|
||||
}
|
||||
.testimonial p {
|
||||
font-size: 8.5pt;
|
||||
font-style: italic;
|
||||
line-height: 1.45;
|
||||
color: var(--text);
|
||||
}
|
||||
.testimonial .src {
|
||||
font-size: 7.5pt;
|
||||
color: var(--neon-dim);
|
||||
font-weight: 600;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
/* === REFERENCES / LOGOS-AS-TEXT === */
|
||||
.ref-list { display: flex; flex-wrap: wrap; gap: 5px; }
|
||||
.ref-pill {
|
||||
background: var(--white);
|
||||
border: 1px solid var(--card-border);
|
||||
border-radius: 3px;
|
||||
padding: 3px 8px;
|
||||
font-size: 8pt;
|
||||
font-weight: 500;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.talk-history { list-style: none; }
|
||||
.talk-history li {
|
||||
font-size: 8.5pt;
|
||||
padding: 3px 0 3px 14px;
|
||||
position: relative;
|
||||
border-bottom: 1px dotted var(--card-border);
|
||||
line-height: 1.35;
|
||||
}
|
||||
.talk-history li:last-child { border-bottom: none; }
|
||||
.talk-history li::before {
|
||||
content: '▸';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: var(--neon-dim);
|
||||
font-weight: 700;
|
||||
}
|
||||
.talk-history .meta { color: var(--text-light); font-size: 7.5pt; }
|
||||
|
||||
/* === TWO COLUMN === */
|
||||
.two-col {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 22px;
|
||||
}
|
||||
|
||||
/* === VITA === */
|
||||
.vita { list-style: none; }
|
||||
.vita li {
|
||||
font-size: 8.5pt;
|
||||
padding: 4px 0;
|
||||
padding-left: 56px;
|
||||
position: relative;
|
||||
line-height: 1.3;
|
||||
}
|
||||
.vita .period {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: var(--neon-dim);
|
||||
font-weight: 700;
|
||||
font-size: 7.5pt;
|
||||
}
|
||||
.vita .role { font-weight: 600; color: var(--bg-dark); }
|
||||
.vita .org { color: var(--text-light); }
|
||||
|
||||
.mini-list { list-style: none; }
|
||||
.mini-list li {
|
||||
font-size: 8.5pt;
|
||||
padding: 2.5px 0 2.5px 13px;
|
||||
position: relative;
|
||||
line-height: 1.35;
|
||||
}
|
||||
.mini-list li::before {
|
||||
content: '✓';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: var(--neon-dim);
|
||||
font-weight: 700;
|
||||
font-size: 8.5pt;
|
||||
}
|
||||
|
||||
/* === BOOKING FOOTER === */
|
||||
.booking {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 18px;
|
||||
background: var(--bg-dark);
|
||||
border-radius: 4px;
|
||||
padding: 14px 20px;
|
||||
margin-top: 4px;
|
||||
}
|
||||
.booking .b-left h3 {
|
||||
color: var(--white);
|
||||
font-size: 12pt;
|
||||
font-weight: 700;
|
||||
}
|
||||
.booking .b-left p {
|
||||
color: var(--text-on-dark);
|
||||
font-size: 8.5pt;
|
||||
margin-top: 2px;
|
||||
}
|
||||
.booking .b-right {
|
||||
text-align: right;
|
||||
font-size: 9pt;
|
||||
color: var(--neon);
|
||||
font-weight: 600;
|
||||
line-height: 1.6;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.booking .b-right div::before {
|
||||
content: '›';
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.page-foot {
|
||||
text-align: center;
|
||||
font-size: 7pt;
|
||||
color: var(--text-light);
|
||||
margin-top: 10px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- ============ PAGE 1 ============ -->
|
||||
<div class="page">
|
||||
|
||||
<!-- HEADER -->
|
||||
<div class="header">
|
||||
<img src="../../assets/230823_Einfachbahn_Andre-brillenlos-hochformat.png" alt="Dr. Andre Knie" class="avatar-img">
|
||||
<div class="header-center">
|
||||
<h1>Dr. Andre Knie</h1>
|
||||
<div class="tagline">KI verständlich, praxisnah und ohne Hype</div>
|
||||
<div class="subtagline">Keynote-Speaker & Workshop-Host · Physiker · Gründer · Konzern-Digitalisierer</div>
|
||||
<div class="header-meta">
|
||||
<span>Kassel</span>
|
||||
<span>andreknie.de</span>
|
||||
<span>linkedin.com/in/knie</span>
|
||||
<span>knie@d-hive.de</span>
|
||||
</div>
|
||||
</div>
|
||||
<img src="../../assets/d-Hive_logo_darkText_transparent_crop.png" alt="d-hive" class="logo-dhive">
|
||||
</div>
|
||||
|
||||
<!-- CLAIM -->
|
||||
<div class="claim">
|
||||
<strong>Technologie begeistert mich. Menschen noch mehr.</strong> Ich verbinde Welten, die selten zusammenkommen: Grundlagenforschung und Shopfloor, Konzernsteuerung und Startup-Garage, Algorithmen und Ängste. Als promovierter Physiker, Gründer und Digitalisierer eines DAX-Konzerns mache ich Künstliche Intelligenz auf der Bühne greifbar — analytisch fundiert, nah am Alltag und ohne Buzzword-Bingo.
|
||||
</div>
|
||||
|
||||
<!-- THEMEN -->
|
||||
<div class="section">
|
||||
<div class="section-title">Vorträge & Workshops</div>
|
||||
<div class="talk-grid">
|
||||
|
||||
<div class="talk-card">
|
||||
<div class="kicker">Keynote</div>
|
||||
<h3>KI ohne Hype — was wirklich funktioniert</h3>
|
||||
<p>Ein nüchterner Blick auf Künstliche Intelligenz: Welche Use Cases liefern echten Wert, welche sind heiße Luft? Mit konkreten Beispielen aus 50+ Projekten — vom Mittelstand bis zum Großkonzern.</p>
|
||||
</div>
|
||||
|
||||
<div class="talk-card">
|
||||
<div class="kicker">Keynote</div>
|
||||
<h3>Souveräne KI aus und für Deutschland</h3>
|
||||
<p>Unabhängig von US-Hyperscalern und chinesischer Big-Tech: Warum digitale Souveränität, DSGVO- und AI-Act-Konformität kein Hindernis, sondern ein Wettbewerbsvorteil sind.</p>
|
||||
</div>
|
||||
|
||||
<div class="talk-card">
|
||||
<div class="kicker">Keynote · Impuls</div>
|
||||
<h3>Vom Labor auf den Shopfloor</h3>
|
||||
<p>Wie wissenschaftliches Denken und Hands-on-Mentalität zusammenkommen: Energieeffizienz, Sensorik und datengetriebene Optimierung — mit messbaren Einsparungen in der Industrie.</p>
|
||||
</div>
|
||||
|
||||
<div class="talk-card">
|
||||
<div class="kicker">Keynote · Impuls</div>
|
||||
<h3>Mensch, Kultur & Wandel — Angst war gestern</h3>
|
||||
<p>Die Angst vor Technologie lähmt Organisationen. Über Shared Leadership, positive Fehlerkultur und Change-Prozesse, die Menschen abholen und Begeisterung auslösen.</p>
|
||||
</div>
|
||||
|
||||
<div class="talk-card">
|
||||
<div class="kicker">Workshop</div>
|
||||
<h3>KI zum Anfassen — Hands-on für Teams</h3>
|
||||
<p>Vom ersten Use Case bis zum lauffähigen Prototyp: Custom GPTs, Chatbots und KI-Agenten praxisnah entwickeln. Format der „KI FrAItage" an der Universität Kassel.</p>
|
||||
</div>
|
||||
|
||||
<div class="talk-card">
|
||||
<div class="kicker">Panel · Moderation</div>
|
||||
<h3>KI in Verwaltung, HR & Mittelstand</h3>
|
||||
<p>Moderation und Panel-Diskussionen rund um verantwortungsvolle KI-Einführung — zielgruppengerecht für Führungskreise, öffentliche Hand und Verbände.</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- STATS -->
|
||||
<div class="section">
|
||||
<div class="stats-bar">
|
||||
<div class="stat-item"><div class="stat-value">13+</div><div class="stat-label">Jahre KI</div></div>
|
||||
<div class="stat-item"><div class="stat-value">60+</div><div class="stat-label">Publikationen</div></div>
|
||||
<div class="stat-item"><div class="stat-value">50+</div><div class="stat-label">Projekte</div></div>
|
||||
<div class="stat-item"><div class="stat-value">2.000+</div><div class="stat-label">Zitationen</div></div>
|
||||
<div class="stat-item"><div class="stat-value">100%</div><div class="stat-label">DSGVO & AI-Act</div></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- FORMATE -->
|
||||
<div class="section">
|
||||
<div class="section-title">Formate & Rahmen</div>
|
||||
<div class="formats">
|
||||
<div class="format-box">
|
||||
<h4>Keynote · 20–60 Min.</h4>
|
||||
<p>Konferenzen, Firmenevents, Verbände, Galas. Pointiert und praxisnah.</p>
|
||||
</div>
|
||||
<div class="format-box">
|
||||
<h4>Workshop · ½–1 Tag</h4>
|
||||
<p>Hands-on mit Teams: Use Cases, Prototyping, Enablement.</p>
|
||||
</div>
|
||||
<div class="format-box">
|
||||
<h4>Panel & Moderation</h4>
|
||||
<p>Diskussionsleitung und Impulse. Sprachen: Deutsch & Englisch.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- ZIELGRUPPEN -->
|
||||
<div class="section">
|
||||
<div class="section-title">Für wen</div>
|
||||
<div class="tag-grid">
|
||||
<span class="tag">Mittelstand</span>
|
||||
<span class="tag">Öffentliche Verwaltung</span>
|
||||
<span class="tag">Hochschulen & Universitäten</span>
|
||||
<span class="tag">Geschäftsführung & Vorstände</span>
|
||||
<span class="tag">IT-Leitung & CTO</span>
|
||||
<span class="tag">HR & Organisationsentwicklung</span>
|
||||
<span class="tag">Verbände & Kammern</span>
|
||||
<span class="tag">Soziale Einrichtungen</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-foot">Dr. Andre Knie · Speaker-CV · Seite 1 / 2</div>
|
||||
</div>
|
||||
|
||||
<!-- ============ PAGE 2 ============ -->
|
||||
<div class="page">
|
||||
|
||||
<!-- TESTIMONIALS -->
|
||||
<div class="section">
|
||||
<div class="section-title">Was Veranstalter & Kunden sagen</div>
|
||||
<div class="testimonial">
|
||||
<p>„André hat die strategische Ausrichtung unserer KI-FrAItage entscheidend vorangebracht, die Workshops konzipiert und herausragend moderiert. Die Menschen wurden abgeholt und begeistert. Wir setzen auch in der weiteren KI-Reise auf seine Expertise und Kommunikationsstärke."</p>
|
||||
<div class="src">Maike Mach · Personal- & Organisationsentwicklung, Universität Kassel</div>
|
||||
</div>
|
||||
<div class="testimonial">
|
||||
<p>„André bringt uns voran, begeistert Menschen, zeigt auf, was sinnvoll ist und was nicht. Durch ihn sind wir Größenordnungen schneller und sicherer. Sein Team und er befähigen uns, Dinge umzusetzen, von denen wir vorher nicht geträumt hätten."</p>
|
||||
<div class="src">Andrea Scholle · Leiterin Digitalisierung & OE, Kulturzentrum Schlachthof gGmbH</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- TALK HISTORY -->
|
||||
<div class="section">
|
||||
<div class="section-title">Ausgewählte Auftritte</div>
|
||||
<ul class="talk-history">
|
||||
<li><strong>Positive Fehlerkultur</strong> — Eingeladener Vortrag, Unternehmerverband Nordhessen (UNH) <span class="meta">· 2025</span></li>
|
||||
<li><strong>Energieeffizienz in der Druckluft & moderne Sensorik</strong> — Hessenmetall / TU Darmstadt <span class="meta">· 2024</span></li>
|
||||
<li><strong>Energieeffizienz und KI</strong> — Hessenmetall Workshop <span class="meta">· 2024</span></li>
|
||||
<li><strong>KI und Einsatz von KI</strong> — Future Mobility Shift, Regionalmanagement Nordhessen <span class="meta">· 2023</span></li>
|
||||
<li><strong>KI und Einsatz von KI</strong> — IT-Netzwerk Nordhessen <span class="meta">· 2023</span></li>
|
||||
<li><strong>KI FrAItage</strong> — laufende Workshop-Reihe, Universität Kassel <span class="meta">· seit 2024</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- REFERENCES -->
|
||||
<div class="section">
|
||||
<div class="section-title">Bühnen, Kunden & Partner</div>
|
||||
<div class="ref-list">
|
||||
<span class="ref-pill">Deutsche Bahn</span>
|
||||
<span class="ref-pill">Universität Kassel</span>
|
||||
<span class="ref-pill">Universität zu Köln</span>
|
||||
<span class="ref-pill">Hochschule Fresenius</span>
|
||||
<span class="ref-pill">Hessian.AI</span>
|
||||
<span class="ref-pill">Hessenmetall</span>
|
||||
<span class="ref-pill">TU Darmstadt</span>
|
||||
<span class="ref-pill">RKW Hessen</span>
|
||||
<span class="ref-pill">Science Park Kassel</span>
|
||||
<span class="ref-pill">UNH Nordhessen</span>
|
||||
<span class="ref-pill">KI-Bundesverband</span>
|
||||
<span class="ref-pill">Sika</span>
|
||||
<span class="ref-pill">Hexagon Purus</span>
|
||||
<span class="ref-pill">Hübner Group</span>
|
||||
<span class="ref-pill">Arvos Group</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="two-col">
|
||||
<!-- VITA -->
|
||||
<div class="section">
|
||||
<div class="section-title">Werdegang (Auszug)</div>
|
||||
<ul class="vita">
|
||||
<li><span class="period">seit '25</span><span class="role">Experte für Digitalisierung</span> <span class="org">· DB InfraGO AG</span></li>
|
||||
<li><span class="period">seit '21</span><span class="role">Gründer & Geschäftsführer</span> <span class="org">· Data Hive Cassel</span></li>
|
||||
<li><span class="period">'20–'25</span><span class="role">Leiter #Einfachbahn</span> <span class="org">· DB Netz AG (ab '22 JobSharing)</span></li>
|
||||
<li><span class="period">'25</span><span class="role">Dozent Agilität & Führung</span> <span class="org">· Hochschule Fresenius (MBA)</span></li>
|
||||
<li><span class="period">'09–'20</span><span class="role">Forschung & Lehre Physik</span> <span class="org">· Universität Kassel</span></li>
|
||||
<li><span class="period">'09–'12</span><span class="role">Promotion Dr. rer. nat.</span> <span class="org">· Quantenmechanik, Uni Kassel</span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- PROFIL & CONTENT -->
|
||||
<div class="section">
|
||||
<div class="section-title">Stimme & Reichweite</div>
|
||||
<ul class="mini-list">
|
||||
<li><strong>Kniepunkt</strong> — wöchentliche KI-Kolumne, 39+ Ausgaben</li>
|
||||
<li><strong>Almost Intelligent</strong> — KI-Podcast (14-tägig)</li>
|
||||
<li><strong>Einfachbahn-Impulse</strong> — Podcast zu Digitalisierung</li>
|
||||
<li>Host KI-Peergroup Nordhessen (mit Prof. Timo Braun)</li>
|
||||
<li>Startup-Mentor & Juror UNIKAT-Ideenwettbewerb</li>
|
||||
<li>SAFe Agile Leader · Agile Coach & OKR</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- BOOKING -->
|
||||
<div class="booking">
|
||||
<div class="b-left">
|
||||
<h3>Jetzt als Speaker anfragen</h3>
|
||||
<p>Keynote, Workshop oder Panel — ich gestalte das Format passend zu Ihrem Publikum.</p>
|
||||
</div>
|
||||
<div class="b-right">
|
||||
<div>knie@d-hive.de</div>
|
||||
<div>andreknie.de</div>
|
||||
<div>linkedin.com/in/knie</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-foot">Dr. Andre Knie · Speaker-CV · Seite 2 / 2</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user