-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspeaking.html
More file actions
66 lines (64 loc) · 2.14 KB
/
speaking.html
File metadata and controls
66 lines (64 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Basil Latif's Teaching Portfolio</title>
<meta name="description" content="Contact Me Page" />
<meta name="author" content="SitePoint" />
<link rel="stylesheet" href="styles.css" />
</head>
<!-- Header Section -->
<header>
<h1>Basil Latif's Speaking Engagements</h1>
</header>
<!-- Navigation Bar -->
<nav class="topnav">
<a href="index.html">Home</a>
<a href="projects.html">Data Science Projects</a>
<a href="ai_portfolio.html">AI Portfolio</a>
<a href="teaching.html">Teaching Portfolio</a>
<a href="consulting.html">Consulting Portfolio</a>
<a href="books.html">Top 20 Books</a>
<a href="contact.html">Contact</a>
</nav>
<!-- Introduction -->
<!-- Speaking Experience -->
<div class="container">
<h2>Talks Given</h2>
<table>
<thead>
<tr>
<th>Year</th>
<th>Talk Name</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<tr>
<td data-label="Year">December 2024</td>
<td data-label="Talk Name">5 Lessons from a Failed Data Product</td>
<td data-label="Location">The Data Entrepreneurs (TDE)</td>
</tr>
<tr>
<td data-label="Year">February 2025</td>
<td data-label="Talk Name">Deep Learning Examples</td>
<td data-label="Location">AI Tinkerers - Orange County (Inaugural Meetup)</td>
</tr>
<tr>
<td data-label="Year">May 2025</td>
<td data-label="Talk Name">How Enterprises Should Approach Data Governance and Security</td>
<td data-label="Location">UC Irvine's MBA Class</td>
</tr>
<tr>
<td data-label="Year">November 2025</td>
<td data-label="Talk Name">Panel Talk: Is Data Science Still a Job</td>
<td data-label="Location">Data Con Los Angeles</td>
</tr>
<tr>
<td data-label="Year">November 2025</td>
<td data-label="Talk Name">Data Science Career Night</td>
<td data-label="Location">UCLA CS 134 - At the Invitation of Prof Sandra Batista</td>
</tr>
</tbody>
</table>
</div>