-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresentations.html
More file actions
137 lines (134 loc) · 3.14 KB
/
Copy pathpresentations.html
File metadata and controls
137 lines (134 loc) · 3.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!doctype <!DOCTYPE html>
<html>
<head>
<title>Software Developers CoP</title>
<link rel="stylesheet" href="css/bootstrap/css/bootstrap-yeti.min.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="/">Software Developers CoP</a>
</nav>
<div class="container">
<strong>Presentations</strong>
<table class="table">
<thead>
<tr>
<th>Title</th>
<th>Presentor</th>
<th>Date</th>
<th>Presentation</th>
</tr>
</thead>
<tbody>
<tr>
<td>USACE CorpsMap</td>
<td>Wilhelm Breitkreutz</td>
<td>July, 11, 2018</td>
<td>none</td>
</tr>
<tr>
<td>R Scripting</td>
<td>Brian Breaker</td>
<td>August, 8, 2018</td>
<td>none</td>
</tr>
<tr>
<td>Jython Concurrency</td>
<td>Evan Heisman</td>
<td>September, 5, 2018</td>
<td><a href="/presentations/Parallel computing in Jython using concurrency.pptx">file</a></td>
</tr>
<tr>
<tr>
<td>Software Developers CoP website Demo</td>
<td>Wilhelm Breitkreutz</td>
<td>October, 10, 2018</td>
<td>none</td>
</tr>
<td>Object Oriented Programming</td>
<td>William Lehman</td>
<td>November, 20, 2018</td>
<td><a href="/presentations/OOP101.pptx">file</a></td>
</tr>
<td>Github organization/Discussion </td>
<td>William Lehman</td>
<td>January, 23, 2019</td>
<td>none</td>
</tr>
<tr>
<td>Git Basics</td>
<td>Brian Breaker</td>
<td>February, 14, 2019</td>
<td>none</td>
</tr>
<tr>
<td>Testing</td>
<td>William Lehman</td>
<td>March, 13, 2019</td>
<td><a href="/presentations/Tests.pptx">file</a></td>
</tr>
<tr>
<td>Unit Testing</td>
<td>Gregory Karlovits</td>
<td>April, 23, 2019</td>
<td><a href="/presentations/unitTesting.pptx">file</a></td>
</tr>
<tr>
<td>Google's Go Language</td>
<td>Randy Goss</td>
<td>May, 29, 2019</td>
<td>none</td>
</tr>
<td>Vortex: OO concepts and design patterns in data-processing application</td>
<td>Tom Brauer</td>
<td>June, 25, 2019</td>
<td><a href="https://github.com/HydrologicEngineeringCenter/Vortex">Project</a></td>
</tr>
</tr>
<td>The Ops side of DevOps - Deploying and configuring with Ansible</td>
<td>Brett Palmberg</td>
<td>August, 22, 2019</td>
<td>none</td>
</tr>
</tr>
<td>GG Plots with R</td>
<td>Deanna Apps</td>
<td>September, 23, 2019</td>
<td><a href="https://github.com/USACESoftwareDevelopersCoP/GGPLOT-in-R">Project</a></td>
</tr>
</tr>
<td>Using Automated Builds, Testing and hosting artifacts with TeamCity</td>
<td>Karl Tarbet</td>
<td>April, 23, 2020</td>
<td>none</td>
</tr>
</tr>
<td>WAM2</td>
<td>Alex Ryan</td>
<td>May, 13, 2020</td>
<td><a href="/presentations/Software Cop WAM2 presentation.pptx">file</a></td>
</tr>
</tr>
<td>Developing a Shiney web app to view Monte Carlo data produced by HEC-WAT for CRT/CRSO</td>
<td>Ross Wickham</td>
<td>June, 10, 2020</td>
<td>Live Demo</td>
</tr>
</tr>
<td>RMC Framework libraries for rapid .NET development</td>
<td>Haden Smith</td>
<td>July, 22, 2020</td>
<td>none</td>
</tr>
</tr>
<td>Model Library Demo</td>
<td>Randy Goss</td>
<td>August, 18, 2020</td>
<td>Live Demo</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>