The best way to learn how to use the WebCore is by example. See the documentation for more information.
The requested URL is always shown first; if a page uses one or more WebCore templates, those are shown afterwards.
00 <?php
01 include_once ('webcore/init.php');
02
03 /** @var THEMED_PAGE $Page */
04 $page = $Page;
05
06 $page->title->subject = "Marco Von Ballmoos - Curriculum Vitae";
07 $page->template_options->title = "C.V.";
08
09 $page->location->add_root_link ();
10 $page->location->append ("Marco", "../");
11 $page->location->append ("Curriculum Vitae", './');
12 $page->location->append ("October 2021");
13
14 $page->theme->font_name_CSS_file_name = '{styles}/fonts/forum';
15 $page->theme->font_size_CSS_file_name = '{styles}/core/small';
16 $page->theme->main_CSS_file_name = 'styles/resume.css';
17 $page->start_display ();
18
19 // To release for a new year (e.g. 01.01.2022), do the following:
20 // Update the grid-template-columns to include the new half-years since it was last updated
21
22 $first_year = 1985;
23 $current_year = 2021;
24 $first_professional_year = 1994;
25 $first_encodo_year = 2005;
26 $full = read_var ('full', 1);
27 $pdf = read_var ('pdf', 0);
28
29 function year_label($start)
30 {
31 echo "style=\"grid-column: 1 / $start\"";
32 }
33
34 function year_bar($start, $end = null)
35 {
36 global $current_year;
37
38 if ($end == null)
39 {
40 $end = "year" . ($current_year + 1);
41 }
42
43 echo "style=\"grid-column: $start / $end\"";
44 }
45
46 function employee_area($start, $end = null)
47 {
48 echo "<span ";
49 year_label($start);
50 echo "></span><span ";
51 year_bar($start, $end);
52 echo "></span>";
53 }
54
55 function project_line($label, $skills, $start, $end = null)
56 {
57 $chars = array(" ", "#", "-", "/", ".", "!");
58 $anchor = str_replace($chars, "", $label);
59
60 skill_line ("<a href=\"#$anchor\">$label</a>", $skills, $start, $end);
61 }
62
63 function skill_line($label, $skills, $start, $end = null)
64 {
65 echo "<span ";
66 year_label($start);
67 echo ">$label</span><span class=\"$skills\"";
68 year_bar($start, $end);
69 echo "></span>";
70 }
71
72 function skill_line_right($label, $skills, $start, $end = null)
73 {
74 echo "<span class=\"$skills\"";
75 year_bar($start, $end);
76 echo "></span><span style=\"grid-column: $end / year2022\">$label</span>";
77 }
78
79 ?>
80 <div class="main-box">
81 <div class="text-flow">
82 <section class="contact">
83 <div>
84 <h1>Contact Information</h1>
85 <img src="assets/Resume_photo_September_2020_120px_high.jpg" alt="Photo of Marco">
86 </div>
87 <div class="content">
88 <div>
89 <h2>Marco von Ballmoos</h2>
90 <address>
91 Langfurrenstrasse 31<br>
92 8623 Wetzikon<br>
93 Switzerland
94 </address>
95 <p>
96 <label>DOB: </label><time title="DOB">09.08.1972</time>;
97 <label>Nationality: </label>CH, US
98 </p>
99 </div>
100 <dl>
101 <?php if ($pdf) {?>
102 <dt>Mail</dt>
103 <dd>mvonballmo+job@protonmail.com</dd>
104 <dt>Phone</dt>
105 <dd>+41 76 336 8083</dd>
106 <dt>Threema</dt>
107 <dd>3VXTZ2RA</dd>
108 <?php } ?>
109 <dt>GitHub</dt>
110 <dd><a href="https://github.com/mvonballmo">mvonballmo</a></dd>
111 <dt>LinkedIn</dt>
112 <dd><a href="https://www.linkedin.com/in/marco-von-ballmoos/">marco-von-ballmoos</a></dd>
113 <?php if (!$pdf) { ?>
114 <dt>More</dt>
115 <dd><a href="<?php echo $Page->resolve_file ("{root}/users/marco/cv/Marco_von_Ballmoos_CV_2022_01.pdf")?>">(see PDF for contact info)</a></dd>
116 <?php } ?>
117 </dl>
118 <div class="picture"></div>
119 </div>
120 </section>
121
122 <section>
123 <h1>Profile</h1>
124 <div class="content">
125 <p>I've been designing and building software professionally since
126 <?php echo $first_professional_year; ?> (over <?php echo $current_year - $first_professional_year; ?> years).
127 My focus has been on automated testing and libraries/frameworks
128 (with an eye on <abbr title="Don't Repeat Yourself">DRY</abbr> and <abbr title="You Ain't Gonna Need It">YAGNI</abbr>)
129 to meet customer and product <b>requirements</b>: functional, UX, performance, maintainability, scalability, etc.</p>
130 </div>
131 </section>
132
133 <section>
134 <h1>Roles</h1>
135 <div class="grid employment">
136 <div>
137 <h2>Full-stack Developer</h2>
138 <p>Design and build software in a wide range of languages and frameworks on client and server. Most recent experience is <b>.NET</b> and <b>TypeScript/React</b>.</p>
139 </div>
140 <div>
141 <h2>Systems Architect</h2>
142 <p>Design and document back-end and front-end systems. Integrate with existing systems. <b>Understandable</b>, <b>Maintainable</b>, and <b>Extendable</b>.</p>
143 </div>
144 <div>
145 <h2>DevOps</h2>
146 <p>Design and build processes to go from dev boxes to deployment. Most recent experience is <b>Azure</b>, <b>Jenkins</b>, and <b>TeamCity</b>.</p>
147 </div>
148 <div>
149 <h2>Trainer & Educator</h2>
150 <p>Teach <b>JavaScript</b> and <b>Mobile-App Development</b> at a <a href="https://www.hbu.ch/index.html?id=10008">local college</a>.
151 Design, write and present trainings; write technical documentation; share knowledge via code reviews and frequent <a href="https://www.earthli.com/news/view_folder.php?id=18">blogging</a>.</p>
152 </div>
153 <div>
154 <h2>Project Manager</h2>
155 <p>Analyze, collect, refine, and specify <b>requirements</b>. Coordinate with customers. Manage backlog, sprints, and releases. Major recent experience with <b>Jira</b> and <b>Azure Boards</b>.</p>
156 </div>
157 </div>
158 </section>
159
160 <section>
161 <h1>Skills Summary</h1>
162 <div>
163 <div>
164 <div class="content grid">
165 <div>
166 <table class="list">
167 <tr>
168 <th>Skill</th>
169 <th>Years/Level</th>
170 </tr>
171 <tr class="expert">
172 <th>TypeScript</th>
173 <td>7+ years/expert</td>
174 </tr>
175 <tr class="expert">
176 <th>React</th>
177 <td>5+ years/expert</td>
178 </tr>
179 <tr class="expert">
180 <th>JavaScript</th>
181 <td>10+ years/expert</td>
182 </tr>
183 <tr class="expert">
184 <th>C#</th>
185 <td>10+ years/expert</td>
186 </tr>
187 <tr class="expert">
188 <th>HTML/CSS</th>
189 <td>10+ years/expert</td>
190 </tr>
191 <tr class="proficient">
192 <th>Less/SCSS</th>
193 <td>8+ years/proficient</td>
194 </tr>
195 <tr class="competent">
196 <th>Angular</th>
197 <td>2+ years/competent</td>
198 </tr>
199 </table>
200 <?php if ($full) { ?>
201 <p class="notes">See <a href="#skillsDetails">details below</a> for a full listing of skills.</p>
202 <?php } else { ?>
203 <p class="notes">See <a href="https://www.earthli.com/users/marco/cv/2022_01.php#skillsDetails">details online</a> for a full listing of skills.</p>
204 <?php } ?>
205 </div>
206 <div>
207 <table class="list">
208 <tr>
209 <th>Skill</th>
210 <th>Years/Level</th>
211 </tr>
212 <tr class="expert">
213 <th>CI/CD</th>
214 <td>8+ years/expert</td>
215 </tr>
216 <tr class="expert">
217 <th>ASP.NET (Core)</th>
218 <td>10+ years/expert</td>
219 </tr>
220 <tr class="expert">
221 <th>.NET/.NET Core</th>
222 <td>10+ years/expert</td>
223 </tr>
224 <tr class="expert">
225 <th>PHP</th>
226 <td>10+ years/expert</td>
227 </tr>
228 <tr class="expert">
229 <th>Automated Testing</th>
230 <td>10+ years/expert</td>
231 </tr>
232 <tr class="proficient">
233 <th>iOS/Swift</th>
234 <td>5+ years/proficient</td>
235 </tr>
236 <tr class="proficient">
237 <th>Android/Java</th>
238 <td>5+ years/proficient</td>
239 </tr>
240 </table>
241 </div>
242 </div>
243 <h2>Certifications</h2>
244 <p><a href="https://docs.microsoft.com/en-us/learn/certifications/exams/70-483">Programming in C#</a> (2019)</p>
245 </div>
246 </div>
247 </section>
248
249 <section>
250 <h1>Personal</h1>
251 <div>
252 <div class="content grid">
253 <div>
254 <h2>Languages</h2>
255 <table class="list">
256 <tr>
257 <th>Language</th>
258 <th>Level</th>
259 </tr>
260 <tr class="native">
261 <th>English</th>
262 <td>Native</td>
263 </tr>
264 <tr class="fluent">
265 <th>German</th>
266 <td>Fluent</td>
267 </tr>
268 <tr class="fluent">
269 <th>Swiss-German</th>
270 <td>Fluent</td>
271 </tr>
272 <tr class="mixed">
273 <th>Italian</th>
274 <td>Mixed</td>
275 </tr>
276 <tr class="mixed">
277 <th>French</th>
278 <td>Mixed</td>
279 </tr>
280 </table>
281 <p class="notes">Mixed: intermediate comprehension; basic speaking, writing</p>
282 </div>
283 <div>
284 <h2>Interests</h2>
285 <ul>
286 <li><a href="https://www.earthli.com/albums/view_folder.php?id=362">Cycling</a></li>
287 <li><a href="https://www.earthli.com/albums/search.php?search_form_submitted=1&debug=0&id=&quick_search=0&type=picture&search_text=hiking&title=1&description=1&state=1&folder_search_type=context_none&creator_id_search_type=constant&creator_id=marco&time_created_search_type=constant&time_created_after=&time_created_before=&modifier_id_search_type=constant&modifier_id=&time_modified_search_type=constant&time_modified_after=&time_modified_before=&sort_1=&sort_direction_1=desc&sort_2=&sort_direction_2=asc&sort_3=&sort_direction_3=asc#search-results">Hiking</a></li>
288 <li><a href="https://www.earthli.com/news/view_folder.php?id=18">Programming</a></li>
289 <li><a href="https://www.earthli.com/news/view_user.php?name=marco">Writing</a></li>
290 <li><a href="https://www.earthli.com/news/view_folder.php?id=34">Books</a></li>
291 <li><a href="https://www.earthli.com/news/view_folder.php?id=45">Movies</a></li>
292 <li><a href="https://www.earthli.com/news/view_folder.php?id=44">Current Events</a></li>
293 </ul>
294 </div>
295 </div>
296 </div>
297 </section>
298
299 <section>
300 <h1>Employment & Education</h1>
301
302 <div class="content grid employment">
303 <div>
304 <h2><a href="https://www.hbu.ch/index.html?id=10008">HFU</a></h2>
305 <h3>Uster, Switzerland</h3>
306 <h4 title="<?php echo $current_year - 2020; ?> years"><time datetime="2020-11">Nov 2020</time>—present</h4>
307 <ul class="employment">
308 <li>Instructor</li>
309 <li>Lead Developer</li>
310 </ul>
311 </div>
312 <div>
313 <h2><a href="https://encodo.com">Encodo Systems AG</a></h2>
314 <h3>Winterthur, Switzerland</h3>
315 <h4 title="<?php echo $current_year - 2005; ?> years"><time datetime="2005-09">Sep 2005</time>—<time datetime="2022-01">Jan 2022</time></h4>
316 <ul class="employment">
317 <li>Founding Partner</li>
318 <li>Project Manager</li>
319 <li>Architect</li>
320 <li>Lead Developer</li>
321 <li>Support</li>
322 </ul>
323 </div>
324 <div>
325 <h2><a href="https://opus.ch">Opus Software AG</a></h2>
326 <h3>Wetzikon, Switzerland</h3>
327 <h4 title="3 years"><time datetime="2002-10">Oct 2002</time>—<time datetime="2005-08">Aug 2005</time></h4>
328 <ul class="employment">
329 <li>Architect</li>
330 <li>Lead Developer</li>
331 <li>Support</li>
332 </ul>
333 </div>
334 <div>
335 <h2>Logicat, Inc.</h2>
336 <h3>New York, New York</h3>
337 <h4 title="8 years"><time datetime="1994-08">Aug 1994</time>—<time datetime="2002-08">Aug 2002</time></h4>
338 <ul class="employment">
339 <li>Architect</li>
340 <li>Lead Developer</li>
341 </ul>
342 </div>
343 <div>
344 <h2><a href="https://www.hamilton.edu">Hamilton College</a></h2>
345 <h3>Clinton, New York</h3>
346 <h4 title="4 years"><time datetime="1990-08">Aug 1990</time>—<time datetime="1994-05">May 1994</time></h4>
347 <ul class="employment">
348 <li>BA in mathematics</li>
349 <li>Minor in physics</li>
350 <li>Undeclared major in computer science</li>
351 </ul>
352 </div>
353 </div>
354 </section>
355
356 <?php if ($full) { ?>
357
358 <section>
359 <h1>Publications</h1>
360 <div>
361 <div class="content grid">
362 <div>
363 <h2>Handbooks & Specifications</h2>
364 <ul>
365 <li><a href="https://github.com/mvonballmo/CSharpHandbook">C# Handbook</a></li>
366 <li><a href="https://encodo.com/media/1018/encodo-git-handbook.pdf">Git Handbook</a></li>
367 <li><a href="https://encodo.com/media/2726/encodo-qql-handbook.pdf">QQL Specification</a></li>
368 </ul>
369 </div>
370 <div>
371 <h2><a href="https://www.earthli.com/news/">Blogs</a></h2>
372 <ul>
373 <li><a href="https://www.earthli.com/news/view_folder.php?id=18">Programming</a></li>
374 <li><a href="https://www.earthli.com/news/view_folder.php?id=13">Technology</a></li>
375 <li><a href="https://www.earthli.com/news/view_folder.php?id=31">Design</a></li>
376 </ul>
377 </div>
378 </div>
379 </div>
380 </section>
381 <?php
382 }?>
383
384 <section <?php if ($full) { ?>class="page-break"<?php } ?>>
385 <h1>Recent Experience & Projects</h1>
386 <div class="recent-experience">
387 <h2>HFU (Höhere Fachschule Uster)</h2>
388 <h3 title="<?php echo $current_year - 2020; ?> years">November 2020—present</h3>
389 <?php if ($full) { ?>
390 <p>I teach introductory <b>JavaScript</b> in the winter and <b>Mobile-App Development</b> in the early summer.</p>
391 <?php
392 }?>
393 <div class="content grid projects">
394 <div>
395 <h3>Introductory JavaScript</h3>
396 <h4><time datetime="2020-11">Nov 2020</time>—present</h4>
397 <ul class="details">
398 <li class="skills">Instructor</li>
399 <li class="technologies">JavaScript, HTML, CSS, NPM, Node</li>
400 <li class="description">Programming principles with JavaScript in a web browser.</li>
401 </ul>
402 </div>
403 <div>
404 <h3>Mobile App Development</h3>
405 <h4><time datetime="2021-05">May 2021</time>—present</h4>
406 <ul class="details">
407 <li class="skills">Instructor</li>
408 <li class="technologies">Xamarin, C#, .NET, iOS, Android</li>
409 <li class="description">Cross-platform mobile applications with Xamarin for iOS and Android.</li>
410 </ul>
411 </div>
412 </div>
413 <h2><a href="https://encodo.com">Encodo Systems AG</a></h2>
414 <h3 title="16 years">September 2005—January 2022</h3>
415 <?php if ($full) { ?>
416 <p>Encodo's emphasis is on using the best, most appropriate tools for the job. I've worked on many projects with a wide range
417 of technologies and target platforms. Generally, <b>ASP.NET Core</b> on the back-end, with <b>React/TypeScript</b> on the
418 front-end.</p>
419 <?php
420 }?>
421 <div class="grid projects">
422 <div>
423 <h3><a href="https://encodo.com/quino">Quino</a></h3>
424 <h4><time datetime="2007-09">Sep 2007</time>—<time datetime="2022-01">Jan 2022</time></h4>
425 <ul class="details">
426 <li class="skills">Technical PM, Architect, Lead Developer</li>
427 <li class="technologies">C#, <?php if ($full) { ?>Winforms, WPF, <?php } ?>Web API, TypeScript, Less, React</li>
428 <li class="description">Designed, built and supported a powerful, flexible, modular and modern metadata
429 framework for .NET (API servers, SPAs, Winform, WPF).</li>
430 </ul class="details">
431 </div>
432 <div>
433 <h3>Crealogix MAP CI/CD</h3>
434 <h4><time datetime="2020-05">May 2020</time>—<time datetime="2020-10">Oct 2020</time></h4>
435 <ul class="details">
436 <li class="skills">Architect, Developer</li>
437 <li class="technologies">Jenkins/Ruby, TypeScript, Java, Swift</li>
438 <li class="description">Built CI/CD deployment pipelines for a framework and multiple projects, with iOS/Android targets, SauceLabs, Artifactory, Vault, and SonarQube integration.</li>
439 </ul>
440 </div>
441 <div>
442 <h3>Roche LabCore Web Modules</h3>
443 <h4><time datetime="2019-10">Oct 2019</time>—<time datetime="2020-03">Mar 2020</time></h4>
444 <ul class="details">
445 <li class="skills">Architect, Developer</li>
446 <li class="technologies">TypeScript, React, Angular, SCSS</li>
447 <li class="description">Designed an architecture for a multi-technology web framework/library.</li>
448 </ul>
449 </div>
450 <div>
451 <h3>Crealogix Digital Banking Demo Days</h3>
452 <h4><time datetime="2019-03">Mar 2019</time>—<time datetime="2019-05">May 2019</time></h4>
453 <ul class="details">
454 <li class="skills">Architect, Developer</li>
455 <li class="technologies">TypeScript, React, CSS/LESS</li>
456 <li class="description">Wrote a chat-robot prototype against a UI/UX concept for a demonstration.</li>
457 </ul>
458 </div>
459 <div <?php if ($full) { ?>class="page-break"<?php } ?>>
460 <h3>Aplix Logistik</h3>
461 <h4><time datetime="2018-03">Mar 2018</time>—<time datetime="2018-08">Aug 2018</time></h4>
462 <ul class="details">
463 <li class="skills">Architect, Technical PM, Developer</li>
464 <li class="technologies">C#, React, Redux, TypeScript</li>
465 <li class="description">Supervised, provided guidance and helped develop the back-end for a mobile-based, "picker" app for food warehouses (SwissBio).</li>
466 </ul>
467 </div>
468 <div>
469 <h3>Micron Top Performance</h3>
470 <h4><time datetime="2016-09">Sep 2016</time>—<time datetime="2018-11">Nov 2018</time></h4>
471 <ul class="details">
472 <li class="skills">Architect, Technical PM, Developer</li>
473 <li class="technologies">C#, TypeScript, React, Redux</li>
474 <li class="description">Designed and developed employee-managed, -evaluation and performance-review software with PL in New Jersey and a team in Philippines, deployed on AWS.</li>
475 </ul>
476 </div>
477 <div>
478 <h3>Crealogix MAP</h3>
479 <h4><time datetime="2016-09">Sep 2016</time>—<time datetime="2018-01">Jan 2018</time> </h4>
480 <ul class="details">
481 <li class="skills">Architect, Developer</li>
482 <li class="technologies">Java, Swift, TypeScript, React, Android & iOS SDKs</li>
483 <li class="description">Designed and built a cross-platform mobile-banking solution for Android and iOS.</li>
484 </ul>
485 </div>
486 <div>
487 <h3><a href="https://www.apexclearing.com/">Apex Clearing</a> <a href="https://apps.apexclearing.com/alps">Alps</a></h3>
488 <h4><time datetime="2013-06">Jun 2013</time>—<time datetime="2016-06">Sep 2016</time></h4>
489 <ul class="details">
490 <li class="skills">Technical PM, Architect, Developer</li>
491 <li class="technologies">C#, Web API, TypeScript, Less, Knockout</li>
492 <li class="description">Services and web front-end for processing, overview and management of ACATS for <a href="https://apexclearing.com">Apex Clearing Corporation</a>.</li>
493 </ul>
494 </div>
495 <div>
496 <h3>Qontis</h3>
497 <h4><time datetime="2013-03">Mar 2013</time>—<time datetime="2015-02">Feb 2015</time></h4>
498 <ul class="details">
499 <li class="skills">Architect, Developer</li>
500 <li class="technologies">C#, WCF, Meniga, JavaScript, Less, jQuery</li>
501 <li class="description">A personal finance manager with integration into various online banking systems.</li>
502 </ul>
503 </div>
504 </div>
505
506 <?php if ($full) {
507 ?>
508 <p class="notes">See <a href="#experience">details below</a> for a full listing of experience.</p>
509 <?php
510 } else {
511 ?>
512 <p class="notes">See <a href="https://www.earthli.com/users/marco/cv/2022_01.php#experience">details online</a> for a full listing of experience.</p>
513 <?php
514 }?>
515 </div>
516 </section>
517
518 <?php if ($full) { ?>
519 <section class="page-break">
520 <h1 id="skillsDetails">Skills Details</h1>
521 <div>
522 <h2>Languages</h2>
523 <div class="timeline">
524 <table class="basic left-labels legend">
525 <caption title="Legend"></caption>
526 <tr>
527 <th title="Expert"></th>
528 <td class="level-expert"></td>
529 </tr>
530 <tr>
531 <th title="Proficient"></th>
532 <td class="level-proficient"></td>
533 </tr>
534 <tr>
535 <th title="Competent"></th>
536 <td class="level-competent"></td>
537 </tr>
538 </table>
539 <div class="timeline-box">
540 <div class="years">
541 <div title="1985"></div>
542 <div title="1990"></div>
543 <div title="1995"></div>
544 <div title="2000"></div>
545 <div title="2005"></div>
546 <div title="2010"></div>
547 <div title="2015"></div>
548 <div title="2020"></div>
549 </div>
550 <table class="projects">
551 <thead>
552 <tr>
553 <th>Years</th>
554 <th>Technology</th>
555 <th>Level</th>
556 </tr>
557 </thead>
558 <tbody>
559 <tr><th></th><td class="employee"><?php employee_area ("year1985"); ?></td><td></td></tr>
560 <tr><th>2019–present</th><td><?php skill_line ("Groovy", "level-proficient", "year2019", "mid2020"); ?></td><td>Proficient</td></tr>
561 <tr><th>2019–present</th><td><?php skill_line ("Ruby", "level-competent", "year2019", "mid2020"); ?></td><td>Competent</td></tr>
562 <tr><th>2019</th><td><?php skill_line ("XSLT", "level-competent", "year2019", "mid2019"); ?></td><td>Competent</td></tr>
563 <tr><th>2016–present</th><td><?php skill_line ("Swift", "level-proficient", "year2016"); ?></td><td>Proficient</td></tr>
564 <tr><th>2015–present</th><td><?php skill_line ("SCSS", "level-proficient", "year2015"); ?></td><td>Proficient</td></tr>
565 <tr><th>2014–present</th><td><?php skill_line ("TypeScript", "level-expert", "year2014"); ?></td><td>Expert</td></tr>
566 <tr><th>2013–present</th><td><?php skill_line ("LESS", "level-expert", "year2013"); ?></td><td>Expert</td></tr>
567 <tr><th>2019–present</th><td><?php skill_line ("Delphi Pascal", "level-expert", "year2013"); ?></td><td>Expert</td></tr>
568 <tr><th>2002–present</th><td><?php skill_line ("PowerShell", "level-proficient", "year2010"); ?></td><td>Proficient</td></tr>
569 <tr><th>2007–present</th><td><?php skill_line ("C#", "level-expert", "year2007"); ?></td><td>Expert</td></tr>
570 <tr><th>2005–present</th><td><?php skill_line ("Java", "level-proficient", "year2005"); ?></td><td>Proficient</td></tr>
571 <tr><th>2002–present</th><td><?php skill_line ("Bash", "level-proficient", "year2002"); ?></td><td>Proficient</td></tr>
572 <tr><th>2002–2014</th><td><?php skill_line ("Delphi Pascal", "level-expert", "year2002", "year2014"); ?></td><td>Expert</td></tr>
573 <tr><th>2000–2002</th><td><?php skill_line ("VB", "level-competent", "year2000", "year2002"); ?></td><td>Competent</td></tr>
574 <tr><th>1998–present</th><td><?php skill_line ("CSS", "level-expert", "year1998"); ?></td><td>Expert</td></tr>
575 <tr><th>1998–present</th><td><?php skill_line ("PHP", "level-expert", "year1998"); ?></td><td>Expert</td></tr>
576 <tr><th>1998–2002</th><td><?php skill_line ("C++", "level-proficient", "year1998", "year2002"); ?></td><td>Proficient</td></tr>
577 <tr><th>1996–1997</th><td><?php skill_line ("Delphi Pascal", "level-competent", "year1996", "year1997"); ?></td><td>Competent</td></tr>
578 <tr><th>1996–2006</th><td><?php skill_line ("Eiffel", "level-competent", "year1996", "year2006"); ?></td><td>Competent</td></tr>
579 <tr><th>1995–present</th><td><?php skill_line ("JavaScript", "level-expert", "year1995"); ?></td><td>Expert</td></tr>
580 <tr><th>1995–present</th><td><?php skill_line ("HTML", "level-expert", "year1995"); ?></td><td>Expert</td></tr>
581 <tr><th>1994–present</th><td><?php skill_line ("MS-DOS Batch", "level-proficient", "year1994"); ?></td><td>Proficient</td></tr>
582 <tr><th>1994–1996</th><td><?php skill_line ("Object Pascal", "level-expert", "year1994", "year1996"); ?></td><td>Expert</td></tr>
583 <tr><th>1992–1994</th><td><?php skill_line ("Pascal", "level-proficient", "year1992", "year1994"); ?></td><td>Proficient</td></tr>
584 <tr><th>1990–1994</th><td><?php skill_line ("HyperTalk", "level-proficient", "year1990", "year1994"); ?></td><td>Proficient</td></tr>
585 <tr><th>1985–1990</th><td><?php skill_line_right ("Basic", "level-expert", "year1985", "year1990"); ?></td><td>Expert</td></tr>
586 </tbody>
587 </table>
588 </div>
589 </div>
590
591 <h2 class="page-break">Libraries & Frameworks</h2>
592 <div class="timeline">
593 <table class="basic left-labels legend">
594 <caption title="Legend"></caption>
595 <tr>
596 <th title="Expert"></th>
597 <td class="level-expert"></td>
598 </tr>
599 <tr>
600 <th title="Proficient"></th>
601 <td class="level-proficient"></td>
602 </tr>
603 <tr>
604 <th title="Competent"></th>
605 <td class="level-competent"></td>
606 </tr>
607 </table>
608 <div class="timeline-box">
609 <div class="years">
610 <div title="1985"></div>
611 <div title="1990"></div>
612 <div title="1995"></div>
613 <div title="2000"></div>
614 <div title="2005"></div>
615 <div title="2010"></div>
616 <div title="2015"></div>
617 <div title="2020"></div>
618 </div>
619 <table class="projects">
620 <thead>
621 <tr>
622 <th>Years</th>
623 <th>Technology</th>
624 <th>Level</th>
625 </tr>
626 </thead>
627 <tbody>
628 <tr><th></th><td class="employee"><?php employee_area ("year1990"); ?></td><td></td></tr>
629 <tr><th>2019–2021</th><td><?php skill_line ("Groovy/Gradle", "level-expert", "year2019", "year2021"); ?></td><td>Expert</td></tr>
630 <tr><th>2019–2020</th><td><?php skill_line ("Angular", "level-proficient", "year2019", "mid2020"); ?></td><td>Proficient</td></tr>
631 <tr><th>2019–present</th><td><?php skill_line ("Java Runtime", "level-proficient", "year2019"); ?></td><td>Proficient</td></tr>
632 <tr><th>2019–present</th><td><?php skill_line ("Delphi VCL", "level-expert", "year2019"); ?></td><td>Expert</td></tr>
633 <tr><th>2018–2021</th><td><?php skill_line ("Unity", "level-proficient", "year2018", "year2021"); ?></td><td>Proficient</td></tr>
634 <tr><th>2018–present</th><td><?php skill_line (".NET Core", "level-expert", "year2018"); ?></td><td>Expert</td></tr>
635 <tr><th>2017–2019</th><td><?php skill_line ("Material UI", "level-competent", "year2017", "mid2019"); ?></td><td>Competent</td></tr>
636 <tr><th>2017–present</th><td><?php skill_line ("Xamarin", "level-competent", "year2017"); ?></td><td>Competent</td></tr>
637 <tr><th>2017–2020</th><td><?php skill_line ("MobX", "level-proficient", "year2017", "mid2020"); ?></td><td>Proficient</td></tr>
638 <tr><th>2016–2020</th><td><?php skill_line ("React", "level-expert", "year2016"); ?></td><td>Expert</td></tr>
639 <tr><th>2016–2020</th><td><?php skill_line ("iOS/XCode", "level-proficient", "year2016", "mid2020"); ?></td><td>Proficient</td></tr>
640 <tr><th>2016–2020</th><td><?php skill_line ("Android", "level-proficient", "year2016", "mid2020"); ?></td><td>Proficient</td></tr>
641 <tr><th>2014–2017</th><td><?php skill_line ("Knockout", "level-competent", "year2014", "mid2017"); ?></td><td>Competent</td></tr>
642 <tr><th>2010–present</th><td><?php skill_line ("AntLR", "level-competent", "year2010"); ?></td><td>Competent</td></tr>
643 <tr><th>2008–present</th><td><?php skill_line ("ASP.NET", "level-expert", "year2008"); ?></td><td>Expert</td></tr>
644 <tr><th>2007–present</th><td><?php skill_line (".NET Framework", "level-expert", "year2007"); ?></td><td>Expert</td></tr>
645 <tr><th>2005–2014</th><td><?php skill_line ("Java Runtime", "level-proficient", "year2005", "mid2014"); ?></td><td>Proficient</td></tr>
646 <tr><th>2002–2014</th><td><?php skill_line ("Delphi VCL", "level-expert", "year2002", "mid2014"); ?></td><td>Expert</td></tr>
647 <tr><th>2000–2002</th><td><?php skill_line ("ASP", "level-competent", "year2000", "mid2002"); ?></td><td>Competent</td></tr>
648 <tr><th>1999–2001</th><td><?php skill_line ("Metrowerks PowerPlant", "level-proficient", "year1999", "mid2001"); ?></td><td>Proficient</td></tr>
649 <tr><th>1999–2001</th><td><?php skill_line ("MacOS Toolbox", "level-competent", "year1999", "mid2001"); ?></td><td>Competent</td></tr>
650 <tr><th>1998–present</th><td><?php skill_line ("PHP Runtime", "level-proficient", "year1998"); ?></td><td>Proficient</td></tr>
651 <tr><th>1995–2002</th><td><?php skill_line ("MFC", "level-competent", "year1995", "mid2002"); ?></td><td>Competent</td></tr>
652 <tr><th>1995–2002</th><td><?php skill_line ("STL", "level-proficient", "year1995", "mid2002"); ?></td><td>Proficient</td></tr>
653 <tr><th>1994–present</th><td><?php skill_line ("Win32", "level-proficient", "year1994"); ?></td><td>Proficient</td></tr>
654 <tr><th>1992–1994</th><td><?php skill_line ("Think Pascal", "level-proficient", "year1992", "mid1994"); ?></td><td>Proficient</td></tr>
655 <tr><th>1990–1994</th><td><?php skill_line ("Hyper­Card", "level-expert", "year1990", "mid1994"); ?></td><td>Expert</td></tr>
656 </tbody>
657 </table>
658 </div>
659 </div>
660
661 <h2>Techniques</h2>
662 <div class="timeline">
663 <table class="basic left-labels legend">
664 <caption title="Legend"></caption>
665 <tr>
666 <th title="Expert"></th>
667 <td class="level-expert"></td>
668 </tr>
669 <tr>
670 <th title="Proficient"></th>
671 <td class="level-proficient"></td>
672 </tr>
673 <tr>
674 <th title="Competent"></th>
675 <td class="level-competent"></td>
676 </tr>
677 </table>
678 <div class="timeline-box">
679 <div class="years">
680 <div title="1985"></div>
681 <div title="1990"></div>
682 <div title="1995"></div>
683 <div title="2000"></div>
684 <div title="2005"></div>
685 <div title="2010"></div>
686 <div title="2015"></div>
687 <div title="2020"></div>
688 </div>
689 <table class="projects">
690 <thead>
691 <tr>
692 <th>Years</th>
693 <th>Technology</th>
694 <th>Level</th>
695 </tr>
696 </thead>
697 <tbody>
698 <tr><th></th><td class="employee"><?php employee_area ("year1985"); ?></td><td></td></tr>
699 <tr><th>2013–present</th><td><?php skill_line ("CI/CD", "level-expert", "year2013"); ?></td><td>Expert</td></tr>
700 <tr><th>2012–present</th><td><?php skill_line ("IOC", "level-expert", "year2012"); ?></td><td>Expert</td></tr>
701 <tr><th>2010–present</th><td><?php skill_line ("SOLID", "level-expert", "year2010"); ?></td><td>Expert</td></tr>
702 <tr><th>2008–present</th><td><?php skill_line ("Functional", "level-expert", "year2008"); ?></td><td>Expert</td></tr>
703 <tr><th>2005–present</th><td><?php skill_line ("Project Management", "level-proficient", "year2005"); ?></td><td>Proficient</td></tr>
704 <tr><th>2002–present</th><td><?php skill_line ("Technical Documentation", "level-expert", "year2002"); ?></td><td>Expert</td></tr>
705 <tr><th>2002–present</th><td><?php skill_line ("Automated Testing", "level-expert", "year2002"); ?></td><td>Expert</td></tr>
706 <tr><th>2001–present</th><td><?php skill_line ("Technical Writing/Blogging", "level-expert", "year2001"); ?></td><td>Expert</td></tr>
707 <tr><th>1995–present</th><td><?php skill_line ("Architecture", "level-expert", "year1995"); ?></td><td>Expert</td></tr>
708 <tr><th>1992–present</th><td><?php skill_line ("OO", "level-expert", "year1992"); ?></td><td>Expert</td></tr>
709 <tr><th>1985–1994</th><td><?php skill_line_right ("Procedural", "level-proficient", "year1985", "year1994"); ?></td><td>Proficient</td></tr>
710 </tbody>
711 </table>
712 </div>
713 </div>
714
715 <h2 class="page-break">Administration & Tools</h2>
716 <div class="timeline">
717 <table class="basic left-labels legend">
718 <caption title="Legend"></caption>
719 <tr>
720 <th title="Expert"></th>
721 <td class="level-expert"></td>
722 </tr>
723 <tr>
724 <th title="Proficient"></th>
725 <td class="level-proficient"></td>
726 </tr>
727 <tr>
728 <th title="Competent"></th>
729 <td class="level-competent"></td>
730 </tr>
731 </table>
732 <div class="timeline-box">
733 <div class="years">
734 <div title="1985"></div>
735 <div title="1990"></div>
736 <div title="1995"></div>
737 <div title="2000"></div>
738 <div title="2005"></div>
739 <div title="2010"></div>
740 <div title="2015"></div>
741 <div title="2020"></div>
742 </div>
743 <table class="projects">
744 <thead>
745 <tr>
746 <th>Years</th>
747 <th>Technology</th>
748 <th>Level</th>
749 </tr>
750 </thead>
751 <tbody>
752 <tr><th></th><td class="employee"><?php employee_area ("year1985"); ?></td><td></td></tr>
753 <tr><th>2018–present</th><td class="years_mid_2018_present"><?php skill_line ("Azure DevOps", "level-expert", "year2018"); ?></td><td>Expert</td></tr>
754 <tr><th>2017–present</th><td class="years_2017_present"><?php skill_line ("Docker", "level-expert", "year2017"); ?></td><td>Expert</td></tr>
755 <tr><th>2017–present</th><td class="years_2017_present"><?php skill_line ("ProxMox", "level-competent", "year2017"); ?></td><td>Competent</td></tr>
756 <tr><th>2016–present</th><td class="years_2016_present"><?php skill_line ("GitHub", "level-proficient", "year2016"); ?></td><td>Proficient</td></tr>
757 <tr><th>2015–present</th><td class="years_2015_present"><?php skill_line ("GitLab", "level-proficient", "year2015"); ?></td><td>Proficient</td></tr>
758 <tr><th>2013–present</th><td class="years_2013_present"><?php skill_line ("TeamCity", "level-proficient", "year2013"); ?></td><td>Proficient</td></tr>
759 <tr><th>2011–2016</th><td class="years_2011_2016"><?php skill_line ("Mongo", "level-competent", "year2011", "mid2016"); ?></td><td>Competent</td></tr>
760 <tr><th>2011–2014</th><td class="years_2011_2014"><?php skill_line ("Sqlite", "level-competent", "year2011", "mid2014"); ?></td><td>Competent</td></tr>
761 <tr><th>2010–present</th><td class="years_2010_present"><?php skill_line ("Jenkins", "level-expert", "year2010", "mid2020"); ?></td><td>Expert</td></tr>
762 <tr><th>2010–present</th><td class="years_2010_present"><?php skill_line ("Git", "level-expert", "year2010"); ?></td><td>Expert</td></tr>
763 <tr><th>2007–present</th><td class="years_2007_present"><?php skill_line ("PostgreSql", "level-proficient", "year2007"); ?></td><td>Proficient</td></tr>
764 <tr><th>2004–present</th><td class="years_2004_present"><?php skill_line ("Sql Server", "level-proficient", "year2004"); ?></td><td>Proficient</td></tr>
765 <tr><th>2004–present</th><td class="years_2004_present"><?php skill_line ("Jira", "level-expert", "year2004"); ?></td><td>Expert</td></tr>
766 <tr><th>2002–2007</th><td class="years_2002_2007"><?php skill_line ("Sybase SQLAnywhere", "level-proficient", "year2002", "mid2007"); ?></td><td>Proficient</td></tr>
767 <tr><th>2002–present</th><td class="years_2002_present"><?php skill_line ("Ubuntu/Debian", "level-proficient", "year2002"); ?></td><td>Proficient</td></tr>
768 <tr><th>1999–present</th><td class="years_1999_present"><?php skill_line ("MySql", "level-proficient", "year1999"); ?></td><td>Proficient</td></tr>
769 <tr><th>1997–2010</th><td class="years_1997_2010"><?php skill_line ("Perforce", "level-proficient", "year1997", "mid2010"); ?></td><td>Proficient</td></tr>
770 <tr><th>1994–present</th><td class="years_1995_present"><?php skill_line ("Windows", "level-expert", "year1994"); ?></td><td>Expert</td></tr>
771 <tr><th>1990–present</th><td class="years_1990_present"><?php skill_line ("MacOS", "level-expert", "year1990"); ?></td><td>Expert</td></tr>
772 <tr><th>1985–1995</th><td class="years_1985_1995"><?php skill_line_right ("MS-DOS", "level-expert", "year1985", "year1995"); ?></td><td>Expert</td></tr>
773 </tbody>
774 </table>
775 </div>
776 </div>
777 </div>
778 </section>
779
780 <section class="page-break">
781 <h1 id="experience">All Experience</h1>
782
783 <div>
784 <h2>HFU (Höhere Fachschule Uster)</h2>
785 <h3 title="<?php echo $current_year - 2020; ?> years">November 2020—present</h3>
786 <p>I teach introductory <b>JavaScript</b> in the winter and <b>Mobile-App Development</b> in the early summer.</p>
787 <h3>Overview</h3>
788 <div class="timeline">
789 <table class="basic left-labels legend">
790 <caption title="Legend"></caption>
791 <tr>
792 <th title="Instructor"></th>
793 <td class="instructor"></td>
794 </tr>
795 </table>
796 <div class="timeline-box">
797 <div class="years">
798 <div title="1985"></div>
799 <div title="1990"></div>
800 <div title="1995"></div>
801 <div title="2000"></div>
802 <div title="2005"></div>
803 <div title="2010"></div>
804 <div title="2015"></div>
805 <div title="2020"></div>
806 </div>
807 <table class="projects">
808 <thead>
809 <tr>
810 <th>Years</th>
811 <th>Product</th>
812 <th>Roles</th>
813 </tr>
814 </thead>
815 <tbody>
816 <tr><th></th><td class="employee"><?php employee_area ("mid2020"); ?></td><td></td></tr>
817 <tr><th>2020–present</th><td><?php project_line ("Introductory JavaScript", "instructor", "mid2020"); ?></td><td>Instructor</td></tr>
818 <tr><th>2021–present</th><td><?php project_line ("Mobile App Development", "instructor", "year2021"); ?></td><td>Instructor</td></tr>
819 </tbody>
820 </table>
821 </div>
822 </div>
823
824 <h3>Details</h3>
825 <div class="grid projects">
826 <div>
827 <h3>Introductory JavaScript</h3>
828 <h4><time datetime="2020-11">Nov 2020</time>—present</h4>
829 <ul class="details">
830 <li class="skills">Instructor</li>
831 <li class="technologies">JavaScript, HTML, CSS, NPM, Node</li>
832 <li class="description">Teach basic programming principles with JavaScript in a browser environment.</li>
833 </ul>
834 </div>
835 <div>
836 <h3>Mobile App Development</h3>
837 <h4><time datetime="2021-05">May 2021</time>—present</h4>
838 <ul class="details">
839 <li class="skills">Instructor</li>
840 <li class="technologies">Xamarin, C#, .NET, iOS, Android</li>
841 <li class="description">Teach building cross-platform mobile applications. Integrate platform-specific features on both iOS and Android.</li>
842 </ul>
843 </div>
844 </div>
845
846 <div class="page-break">
847 <h2><a href="https://encodo.com">Encodo Systems AG</a></h2>
848 <h3 title="16 years">September 2005—January 2022</h3>
849 <p>Encodo's emphasis is on using the best, most appropriate tools for the job. I've worked on many projects with a wide range
850 of technologies and target platforms. Generally, <b>ASP.NET Core</b> on the back-end, with <b>React/TypeScript</b> on the
851 front-end.</p>
852
853 <h3>Overview</h3>
854 <div class="timeline">
855 <table class="basic left-labels legend">
856 <caption title="Legend"></caption>
857 <tr>
858 <th title="Technical PM"></th>
859 <td class="project-manager"></td>
860 </tr>
861 <tr>
862 <th title="Instructor"></th>
863 <td class="instructor"></td>
864 </tr>
865 <tr>
866 <th title="Author"></th>
867 <td class="author"></td>
868 </tr>
869 <tr>
870 <th title="Lead Dev"></th>
871 <td class="lead-developer"></td>
872 </tr>
873 <tr>
874 <th title="Developer"></th>
875 <td class="developer"></td>
876 </tr>
877 <tr>
878 <th title="Support"></th>
879 <td class="support"></td>
880 </tr>
881 <tr>
882 <th title="Architect"></th>
883 <td class="architect"></td>
884 </tr>
885 <tr>
886 <th title="Reviewer"></th>
887 <td class="reviewer"></td>
888 </tr>
889 </table>
890 <div class="timeline-box">
891 <div class="years">
892 <div title="1985"></div>
893 <div title="1990"></div>
894 <div title="1995"></div>
895 <div title="2000"></div>
896 <div title="2005"></div>
897 <div title="2010"></div>
898 <div title="2015"></div>
899 <div title="2020"></div>
900 </div>
901 <table class="projects">
902 <thead>
903 <tr>
904 <th>Years</th>
905 <th>Product</th>
906 <th>Roles</th>
907 </tr>
908 </thead>
909 <tbody>
910 <tr><th></th><td class="employee"><?php employee_area ("mid2005", "year2022");?></td><td></td></tr>
911 <tr><th>2007–2021</th><td><?php project_line ("Quino", "project-manager architect lead-developer support", "mid2007", "year2022"); ?></td><td>Project manager, Architect, Lead developer, Support</td></tr>
912 <tr><th>2020</th><td><?php project_line ("WowLab Tower", "architect developer", "mid2020", "year2021"); ?></td><td>Architect, Developer</td></tr>
913 <tr><th>2020–2021</th><td><?php project_line ("FutureLab SmartPolice", "developer", "year2020", "year2021"); ?></td><td>Developer</td></tr>
914 <tr><th>2019–2021</th><td><?php project_line ("Crealogix MAP CI/CD", "architect project-manager developer", "mid2019", "year2021"); ?></td><td>Architect, Project manager, Developer</td></tr>
915 <tr><th>2018–2021</th><td><?php project_line ("Roche UA", "architect reviewer", "mid2018", "year2022"); ?></td><td>Architect, Reviewer</td></tr>
916 <tr><th>2018–2021</th><td><?php project_line ("Performa CRM", "developer support", "mid2018", "year2021"); ?></td><td>Developer, Support</td></tr>
917 <tr><th>2007–2021</th><td><?php project_line ("IT", "support", "mid2007", "year2022"); ?></td><td>Support</td></tr>
918 <tr><th>2019–2020</th><td><?php project_line ("Roche LabCore Web Modules", "architect developer", "mid2019", "mid2020"); ?></td><td>Architect, Developer</td></tr>
919 <tr><th>2019–2020</th><td><?php project_line ("Aplix Spooler", "developer", "mid2019", "year2021"); ?></td><td>Developer</td></tr>
920 <tr><th>2019</th><td><?php project_line ("Crealogix Digital Banking Demo Days", "architect, developer", "year2019", "mid2019"); ?></td><td>Architect, Developer</td></tr>
921 <tr><th>2019-2020</th><td><?php project_line ("Aplix Logistik", "reviewer", "year2019", "year2021"); ?></td><td>Reviewer</td></tr>
922 <tr><th>2019</th><td><?php project_line ("Hensoldt MTSC", "reviewer", "year2019", "year2020"); ?></td><td>Reviewer</td></tr>
923 <tr><th>2018–2019</th><td><?php project_line ("Crealogix TimeWarp", "developer", "mid2018", "year2019"); ?></td><td>Developer</td></tr>
924 <tr><th>2018–2019</th><td><?php project_line ("Insite FAK", "architect lead-developer project-manager", "year2018", "year2021"); ?></td><td>Project manager, Architect, Lead developer</td></tr>
925 <tr><th>2018</th><td><?php project_line ("Insite .NET/C#/Quino Trainings", "instructor", "mid2018", "year2019"); ?></td><td>Trainer</td></tr>
926 <tr><th>2018–2019</th><td><?php project_line ("Daylight Quino Upgrade", "project-manager lead-developer", "year2018", "year2020"); ?></td><td>Project manager, Lead developer</td></tr>
927 <tr><th>2018</th><td><?php project_line ("Aplix Logistik", "project-manager architect developer", "year2018", "year2019"); ?></td><td>Project manager, Architect, Developer</td></tr>
928 <tr><th>2017–2018</th><td><?php project_line ("Micron Hand-off Trainings", "instructor", "mid2017", "year2018"); ?></td><td>Instructor</td></tr>
929 <tr><th>2016–2018</th><td><?php project_line ("Micron Top Performance", "project-manager architect developer support", "mid2016", "year2019"); ?></td><td>Project manager, Architect, Developer</td></tr>
930 <tr><th>2016</th><td><?php project_line ("MULTIVAC Polymer Training", "instructor", "mid2016", "year2017"); ?></td><td>Instructor</td></tr>
931 <tr><th>2016–2018</th><td><?php project_line ("Crealogix MAP", "project-manager architect lead-developer", "mid2016", "year2018"); ?></td><td>Project manager, Architect, Lead developer</td></tr>
932 <tr><th>2015</th><td><?php project_line ("Alps Hand-off Training", "instructor", "mid2015", "year2016"); ?></td><td>Instructor</td></tr>
933 <tr><th>2013–2016</th><td><?php project_line ("Alps", "project-manager architect developer", "year2013", "year2017"); ?></td><td>Project manager, Architect, Developer</td></tr>
934 <tr><th>2013–2015</th><td><?php project_line ("Qontis", "architect developer", "year2013", "mid2015"); ?></td><td>Architect, Developer</td></tr>
935 <tr><th>2014</th><td><?php project_line ("Crealogix MUX Training", "instructor", "mid2014", "mid2014"); ?></td><td>Instructor</td></tr>
936 <tr><th>2013</th><td><?php project_line ("Roche HTML5 Training", "architect", "mid2013", "year2014"); ?></td><td>Instructor</td></tr>
937 <tr><th>2012–2013</th><td><?php project_line ("Roche MUA", "developer", "year2012", "year2013"); ?></td><td>Developer</td></tr>
938 <tr><th>2011–2012</th><td><?php project_line ("QQL Specification", "author", "year2012", "year2013"); ?></td><td>Author</td></tr>
939 <tr><th>2011–2015</th><td><?php project_line ("Git Handbook", "author", "year2011", "year2015"); ?></td><td>Author</td></tr>
940 <tr><th>2010–2012</th><td><?php project_line ("Peak6 Launchpad", "project-manager architect lead-developer", "mid2010", "mid2012"); ?></td><td>Project manager, Architect, Lead developer</td></tr>
941 <tr><th>2009–2010</th><td><?php project_line ("M9", "project-manager architect developer", "year2009", "mid2010"); ?></td><td>Project manager, Architect, Developer</td></tr>
942 <tr><th>2009–present</th><td><?php project_line ("eZagAdmin", "developer support", "mid2007", "year2022"); ?></td><td>Developer, Support</td></tr>
943 <tr><th>2007–2009</th><td><?php project_line ("eZagAdmin", "developer", "mid2007", "year2009"); ?></td><td>Developer</td></tr>
944 <tr><th>2008–2017</th><td><?php project_line ("C# Handbook", "author", "mid2007", "mid2017"); ?></td><td>Lead developer</td></tr>
945 <tr><th>2007</th><td><?php project_line ("PoC Raiffeisen", "developer", "year2007", "mid2007"); ?></td><td>Developer</td></tr>
946 <tr><th>2007–2011</th><td><?php project_line ("Fides Reporting Engine", "lead-developer support", "mid2007", "year2011"); ?></td><td>lead-developer, Support</td></tr>
947 <tr><th>2006–2007</th><td><?php project_line ("Fides Reporting Engine", "architect lead-developer", "mid2006", "mid2007"); ?></td><td>Architect, Lead developer</td></tr>
948 <tr><th>2007–2014</th><td><?php project_line ("Fides Client", "developer support", "year2007", "year2014"); ?></td><td>Developer, Support</td></tr>
949 <tr><th>2006–2007</th><td><?php project_line ("Fides Client", "lead-developer", "year2006", "year2007"); ?></td><td>Lead developer</td></tr>
950 <tr><th>2007–2014</th><td><?php project_line ("Q-ZAG", "project-manager lead-developer support", "year2007", "year2014"); ?></td><td>Project manager, Lead developer, Support</td></tr>
951 <tr><th>2006–2007</th><td><?php project_line ("Q-ZAG", "lead-developer", "mid2006", "mid2007"); ?></td><td>Lead developer</td></tr>
952 <tr><th>2006–2014</th><td><?php project_line ("ZAG Entlastungskontrolle", "project-manager support", "year2006", "year2014"); ?></td><td>Project manager, Support</td></tr>
953 <tr><th>2005–2006</th><td><?php project_line ("ZAG Entlastungskontrolle", "developer", "mid2005", "mid2006"); ?></td><td>Developer</td></tr>
954 </tbody>
955 </table>
956 </div>
957 </div>
958
959 <div class="page-break">
960 <h3>Details</h3>
961 <div class="grid projects">
962 <div>
963 <h3 id="Quino"><a href="https://encodo.com/quino">Quino</a></h3>
964 <h4><time datetime="2007-09">Sep 2007</time><time datetime="2022-01">Jan 2022</time></h4>
965 <ul class="details">
966 <li class="skills">Technical PM, Architect, Lead Developer</li>
967 <li class="technologies">C#, Winforms, WPF, Web API, TypeScript, Less, React</li>
968 <li class="description">Designed, built and supported a powerful, flexible, modular and modern metadata
969 framework for .NET (API servers, SPAs, Winform, WPF).</li>
970 </ul class="details">
971 </div>
972 <div>
973 <h3 id="WowLabTower">WowLab Tower</h3>
974 <h4><time datetime="2020-06">June 2020</time>—<time datetime="2020-09">Sep 2020</time></h4>
975 <ul class="details">
976 <li class="skills">Architect, Developer</li>
977 <li class="technologies">C#, Unity, ARKit, iOS</li>
978 <li class="description">Designed and developed an iOS app that displays financial data using AR; data and metadata provided in JSON configuration.</li>
979 </ul>
980 </div>
981 <div>
982 <h3 id="FutureLabSmartPolice">FutureLab SmartPolice</h3>
983 <h4><time datetime="2020-01">Jan 2020</time>—<time datetime="2020-12">Dec 2020</time></h4>
984 <ul class="details">
985 <li class="skills">Architect, Developer</li>
986 <li class="technologies">C#, C++</li>
987 <li class="description">Maintenance, refactoring, and stabilization for a WebDav integration in Windows Explorer with a Twain data-import driver.</li>
988 </ul>
989 </div>
990 <div>
991 <h3 id="CrealogixMAPCICD">Crealogix MAP CI/CD</h3>
992 <h4><time datetime="2020-05">May 2020</time>—<time datetime="2020-10">Oct 2020</time></h4>
993 <ul class="details">
994 <li class="skills">Architect, Developer</li>
995 <li class="technologies">Ruby, Groovy, Fastlane, Jenkins, Gradle, TypeScript, Java, Swift</li>
996 <li class="description">Built CI/CD deployment pipelines for a framework and multiple projects, with iOS/Android targets, SauceLabs, Artifactory, Vault, and SonarQube integration.</li>
997 </ul>
998 </div>
999 <div>
1000 <h3 id="GemdatArchitecturConsulting">Gemdat Architecture Consulting</h3>
1001 <h4><time datetime="2018-04">Apr 2020</time></h4>
1002 <ul class="details">
1003 <li class="skills">Architect</li>
1004 <li class="technologies">Angular, NX, TypeScript</li>
1005 <li class="description">Conducted a 1-day architecture review and consulting for an set of Angular projects.</li>
1006 </ul>
1007 </div>
1008 <div>
1009 <h3>Crealogix MAP</h3>
1010 <h4><time datetime="2019-09">Sep 2019</time>—<time datetime="2020-04">Apr 2020</time></h4>
1011 <ul class="details">
1012 <li class="skills">Architect, Developer</li>
1013 <li class="technologies">Java, Swift, TypeScript, Android & iOS SDKs</li>
1014 <li class="description">Maintained and improved a cross-platform mobile-banking solution for Android and iOS.</li>
1015 </ul>
1016 </div>
1017 <div>
1018 <h3 id="RocheUA">Roche User Assistance</h3>
1019 <h4><time datetime="2018-10">Oct 2018</time>—<time datetime="2022-01">Jan 2022</time></h4>
1020 <ul class="details">
1021 <li class="skills">Reviewer</li>
1022 <li class="technologies">TypeScript, React, MobX, LESS</li>
1023 <li class="description">Provided architecture, quality control and reviews for an upgrade, cleanup, refactoring, and modernization of an existing product.</li>
1024 </ul>
1025 </div>
1026 <div>
1027 <h3 id="PerformaCRM">Performa CRM</h3>
1028 <h4><time datetime="2018-03">Sep 2018</time>—<time datetime="2021-01">Jan 2021</time></h4>
1029 <ul class="details">
1030 <li class="skills">Architect, Developer</li>
1031 <li class="technologies">C#, ASP.Net Core, React, TypeScript</li>
1032 <li class="description">Worked on a server to transform metadata and data from Microsoft Dynamics CRM to Quino for delivery to a generic Quino web client.</li>
1033 </ul>
1034 </div>
1035 <div>
1036 <h3 id="IT">Encodo IT</h3>
1037 <h4><time datetime="2007-10">Oct 2007</time>—<time datetime="2022-01">Jan 2022</time></h4>
1038 <ul class="details">
1039 <li class="skills">Support</li>
1040 <li class="technologies">Ubuntu, Proxmox, Windows Server</li>
1041 <li class="description">Worked with IT chief to set up and maintain Encodo's infrastructure and network, including on-prem CI/CD (now mostly in Azure), a fleet of Ubuntu and Windows VMs, firewall, DNS, Samba, and so much more over the years.</li>
1042 </ul>
1043 </div>
1044 <div>
1045 <h3 id="RocheLabCoreWebModules">Roche LabCore Web Modules</h3>
1046 <h4><time datetime="2019-10">Oct 2019</time>—<time datetime="2020-03">Mar 2020</time></h4>
1047 <ul class="details">
1048 <li class="skills">Architect, Developer</li>
1049 <li class="technologies">TypeScript, React, Angular, SCSS</li>
1050 <li class="description">Designed an architecture for a multi-technology web framework/library.</li>
1051 </ul>
1052 </div>
1053 <div>
1054 <h3 id="AplixSpooler">Aplix Spooler</h3>
1055 <h4><time datetime="2019-08">Aug 2019</time>—<time datetime="2019-12">Dec 2019</time></h4>
1056 <ul class="details">
1057 <li class="skills">Developer</li>
1058 <li class="technologies">C#, ASP.Net, React, TypeScript, Delphi Pascal</li>
1059 <li class="description">Retrofitted a Windows desktop application to work with a command line and integrated it into a C# service.</li>
1060 </ul>
1061 </div>
1062 <div>
1063 <h3 id="CrealogixDigitalBankingDemoDays"><a href="https://crealogix.com">Crealogix</a> Digital Banking Demo Days</h3>
1064 <h4><time datetime="2019-03">Mar 2019</time>—<time datetime="2019-05">May 2019</time></h4>
1065 <ul class="details">
1066 <li class="skills">Architect, Developer</li>
1067 <li class="technologies">TypeScript, React, CSS/LESS</li>
1068 <li class="description">Wrote a chat-robot prototype against a UI/UX concept for a demonstration.</li>
1069 </ul>
1070 </div>
1071 <div>
1072 <h3 id="AplixLogistik">Aplix Logistik</h3>
1073 <h4><time datetime="2019-03">Mar 2019</time>—<time datetime="2019-12">Dec 2019</time></h4>
1074 <ul class="details">
1075 <li class="skills">Reviewer</li>
1076 <li class="technologies">C#, ASP.Net, React</li>
1077 <li class="description">Supervised, provided guidance and helped develop the back-end for a mobile-based, "picker" app for food warehouses (SwissBio).</li>
1078 </ul>
1079 </div>
1080 <div>
1081 <h3 id="HensoldtMTSC"><a href="https://www.hensoldt.net/">Hensoldt</a> Train-Simulator Content-Delivery System</h3>
1082 <h4><time datetime="2019-03">Mar 2019</time>—<time datetime="2019-08">Aug 2019</time></h4>
1083 <ul class="details">
1084 <li class="skills">Reviewer</li>
1085 <li class="technologies">XSLT, XML</li>
1086 <li class="description">Provided design/architecture and reviews for a content-delivery system based on Web Flow.</li>
1087 </ul>
1088 </div>
1089 <div>
1090 <h3 id="CrealogixTimeWarp"><a href="https://crealogix.com">Crealogix</a> <a href="https://finovate.com/videos/finovateeurope-2019-crealogix/">TimeWarp</a></h3>
1091 <h4><time datetime="2018-11">Nov 2018</time>—<time datetime="2019-02">Feb 2019</time></h4>
1092 <ul class="details">
1093 <li class="skills">Developer</li>
1094 <li class="technologies">C#, Unity</li>
1095 <li class="description">Wrote the data model and game-world algorithm for a 3D financial-planner prototype.</li>
1096 </ul>
1097 </div>
1098 <div>
1099 <h3 id="InsiteFAK"><a href="https://insite.ch">Insite</a> FAK</h3>
1100 <h4><time datetime="2018-03">Mar 2018</time>—<time datetime="2021-01">Jan 2021</time></h4>
1101 <ul class="details">
1102 <li class="skills">Architect, Technical PM, Developer</li>
1103 <li class="technologies">C#, .NET</li>
1104 <li class="description">Rewrite an existing line-of-business application using Quino, connecting to a legacy database.</li>
1105 </ul>
1106 </div>
1107 <div>
1108 <h3 id="InsiteNETCQuinoTrainings"><a href="https://insite.ch">Insite</a> <a href="https://data.encodo.ch/presentations/20180719_dotnet_csharp_training_1/">.NET/C#/Quino Trainings</a></h3>
1109 <h4><time datetime="2018-06">Jun 2018</time>—<time datetime="2018-09">Sep 2018</time></h4>
1110 <ul class="details">
1111 <li class="skills">Architect, Technical PM, Developer</li>
1112 <li class="technologies">C#</li>
1113 <li class="description">Conducted a 3-day training and onboarding for .NET, C# and Quino, starting from fundamentals to building a simple, but full-fledged Quino desktop application.</li>
1114 </ul>
1115 </div>
1116 <div>
1117 <h3 id="DaylightQuinoUpgrade"><a href="https://daylight.ch">Daylight</a> Quino Upgrade</h3>
1118 <h4><time datetime="2018-03">Mar 2018</time>—<time datetime="2018-12">Dec 2018</time></h4>
1119 <ul class="details">
1120 <li class="skills">Architect, Technical PM, Developer</li>
1121 <li class="technologies">C#</li>
1122 <li class="description">Upgraded a sophisticated event-management/school-management product based on Quino 1.13 to Quino 6 (latest).</li>
1123 </ul>
1124 </div>
1125 <div>
1126 <h3 id="AplixLogistikInitial">Aplix Logistik</h3>
1127 <h4><time datetime="2018-03">Mar 2018</time>—<time datetime="2018-08">Aug 2018</time></h4>
1128 <ul class="details">
1129 <li class="skills">Architect, Technical PM, Developer</li>
1130 <li class="technologies">C#, React, Redux, TypeScript</li>
1131 <li class="description">Supervised, provided guidance and helped develop the back-end for a mobile-based, "picker" app for food warehouses (SwissBio).</li>
1132 </ul>
1133 </div>
1134 <div>
1135 <h3 id="MicronHandoffTrainings">Micron Hand-off Trainings</h3>
1136 <h4><time datetime="2017-09">Sep 2017</time>—<time datetime="2018-04">Apr 2018</time></h4>
1137 <ul class="details">
1138 <li class="skills">Trainer</li>
1139 <li class="technologies">C#, Quino, Web API, TypeScript, Less, Material UI</li>
1140 <li class="description">Created presentations and tutorials and presented 10 90-minute trainings to on-board a medium-sized team.</li>
1141 </ul>
1142 </div>
1143 <div>
1144 <h3 id="MULTIVACPolymerTraining"><a href="https://multivac.com/en/">MULTIVAC HTML/Polymer Training</a></h3>
1145 <h4><time datetime="2016-10">Oct 2016</time></h4>
1146 <ul class="details">
1147 <li class="skills">Architect, Trainer</li>
1148 <li class="technologies">HTML 5, JavaScript, Less/Css, Polymer</li>
1149 <li class="description">Created presentations and tutorials and presented a 2-day, JS/Polymer training with a focus on architecture.</li>
1150 </ul>
1151 </div>
1152 <div>
1153 <h3 id="MicronTopPerformance"><a href="https://www.micronsystems.com/introducing-top-performance">Micron Top Performance</a></h3>
1154 <h4><time datetime="2016-09">Sep 2016</time>—<time datetime="2018-11">Nov 2018</time></h4>
1155 <ul class="details">
1156 <li class="skills">Architect, Technical PM, Developer</li>
1157 <li class="technologies">C#, TypeScript, React, Redux</li>
1158 <li class="description">Designed and developed employee-managed, -evaluation and performance-review software with PL in New Jersey and a team in Philippines, deployed on AWS.</li>
1159 </ul>
1160 </div>
1161 <div>
1162 <h3 id="CrealogixMAP"><a href="https://crealogix.com">Crealogix MAP</a></h3>
1163 <h4><time datetime="2016-09">Sep 2016</time>—<time datetime="2018-01">Jan 2018</time> </h4>
1164 <ul class="details">
1165 <li class="skills">Architect, Developer</li>
1166 <li class="technologies">Java, Swift, TypeScript, React, Android & iOS SDKs</li>
1167 <li class="description">Designed and built a cross-platform mobile-banking solution for Android and iOS.</li>
1168 </ul>
1169 </div>
1170 <div>
1171 <h3 id="AlpsHandoffTraining">Alps Hand-off Training</h3>
1172 <h4><time datetime="2015-10">Oct 2015</time></h4>
1173 <ul class="details">
1174 <li class="skills">Architect</li>
1175 <li class="technologies">C#, Quino, Web API, TypeScript, Less, Knockout</li>
1176 <li class="description">Created presentations and tutorials and presented a 5-day training to on-board a small team.</li>
1177 </ul>
1178 </div>
1179 <div>
1180 <h3 id="Alps"><a href="https://www.apexclearing.com/">Apex Clearing</a> <a href="https://apps.apexclearing.com/alps">Alps</a></h3>
1181 <h4><time datetime="2013-06">Jun 2013</time>—<time datetime="2016-06">Sep 2016</time></h4>
1182 <ul class="details">
1183 <li class="skills">Technical PM, Architect, Developer</li>
1184 <li class="technologies">C#, Quino, Web API, TypeScript, Less, Knockout</li>
1185 <li class="description">Services and web front-end for processing, overview and management of ACATS for <a href="https://apexclearing.com">Apex Clearing Corporation</a>.</li>
1186 </ul>
1187 </div>
1188 <div>
1189 <h3 id="Qontis">Qontis (<a href="https://crealogix.com">Crealogix </a>)</h3>
1190 <h4><time datetime="2013-03">Mar 2013</time>—<time datetime="2015-02">Feb 2015</time></h4>
1191 <ul class="details">
1192 <li class="skills">Architect, Developer</li>
1193 <li class="technologies">C#, WCF, <a href="https://www.meniga.com">Meniga</a>, JavaScript, Less, jQuery</li>
1194 <li class="description">A personal finance manager with integration into various online banking systems.</li>
1195 </ul>
1196 </div>
1197 <div>
1198 <h3 id="CrealogixMUXTraining"><a href="https://crealogix.com">Crealogix </a> MUX Training</h3>
1199 <h4><time datetime="2014-08">Aug 2014</time></h4>
1200 <ul class="details">
1201 <li class="skills">Architect, Trainer</li>
1202 <li class="technologies">HTML 5, JavaScript, Less/Css</li>
1203 <li class="description">Created a framework recommendation for a web-based project. Created presentations and tutorials and presented a 5-day training to onboard a small team.</li>
1204 </ul>
1205 </div>
1206 <div>
1207 <h3 id="RocheHTML5Training"><a href="https://www.roche.ch/">Roche</a> HTML5 Training</h3>
1208 <h4><time datetime="2013-11">Nov 2013</time></h4>
1209 <ul class="details">
1210 <li class="skills">Architect, Trainer</li>
1211 <li class="technologies">HTML 5, JavaScript, Less/Css</li>
1212 <li class="description">Created presentations and tutorials and presented a 3-day, HTML5 introduction and training with a focus on architecture.</li>
1213 </ul>
1214 </div>
1215 <div>
1216 <h3 id="RocheMUA"><a href="https://www.roche.ch/">Roche</a> MUA</h3>
1217 <h4><time datetime="2012-10">Oct 2012</time>—<time datetime="2013-06">Jun 2013</time></h4>
1218 <ul class="details">
1219 <li class="skills">Developer</li>
1220 <li class="technologies">HTML 5, JavaScript, Less/Css</li>
1221 <li class="description">A full-fledged port of a Silverlight user-assistance application to HTML for mobile devices.</li>
1222 </ul>
1223 </div>
1224 <div>
1225 <h3 id="QQLSpecification"><a href="https://encodo.com/media/2726/encodo-qql-handbook.pdf">QQL Specification</a></h3>
1226 <h4><time datetime="2011-11">Nov 2011</time>—<time datetime="2012-10">Oct 2012</time></h4>
1227 <ul class="details">
1228 <li class="skills">Architect</li>
1229 <li class="technologies">QQL</li>
1230 <li class="description">Wrote a detailed specification for the Quino Query Language (QQL), which defines a syntax and semantics for formulating data requests
1231 against hierarchical data structures.</li>
1232 </ul>
1233 </div>
1234 <div>
1235 <h3 id="GitHandbook"><a href="https://encodo.com/media/1018/encodo-git-handbook.pdf">Git Handbook</a></h3>
1236 <h4><time datetime="2011-06">Jun 2011</time>—<time datetime="2015-07">Jul 2015</time></h4>
1237 <ul class="details">
1238 <li class="skills">Writer</li>
1239 <li class="technologies">Git</li>
1240 <li class="description">Wrote a detailed handbook for using Git at Encodo, with best practices, a branching model and development process.</li>
1241 </ul>
1242 </div>
1243 <div>
1244 <h3 id="Peak6Launchpad"><a href="https://peak6.com">Peak6 Launchpad</a></h3>
1245 <h4><time datetime="2010-07">Jul 2010</time>—<time datetime="2012-09">Sep 2012</time></h4>
1246 <ul class="details">
1247 <li class="skills">Architect, Developer</li>
1248 <li class="technologies">C#, Winforms, Quino</li>
1249 <li class="description">A highly concurrent and high-performance query and display client for options traders.</li>
1250 </ul>
1251 </div>
1252 <div>
1253 <h3 id="M9">M9</h3>
1254 <h4><time datetime="2009-03">Mar 2009</time>—<time datetime="2010-09">Sep 2010</time></h4>
1255 <ul class="details">
1256 <li class="skills">Architect, Developer</li>
1257 <li class="technologies">C#, Winforms, Entity Framework</li>
1258 <li class="description">A large-scale and high-volume contact bulk mail/campaign manager.</li>
1259 </ul>
1260 </div>
1261 <div>
1262 <h3 id="eZagAdmin"><a href="https://www.zag.zh.ch">eZag Admin</a></h3>
1263 <h4><time datetime="2007-03">Sep 2007</time>—<time datetime="2022-01">Jan 2022</time></h4>
1264 <ul class="details">
1265 <li class="skills">Architect, Developer, Support</li>
1266 <li class="technologies">C#, Winforms, Quino, ASP.Net, jQuery, Exchange integration</li>
1267 <li class="description">A product for managing a school, including basic data, curriculum and lesson planning software.</li>
1268 </ul>
1269 </div>
1270 <div>
1271 <h3 id="CHandbook"><a href="https://github.com/mvonballmo/CSharpHandbook">C# Handbook</a></h3>
1272 <h4><time datetime="2007-03">Mar 2007</time>—<time datetime="2007-06">Jun 2017</time></h4>
1273 <ul class="details">
1274 <li class="skills">Writer</li>
1275 <li class="technologies">Markdown, C#</li>
1276 <li class="description">Wrote a detailed reference for composing C#. It includes naming, structural and formatting conventions as well as best practices for writing clean, safe and maintainable code.</li>
1277 </ul>
1278 </div>
1279 <div>
1280 <h3 id="PoCRaiffeisen">POC <a href="https://www.raiffeisen.ch/">Raiffeisen</a></h3>
1281 <h4><time datetime="2007-05">May 2007</time>—<time datetime="2007-08">Aug 2007</time></h4>
1282 <ul class="details">
1283 <li class="skills">Architect, Developer</li>
1284 <li class="technologies">Java, Eclipse RCP</li>
1285 <li class="description">A POC to wrap legacy software in a SOAP API with a Java client prototype.</li>
1286 </ul>
1287 </div>
1288 <div>
1289 <h3 id="FidesReportingEngine"><a href="https://fides.ch">Fides</a> Reporting Engine</h3>
1290 <h4><time datetime="2006-06">Jun 2006</time>—<time datetime="2014-06">Jun 2014</time></h4>
1291 <ul class="details">
1292 <li class="skills">Architect, Lead Developer, Support</li>
1293 <li class="technologies">Delphi Pascal, VCL</li>
1294 <li class="description">A reporting engine and full-fledged designer for fixed-width text, HTML and PDF reports.</li>
1295 </ul>
1296 </div>
1297 <div>
1298 <h3 id="FidesClient"><a href="https://fides.ch">Fides Client</a></h3>
1299 <h4><time datetime="2006-06">Jun 2006</time>—<time datetime="2014-06">Jun 2014</time></h4>
1300 <ul class="details">
1301 <li class="skills">Architect, Developer, Support</li>
1302 <li class="technologies">Delphi Pascal, VCL</li>
1303 <li class="description">A client/server component to communicate in parallel and asynchronously via a custom, secure XML-based protocol.</li>
1304 </ul>
1305 </div>
1306 <div>
1307 <h3 id="QZAG"><a href="https://www.zag.zh.ch">Q-ZAG</a></h3>
1308 <h4><time datetime="2005-12">Dec 2005</time>—<time datetime="2014-10">Oct 2014</time></h4>
1309 <ul class="details">
1310 <li class="skills">Architect, Developer, Support</li>
1311 <li class="technologies">Java, Tapestry, JavaScript</li>
1312 <li class="description">A document management system for organizing materials related to the Quintessenz system.</li>
1313 </ul>
1314 </div>
1315 <div>
1316 <h3 id="ZAGEntlastungskontrolle"><a href="https://www.zag.zh.ch">ZAG Entlastungkontrolle</a></h3>
1317 <h4><time datetime="2005-10">Oct 2005</time>—<time datetime="2014-10">Oct 2014</time></h4>
1318 <ul class="details">
1319 <li class="skills">Architect, Developer, Support</li>
1320 <li class="technologies">Java, Tapestry, JavaScript</li>
1321 <li class="description">A product for teachers and administrators to manage compensated and continuing-education time.</li>
1322 </ul>
1323 </div>
1324 </div>
1325 </div>
1326 </div>
1327
1328 <div class="page-break">
1329 <h2>Opus Software GmbH</h2>
1330 <h3 title="3 years">October 2002—August 2005</h3>
1331 <p>I moved from New York City to Switzerland to work for Opus, where I went back to working with Object Pascal and Delphi.</p>
1332
1333 <h3>Overview</h3>
1334 <div class="timeline">
1335 <table class="basic left-labels legend early">
1336 <caption title="Legend"></caption>
1337 <tr>
1338 <th title="Lead Dev"></th>
1339 <td class="lead-developer"></td>
1340 </tr>
1341 <tr>
1342 <th title="Developer"></th>
1343 <td class="developer"></td>
1344 </tr>
1345 <tr>
1346 <th title="Architect"></th>
1347 <td class="architect"></td>
1348 </tr>
1349 </table>
1350 <div class="timeline-box">
1351 <div class="years">
1352 <div title="1985"></div>
1353 <div title="1990"></div>
1354 <div title="1995"></div>
1355 <div title="2000"></div>
1356 <div title="2005"></div>
1357 <div title="2010"></div>
1358 <div title="2015"></div>
1359 <div title="2020"></div>
1360 </div>
1361 <table class="projects">
1362 <thead>
1363 <tr>
1364 <th>Years</th>
1365 <th>Product</th>
1366 <th>Roles</th>
1367 </tr>
1368 </thead>
1369 <tbody>
1370 <tr><th></th><td class="employee"><?php employee_area ("mid2002", "mid2005");?></td><td></td></tr>
1371 <tr><th>2003–2005</th><td><?php project_line ("Dialba 2000", "developer", "year2003", "mid2005"); ?></td><td>Developer</td></tr>
1372 <tr><th>2003–2005</th><td><?php project_line ("Atlas", "architect lead-developer", "mid2003", "mid2005"); ?></td><td>Architect, Lead developer</td></tr>
1373 <tr><th>2002–2003</th><td><?php project_line ("Atlas", "developer", "mid2002", "mid2003"); ?></td><td>Developer</td></tr>
1374 <tr><th>2005</th><td><?php project_line ("Sql Server Data Driver", "developer", "year2005", "mid2005"); ?></td><td>Developer</td></tr>
1375 <tr><th>2004</th><td><?php project_line ("Allbase Data Driver", "developer", "mid2004", "year2005"); ?></td><td>Developer</td></tr>
1376 <tr><th>2003</th><td><?php project_line ("Atlas Startup", "developer", "year2003", "year2004"); ?></td><td>Developer</td></tr>
1377 <tr><th>2003</th><td><?php project_line ("Atlas Logging", "developer", "year2003", "year2004"); ?></td><td>Developer</td></tr>
1378 <tr><th>2002</th><td><?php project_line ("earthli Projects 2.5", "developer", "mid2002", "year2003"); ?></td><td>Developer</td></tr>
1379 </tbody>
1380 </table>
1381 </div>
1382 </div>
1383
1384 <h3>Details</h3>
1385 <div class="grid projects">
1386 <div>
1387 <h3 id="Atlas">Atlas</h3>
1388 <h4><time datetime="2002-10">Oct 2002</time>—<time datetime="2005-08">Aug 2005</time></h4>
1389 <ul class="details">
1390 <li class="skills">Architect, Lead Developer</li>
1391 <li class="technologies">Delphi Pascal, VCL</li>
1392 <li class="description">A metadata-centric framework to develop client and service applications. Included an ORM, automated schema-migration, and generated user interfaces.</li>
1393 </ul>
1394 </div>
1395 <div>
1396 <h3 id="SqlServerDataDriver">SQL Server Data Driver</h3>
1397 <h4><time datetime="2005-01">Jan 2005</time>—<time datetime="2005-08">Aug 2005</time></h4>
1398 <ul class="details">
1399 <li class="skills">Lead Developer</li>
1400 <li class="technologies">Delphi Pascal, SQL Server 2000</li>
1401 <li class="description">A data driver for Atlas for SQL Server databases.</li>
1402 </ul>
1403 </div>
1404 <div>
1405 <h3 id="AllbaseDataDriver">Allbase Data Driver</h3>
1406 <h4><time datetime="2004-06">Jun 2004</time>—<time datetime="2004-12">Dec 2004</time></h4>
1407 <ul class="details">
1408 <li class="skills">Lead Developer</li>
1409 <li class="technologies">Delphi Pascal, HP Allbase</li>
1410 <li class="description">A data driver for Atlas for HP Allbase databases.</li>
1411 </ul>
1412 </div>
1413 <div>
1414 <h3 id="Dialba2000">Dialba 2000</h3>
1415 <h4><time datetime="2003-06">Jun 2003</time>—<time datetime="2005-08">Aug 2005</time></h4>
1416 <ul class="details">
1417 <li class="skills">Developer</li>
1418 <li class="technologies">Delphi Pascal, VCL, Btrieve/Powerflex</li>
1419 <li class="description">Support and enhancements for a feature-rich and powerful banking front-end written with Atlas.</li>
1420 </ul>
1421 </div>
1422 <div>
1423 <h3 id="AtlasStartup">Atlas Startup</h3>
1424 <h4><time datetime="2003-02">Feb 2003</time>—<time datetime="2003-06">Jun 2003</time></h4>
1425 <ul class="details">
1426 <li class="skills">Lead Developer</li>
1427 <li class="technologies">Delphi Pascal</li>
1428 <li class="description">A flexible and declarative configuration and startup system for Atlas applications.</li>
1429 </ul>
1430 </div>
1431 <div>
1432 <h3 id="AtlasLogging">Atlas Logging</h3>
1433 <h4><time datetime="2003-04">Apr 2003</time>—<time datetime="2003-06">Jun 2003</time></h4>
1434 <ul class="details">
1435 <li class="skills">Lead Developer</li>
1436 <li class="technologies">Delphi Pascal</li>
1437 <li class="description">Add configurable and semantic/information-rich logging for Atlas applications.</li>
1438 </ul>
1439 </div>
1440 <div class="page-break">
1441 <h3 id="earthliProjects25">earthli Projects 2.5</h3>
1442 <h4><time datetime="2002-11">Nov 2002</time>—<time datetime="2003-01">Jan 2003</time></h4>
1443 <ul class="details">
1444 <li class="skills">Lead Developer</li>
1445 <li class="technologies">PHP 4</li>
1446 <li class="description">Extend issue-tracker emails, subscriptions, and add multiple branch statuses.</li>
1447 </ul>
1448 </div>
1449 </div>
1450 </div>
1451
1452 <div class="page-break">
1453 <h2>Logicat, Inc.</h2>
1454 <h3 title="8 years">August 1994—August 2002</h3>
1455 <p>I moved from upstate New York to New York City to start my professional career at Logicat as a developer.</p>
1456 <h3>Overview</h3>
1457 <div class="timeline">
1458 <table class="basic left-labels legend early">
1459 <caption title="Legend"></caption>
1460 <tr>
1461 <th title="Technical PM"></th>
1462 <td class="project-manager"></td>
1463 </tr>
1464 <tr>
1465 <th title="Lead Dev"></th>
1466 <td class="lead-developer"></td>
1467 </tr>
1468 <tr>
1469 <th title="Developer"></th>
1470 <td class="developer"></td>
1471 </tr>
1472 <tr>
1473 <th title="Architect"></th>
1474 <td class="architect"></td>
1475 </tr>
1476 </table>
1477 <div class="timeline-box">
1478 <div class="years">
1479 <div title="1985"></div>
1480 <div title="1990"></div>
1481 <div title="1995"></div>
1482 <div title="2000"></div>
1483 <div title="2005"></div>
1484 <div title="2010"></div>
1485 <div title="2015"></div>
1486 <div title="2020"></div>
1487 </div>
1488 <table class="projects">
1489 <thead>
1490 <tr>
1491 <th>Years</th>
1492 <th>Product</th>
1493 <th>Roles</th>
1494 </tr>
1495 </thead>
1496 <tbody>
1497 <tr><th></th><td class="employee"><?php employee_area ("mid1994", "mid2002");?></td><td></td></tr>
1498 <tr><th>2002</th><td class="years_2002_mid_2002"><?php project_line ("Logicat Course Administrator", "project-manager architect lead-developer", "year2002", "mid2002"); ?></td><td>Project-manager, Architect, Lead developer</td></tr>
1499 <tr><th>2001–2002</th><td class="years_2001_2002"><?php project_line ("Logicat CE Manager", "project-manager architect lead-developer", "year2001", "mid2002"); ?></td><td>Project manager, Architect, Lead developer</td></tr>
1500 <tr><th>2001</th><td class="years_2001_mid_2001"><?php project_line ("Online Testing", "lead-developer", "year2001", "mid2001"); ?></td><td>lead-developer</td></tr>
1501 <tr><th>1999–2001</th><td class="years_1999_2001"><?php project_line ("One-on-One with the SAT 2.0", "project-manager architect lead-developer", "year1999", "year2001"); ?></td><td>Project manager, Architect, Lead developer</td></tr>
1502 <tr><th>1998–1999</th><td class="years_1998_1999"><?php project_line ("Logicat Test Engine", "project-manager architect lead-developer", "year1998", "year1999"); ?></td><td>Project manager, Architect, Lead developer</td></tr>
1503 <tr><th>1997</th><td class="years_mid_1997_1998"><?php project_line ("CPA Live Courses", "architect lead-developer", "mid1997", "year1998"); ?></td><td>Architect, Lead developer</td></tr>
1504 <tr><th>1997</th><td class="years_1997_mid_1997"><?php project_line ("Performance Transfer", "lead-developer", "year1997", "mid1997"); ?></td><td>Lead developer</td></tr>
1505 <tr><th>1996–1997</th><td class="years_1996_1997"><?php project_line ("Logicat CPA Review", "architect lead-developer", "year1996", "year1997"); ?></td><td>Architect, Lead developer</td></tr>
1506 <tr><th>1996</th><td class="years_1996_mid_1996"><?php project_line ("ELF", "architect lead-developer", "year1996", "year1997"); ?></td><td>Architect, Lead developer</td></tr>
1507 <tr><th>1995–1996</th><td class="years_1995_1996"><?php project_line ("PassMaster CPA Review Web Site", "lead-developer", "year1995", "year1996"); ?></td><td>Lead developer</td></tr>
1508 <tr><th>1995</th><td class="years_1995_mid_1995"><?php project_line ("Counselor Utility", "lead-developer", "year1995", "mid1995"); ?></td><td>Lead developer</td></tr>
1509 <tr><th>1994–1995</th><td class="years_mid_1994_mid_1995"><?php project_line ("One-on-One with the SAT", "developer", "mid1994", "mid1995"); ?></td><td>Developer</td></tr>
1510 </tbody>
1511 </table>
1512 </div>
1513 </div>
1514
1515 <h3>Details</h3>
1516 <div class="grid projects">
1517 <div>
1518 <h3 id="LogicatCourseAdministrator"><a href="https://cemanager.micronapps.com">Logicat Course Administrator</a></h3>
1519 <h4><time datetime="2002-05">May 2002</time>—<time datetime="2002-08">Aug 2002</time></h4>
1520 <ul class="details">
1521 <li class="skills">Project Manager, Architect, Lead Developer</li>
1522 <li class="technologies">Visual Basic, ASP.Net, IIS 5, SQL Server 2000</li>
1523 <li class="description">Added multi-tenancy to CE Manager with features/permissions per customer and improved evaluation, reporting and views.</li>
1524 </ul>
1525 </div>
1526 <div>
1527 <h3 id="LogicatCEManager"><a href="https://cemanager.micronapps.com">Logicat CE Manager</a></h3>
1528 <h4><time datetime="2001-04">Apr 2001</time>—<time datetime="2002-04">Apr 2002</time></h4>
1529 <ul class="details">
1530 <li class="skills">Project Manager, Architect, Lead Developer</li>
1531 <li class="technologies">Visual Basic, ASP.Net, IIS 5, SQL Server 2000</li>
1532 <li class="description">A web-based application with reports, reminders and statements for lawyers to track and manage continuing-education credits and licenses.</li>
1533 </ul>
1534 </div>
1535 <div>
1536 <h3 id="OnlineTesting">Online Testing</h3>
1537 <h4><time datetime="2001-02">Feb 2001</time>—<time datetime="2001-04">Apr 2001</time></h4>
1538 <ul class="details">
1539 <li class="skills">Lead Developer</li>
1540 <li class="technologies">Visual C++ 6, IIS 5, SQL Server 2000, HTML/CSS/JS</li>
1541 <li class="description">An HTML-based testing platform for online learning solutions.</li>
1542 </ul>
1543 </div>
1544 <div>
1545 <h3 id="OneonOnewiththeSAT20">One-on-One with the SAT 2</h3>
1546 <h4><time datetime="1999-01">Jan 1999</time>—<time datetime="2001-02">Feb 2001</time></h4>
1547 <ul class="details">
1548 <li class="skills">Project Manager, Architect, Lead Developer</li>
1549 <li class="technologies">Visual C++ 6, MFC, Win32, Metrowerks CodeWarrior 5, Macintosh Toolbox</li>
1550 <li class="description">Add full cross-platform support for Mac OS 9/Windows 95/98 for the Logicat Test Engine (including full renderer and file-format abstraction). Authors had significant scripting/formatting/layouting control.</li>
1551 </ul>
1552 </div>
1553 <div>
1554 <h3 id="LogicatTestEngine">Logicat Test Engine</h3>
1555 <h4><time datetime="1997-11">Nov 1997</time>—<time datetime="1998-12">Dec 1998</time></h4>
1556 <ul class="details">
1557 <li class="skills">Project Manager, Architect, Lead Developer</li>
1558 <li class="technologies">Visual C++ 6, MFC, Win32</li>
1559 <li class="description">Extended ELF with sounds, images, videos, forms and event-based scripting to build a feature-rich and powerful testing framework. Initial content was for a BNL (Brookhaven National Labs) training manual.</li>
1560 </ul>
1561 </div>
1562 <div>
1563 <h3 id="CPALiveCourses">Logicat CPA Review Software Live Courses</h3>
1564 <h4><time datetime="1997-05">May 1997</time>—<time datetime="1997-11">Nov 1997</time></h4>
1565 <ul class="details">
1566 <li class="skills">Architect, Lead Developer</li>
1567 <li class="technologies">Visual C++ 5, MFC, Win32, Delphi 3, OLE/COM</li>
1568 <li class="description">Integrate study plan, calendar and PowerPoint presentations to support/enhance live instruction.</li>
1569 </ul>
1570 </div>
1571 <div>
1572 <h3 id="PerformanceTransfer">Performance Transfer Utility</h3>
1573 <h4><time datetime="1997-02">Feb 1997</time>—<time datetime="1997-04">Apr 1997</time></h4>
1574 <ul class="details">
1575 <li class="skills">Lead Developer</li>
1576 <li class="technologies">Delphi 2.0, Wise 5.0, HTML/CSS</li>
1577 <li class="description">A hardware copy-protection utility for Logicat CPA Review with custom installer and detailed (100-page) manual.</li>
1578 </ul>
1579 </div>
1580 <div>
1581 <h3 id="LogicatCPAReview">Logicat CPA Review</h3>
1582 <h4><time datetime="1996-08">Aug 1996</time>—<time datetime="1997-01">Jan 1997</time></h4>
1583 <ul class="details">
1584 <li class="skills">Architect, Lead Developer</li>
1585 <li class="technologies">Visual C++ 4.1/5, MFC, Win32, ELF</li>
1586 <li class="description">A rewrite of the popular PassMaster DOS program for Windows 95 using ELF.</li>
1587 </ul>
1588 </div>
1589 <div>
1590 <h3 id="ELF">ELF (Extended Logicat Format)</h3>
1591 <h4><time datetime="1996-02">Feb 1996</time>—<time datetime="1996-08">Aug 1996</time></h4>
1592 <ul class="details">
1593 <li class="skills">Architect, Lead Developer</li>
1594 <li class="technologies">Borland Delphi 2, Microsoft Visual C++ 4.1</li>
1595 <li class="description">A content pipeline and rendering library that included a markup language, RTF parser and structured binary document format/database.</li>
1596 </ul>
1597 </div>
1598 <div>
1599 <h3 id="PassMasterCPAReviewWebSite">PassMaster CPA Review Web Site</h3>
1600 <h4><time datetime="1995-12">Dec 1995</time>—<time datetime="1996-01">Jan 1996</time></h4>
1601 <ul class="details">
1602 <li class="skills">Lead Developer</li>
1603 <li class="technologies">JavaScript, HTML, Delphi</li>
1604 <li class="description">An online demonstration of some of the functionality of the DOS-based PassMaster CPA review software.</li>
1605 </ul>
1606 </div>
1607 <div>
1608 <h3 id="CounselorUtility">One-on-One with the SAT Counselor Utility</h3>
1609 <h4><time datetime="1995-09">Sep 1995</time>—<time datetime="1995-11">Nov 1995</time></h4>
1610 <ul class="details">
1611 <li class="skills">Lead Developer</li>
1612 <li class="technologies">Borland Object Pascal 7, Win32</li>
1613 <li class="description">A management and reporting utility for multi-user, networked school distributions of One-on-One with the SAT.</li>
1614 </ul>
1615 </div>
1616 <div>
1617 <h3 id="OneonOnewiththeSAT">One-on-One with the SAT</h3>
1618 <h4><time datetime="1994-08">Aug 1994</time>—<time datetime="1995-09">Sep 1995</time></h4>
1619 <ul class="details">
1620 <li class="skills">Developer</li>
1621 <li class="technologies">Borland Object Pascal 7, Win32</li>
1622 <li class="description">The official College Board SAT-preparation tool for Windows 3.1/95.</li>
1623 </ul>
1624 </div>
1625 </div>
1626 </div>
1627
1628 <div class="page-break">
1629 <h2>Personal Projects</h2>
1630 <h3 title="<?php echo $current_year - 1997; ?> years">January 1997—present</h3>
1631 <p>This list includes open-source projects and the software running this web site.</p>
1632
1633 <h3>Overview</h3>
1634 <div class="timeline">
1635 <table class="basic left-labels legend early">
1636 <caption title="Legend"></caption>
1637 <tr>
1638 <th title="Technical PM"></th>
1639 <td class="project-manager"></td>
1640 </tr>
1641 <tr>
1642 <th title="Lead Dev"></th>
1643 <td class="lead-developer"></td>
1644 </tr>
1645 <tr>
1646 <th title="Developer"></th>
1647 <td class="developer"></td>
1648 </tr>
1649 <tr>
1650 <th title="Architect"></th>
1651 <td class="architect"></td>
1652 </tr>
1653 </table>
1654 <div class="timeline-box">
1655 <div class="years">
1656 <div title="1985"></div>
1657 <div title="1990"></div>
1658 <div title="1995"></div>
1659 <div title="2000"></div>
1660 <div title="2005"></div>
1661 <div title="2010"></div>
1662 <div title="2015"></div>
1663 <div title="2020"></div>
1664 </div>
1665 <table class="projects">
1666 <thead>
1667 <tr>
1668 <th>Years</th>
1669 <th>Product</th>
1670 <th>Roles</th>
1671 </tr>
1672 </thead>
1673 <tbody>
1674 <tr><th></th><td class="employee"><?php employee_area ("year1997");?></td><td></td></tr>
1675 <tr><th>2004–2005</th><td><?php project_line ("TuneSync", "project-manager architect lead-developer", "year2004", "year2005"); ?></td><td>Architect, Lead developer</td></tr>
1676 <tr><th>2003–2010</th><td><?php project_line ("PHPDocumentor", "developer", "year2003", "year2010"); ?></td><td>Developer</td></tr>
1677 <tr><th>2002</th><td><?php project_line ("earthli Projects", "lead-developer", "year2002", "mid2002"); ?></td><td>Lead developer</td></tr>
1678 <tr><th>2002</th><td><?php project_line ("earthli News", "lead-developer", "year2002", "mid2002"); ?></td><td>Lead developer</td></tr>
1679 <tr><th>2002</th><td><?php project_line ("earthli Recipes", "lead-developer", "year2002", "mid2002"); ?></td><td>Lead developer</td></tr>
1680 <tr><th>2001–present</th><td><?php project_line ("earthli WebCore", "project-manager architect lead-developer", "year2001"); ?></td><td>Project manager, Architect, Lead developer</td></tr>
1681 <tr><th>2001</th><td><?php project_line ("earthli Themes", "lead-developer", "year2001", "mid2001"); ?></td><td>Lead developer</td></tr>
1682 <tr><th>2000</th><td><?php project_line ("earthli Forums", "architect lead-developer", "year2000", "mid2000"); ?></td><td>Architect, Lead developer</td></tr>
1683 <tr><th>1999–2000</th><td><?php project_line ("earthli Albums", "architect lead-developer", "year1999", "year2000"); ?></td><td>Architect, Lead developer</td></tr>
1684 <tr><th>1997–present</th><td><?php project_line ("earthli.com", "project-manager architect lead-developer", "year1997"); ?></td><td>Project manager, Architect, Lead developer</td></tr>
1685 </tbody>
1686 </table>
1687 </div>
1688 </div>
1689
1690 <h3>Details</h3>
1691 <div class="grid projects">
1692 <div>
1693 <h3 id="earthliWebCore"><a href="https://www.earthli.com/software/webcore/">earthli WebCore 3.x</a></h3>
1694 <h4><time datetime="2002-04">Aug 2002</time>—present</h4>
1695 <ul class="details">
1696 <li class="skills">Project Manager, Architect, Lead Developer</li>
1697 <li class="technologies">PHP 5, MySQL, HTML5, LESS/ CSS, JS</li>
1698 <li class="description">Continued maintenance (migrated to PHP5 and PHP7) as well as introducing features (newsfeeds, social optimization and mobile/responsive support).</li>
1699 </ul>
1700 </div>
1701 <div>
1702 <h3 id="TuneSync"><a href="https://www.earthli.com/news/view_article.php?id=1428">TuneSync</a></h3>
1703 <h4><time datetime="2004-12">Dec 2004</time>—<time datetime="2005-12">Dec 2005</time></h4>
1704 <ul class="details">
1705 <li class="skills">Project Manager, Architect, Lead Developer</li>
1706 <li class="technologies">Delphi 7</li>
1707 <li class="description">An application for comparing and syncing iTunes libraries (ID3 tags, ratings, play counts, etc.).</li>
1708 </ul>
1709 </div>
1710 <div>
1711 <h3 id="PHPDocumentor"><a href="https://www.phpdoc.org">PHPDocumentor</a></h3>
1712 <h4><time datetime="2003-04">Apr 2003</time>—<time datetime="2010-12">Dec 2010</time></h4>
1713 <ul class="details">
1714 <li class="skills">Developer</li>
1715 <li class="technologies">PHP 4/5</li>
1716 <li class="description">A documentation generator for PHP. Enhanced data and templates (HTML4/CSS valid) and fixed bugs.</li>
1717 </ul>
1718 </div>
1719 <div>
1720 <h3><a href="https://www.earthli.com/software/webcore/">earthli WebCore 2</a></h3>
1721 <h4><time datetime="2002-04">Apr 2002</time>—<time datetime="2002-08">Aug 2002</time></h4>
1722 <ul class="details">
1723 <li class="skills">Architect, Lead Developer</li>
1724 <li class="technologies">PHP, MySQL 4</li>
1725 <li class="description">A refactoring of the framework to centralize common logic. Migration of all applications.</li>
1726 </ul>
1727 </div>
1728 <div>
1729 <h3 id="earthliProjects"><a href="https://www.earthli.com/software/webcore/app_projects.php">earthli Projects</a></h3>
1730 <h4><time datetime="2002-03">Mar 2002</time>—<time datetime="2002-07">Jul 2002</time></h4>
1731 <ul class="details">
1732 <li class="skills">Lead Developer</li>
1733 <li class="technologies">PHP, MySQL, WebCore</li>
1734 <li class="description">An issue-tracker and version/release manager built with the earthli WebCore.</li>
1735 </ul>
1736 </div>
1737 <div>
1738 <h3 id="earthliNews"><a href="https://www.earthli.com/software/webcore/app_news.php">earthli News</a></h3>
1739 <h4><time datetime="2002-01">Jan 2002</time>—<time datetime="2002-02">Feb 2002</time></h4>
1740 <ul class="details">
1741 <li class="skills">Lead Developer</li>
1742 <li class="technologies">PHP, MySQL, WebCore</li>
1743 <li class="description">A blogging platform built with the earthli WebCore (replaced Forums).</li>
1744 </ul>
1745 </div>
1746 <div>
1747 <h3 id="earthliRecipes"><a href="https://www.earthli.com/software/webcore/app_recipes.php">earthli Recipes</a></h3>
1748 <h4><time datetime="2002-01">Jan 2002</time>—<time datetime="2002-02">Feb 2002</time></h4>
1749 <ul class="details">
1750 <li class="skills">Lead Developer</li>
1751 <li class="technologies">PHP, MySQL, WebCore</li>
1752 <li class="description">A recipe-management application built with the earthli WebCore.</li>
1753 </ul>
1754 </div>
1755 <div>
1756 <h3><a href="https://www.earthli.com/software/webcore">earthli WebCore</a></h3>
1757 <h4><time datetime="2001-10">Oct 2001</time>—<time datetime="2001-12">Dec 2001</time></h4>
1758 <ul class="details">
1759 <li class="skills">Architect, Lead Developer</li>
1760 <li class="technologies">PHP, MySQL, HTML, CSS, JS</li>
1761 <li class="description">Built a web-application framework with themes, security, search, an ORM, an email publication engine and more. Rebuilt Albums with this framework.</li>
1762 </ul>
1763 </div>
1764 <div>
1765 <h3 id="earthliThemes">earthli Themes</h3>
1766 <h4><time datetime="2001-06">Jun 2001</time>—<time datetime="2001-09">Sep 2001</time></h4>
1767 <ul class="details">
1768 <li class="skills">Lead Developer</li>
1769 <li class="technologies">HTML, CSS</li>
1770 <li class="description">Rewrote web front-end with CSS to support multiple color schemes.</li>
1771 </ul>
1772 </div>
1773 <div>
1774 <h3 id="earthliForums">earthli Forums</h3>
1775 <h4><time datetime="2000-10">Oct 2000</time>—<time datetime="2000-12">Dec 2000</time></h4>
1776 <ul class="details">
1777 <li class="skills">Architect, Lead Developer</li>
1778 <li class="technologies">PHP, MySQL, HTML, CSS, JS</li>
1779 <li class="description">Bulletin board with full-text search, nested commenting and ACL-based permissions.</li>
1780 </ul>
1781 </div>
1782 <div>
1783 <h3 id="earthliAlbums"><a href="https://www.earthli.com/software/webcore/app_albums.php">earthli Albums</a></h3>
1784 <h4><time datetime="1999-10">Oct 1999</time>—<time datetime="2000-07">Jul 2000</time></h4>
1785 <ul class="details">
1786 <li class="skills">Architect, Lead Developer</li>
1787 <li class="technologies">PHP, MySQL, HTML, CSS, JS</li>
1788 <li class="description">Albums with journal entries, photos, a calendar and support for multiple users.</li>
1789 </ul>
1790 </div>
1791 <div>
1792 <h3 id="earthlicom"><a href="https://www.earthli.com/">earthli.com</a></h3>
1793 <h4><time datetime="1999-10">Oct 1997</time>—present</h4>
1794 <ul class="details">
1795 <li class="skills">Architect, Lead Developer</li>
1796 <li class="technologies">PHP, MySQL, HTML, CSS, JS</li>
1797 <li class="description">Personal web site that integrates several PHP applications.</li>
1798 </ul>
1799 </div>
1800 </div>
1801 </div>
1802
1803 <div class="page-break">
1804 <h2>Hamilton College</h2>
1805 <h3 title="4 years">September 1990—June 1994</h3>
1806 <p>This list includes teaching jobs and larger projects I did for various computer-science courses.</p>
1807
1808 <h3>Overview</h3>
1809 <div class="timeline">
1810 <table class="basic left-labels legend early">
1811 <caption title="Legend"></caption>
1812 <tr>
1813 <th title="Technical PM"></th>
1814 <td class="project-manager"></td>
1815 </tr>
1816 <tr>
1817 <th title="Instructor"></th>
1818 <td class="instructor"></td>
1819 </tr>
1820 <tr>
1821 <th title="Lead Dev"></th>
1822 <td class="lead-developer"></td>
1823 </tr>
1824 <tr>
1825 <th title="Author"></th>
1826 <td class="author"></td>
1827 </tr>
1828 </table>
1829 <div class="timeline-box">
1830 <div class="years">
1831 <div title="1985"></div>
1832 <div title="1990"></div>
1833 <div title="1995"></div>
1834 <div title="2000"></div>
1835 <div title="2005"></div>
1836 <div title="2010"></div>
1837 <div title="2015"></div>
1838 <div title="2020"></div>
1839 </div>
1840 <table class="projects">
1841 <thead>
1842 <tr>
1843 <th>Years</th>
1844 <th>Product</th>
1845 <th>Roles</th>
1846 </tr>
1847 </thead>
1848 <tbody>
1849 <tr><th></th><td class="employee"><?php employee_area ("mid1990", "mid1994");?></td><td></td></tr>
1850 <tr><th>1994</th><td><?php project_line ("Halcyon 5", "project-manager author", "year1994", "mid1994"); ?></td><td>Project manager, Developer</td></tr>
1851 <tr><th>1994</th><td><?php project_line ("SICLY", "lead-developer", "year1994", "mid1994"); ?></td><td>Lead developer</td></tr>
1852 <tr><th>1993-1994</th><td><?php project_line ("Chemistry Tutor", "instructor", "mid1993", "mid1994"); ?></td><td></td></tr>
1853 <tr><th>1992-1994</th><td><?php project_line ("Comp. Sci. TA", "instructor", "mid1992", "mid1994"); ?></td><td></td></tr>
1854 <tr><th>1992-1994</th><td><?php project_line ("Radio Station Engineer", "developer", "mid1992", "mid1994"); ?></td><td></td></tr>
1855 <tr><th>1992</th><td><?php project_line ("FIGHT!", "lead-developer", "year1992", "mid1992"); ?></td><td>Lead developer</td></tr>
1856 </tbody>
1857 </table>
1858 </div>
1859 </div>
1860
1861 <h3>Details</h3>
1862 <div class="grid projects">
1863 <div>
1864 <h3 id="Halcyon5">Halcyon 5</h3>
1865 <h4><time datetime="1994-01">Jan 1994</time>—<time datetime="1994-05">May 1994</time></h4>
1866 <ul class="details">
1867 <li class="skills">Project Manager, Developer, Writer, Designer</li>
1868 <li class="technologies"></li>
1869 <li class="description">Developed a timeline as well a energy and transportation systems for a hypothetical space colony as part of a team participating in a feasibility study; Coordinated and edited final draft as well as all graphics.</li>
1870 </ul>
1871 </div>
1872 <div>
1873 <h3 id="ChemistryTutor">Chemistry Tutor</h3>
1874 <h4><time datetime="1993-09">Sep 1993</time>—<time datetime="1994-05">May 1994</time></h4>
1875 <ul class="details">
1876 <li class="skills">Instructor</li>
1877 <li class="technologies">N/A</li>
1878 <li class="description">Private tutoring for beginning chemistry students.</li>
1879 </ul>
1880 </div>
1881 <div>
1882 <h3 id="CompSciTA">Computer Science Teaching Assistant</h3>
1883 <h4><time datetime="1992-09">Sep 1992</time>—<time datetime="1994-05">May 1994</time></h4>
1884 <ul class="details">
1885 <li class="skills">Instructor</li>
1886 <li class="technologies">Hypercard</li>
1887 <li class="description">Graded papers and projects; ran labs; tutoring and support.</li>
1888 </ul>
1889 </div>
1890 <div>
1891 <h3 id="RadioStationEngineer"><a href="http://www.whcl.org">WHCL</a> Radio Station Engineer</h3>
1892 <h4><time datetime="1992-09">Sep 1992</time>—<time datetime="1994-05">May 1994</time></h4>
1893 <ul class="details">
1894 <li class="skills">Engineer</li>
1895 <li class="technologies">N/A</li>
1896 <li class="description">Electronics repair for various station equipment for a 24h campus radio station; assisted in installing, setting up, and configuring a whole new studio in the Bristol building basement.</li>
1897 </ul>
1898 </div>
1899 <div>
1900 <h3 id="SICLY">SICLY</h3>
1901 <h4><time datetime="1994-01">Jan 1994</time>—<time datetime="1994-05">May 1994</time></h4>
1902 <ul class="details">
1903 <li class="skills">Lead Developer</li>
1904 <li class="technologies">Apple Basic</li>
1905 <li class="description">Extended and finished a compiler/assembly/runtime for a little language with a visual editor and debugger.</li>
1906 </ul>
1907 </div>
1908 <div>
1909 <h3 id="FIGHT">FIGHT!</h3>
1910 <h4><time datetime="1992-01">Jan 1992</time>—<time datetime="1992-02">Feb 1992</time></h4>
1911 <ul class="details">
1912 <li class="skills">Lead Developer</li>
1913 <li class="technologies">HyperCard</li>
1914 <li class="description">Designed and built a two-player 2D fighting game in Apple HyperCard with an optional computer opponent (homage to <i>Karateka</i>).</li>
1915 </ul>
1916 </div>
1917 </div>
1918 </div>
1919
1920 <div class="page-break">
1921 <h2>Ilion High School</h2>
1922 <h3 title="4 years">September 1986—June 1990</h3>
1923 <p>This list includes larger projects I did for computer-science courses.</p>
1924
1925 <h3>Overview</h3>
1926 <div class="timeline">
1927 <table class="basic left-labels legend early">
1928 <caption title="Legend"></caption>
1929 <tr>
1930 <th title="Lead Dev"></th>
1931 <td class="lead-developer"></td>
1932 </tr>
1933 </table>
1934 <div class="timeline-box">
1935 <div class="years">
1936 <div title="1985"></div>
1937 <div title="1990"></div>
1938 <div title="1995"></div>
1939 <div title="2000"></div>
1940 <div title="2005"></div>
1941 <div title="2010"></div>
1942 <div title="2015"></div>
1943 <div title="2020"></div>
1944 </div>
1945 <table class="projects">
1946 <thead>
1947 <tr>
1948 <th>Years</th>
1949 <th>Product</th>
1950 <th>Roles</th>
1951 </tr>
1952 </thead>
1953 <tbody>
1954 <tr><th></th><td class="employee"><?php employee_area ("mid1986", "mid1990");?></td><td></td></tr>
1955 <tr><th>1990</th><td><?php project_line ("Checkers", "lead-developer", "mid1989", "year1990"); ?></td><td>Lead developer</td></tr>
1956 </tbody>
1957 </table>
1958 </div>
1959 </div>
1960
1961 <h3>Details</h3>
1962 <div class="grid projects">
1963 <div>
1964 <h3 id="Checkers">Checkers</h3>
1965 <h4><time datetime="1989-10">Oct 1989</time>—<time datetime="1989-12">Dec 1989</time></h4>
1966 <ul class="details">
1967 <li class="skills">Lead Developer</li>
1968 <li class="technologies">Apple Basic</li>
1969 <li class="description">Designed and built a two-player checkers game in Apple Basic with 16-color, 2D graphices on the Apple IIE with a rudimentary computer opponent (capable of playing only a few moves).</li>
1970 </ul>
1971 </div>
1972 </div>
1973 </div>
1974 </div>
1975 </section>
1976 <?php } ?>
1977 </div>
1978 </div>
1979 <?php
1980 $Page->finish_display ();
1981 ?>