-
Notifications
You must be signed in to change notification settings - Fork 0
/
index3.html
1063 lines (704 loc) · 36.9 KB
/
index3.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html class="no-js" lang="en">
<head>
<!-- meta data -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!--font-family-->
<link href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&subset=devanagari,latin-ext" rel="stylesheet">
<!-- title of site -->
<title>David Mossakowski</title>
<!-- For favicon png -->
<link rel="shortcut icon" type="image/icon" href="assets/images/favicon.png"/>
<!--font-awesome.min.css-->
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<!--flat icon css-->
<link rel="stylesheet" href="assets/css/flaticon.css">
<!--animate.css-->
<link rel="stylesheet" href="assets/css/animate.css">
<!--owl.carousel.css-->
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/owl.theme.default.min.css">
<!--bootstrap.min.css-->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- bootsnav -->
<link rel="stylesheet" href="assets/css/bootsnav.css" >
<!--style.css-->
<link rel="stylesheet" href="assets/css/style.css">
<!--responsive.css-->
<link rel="stylesheet" href="assets/css/responsive.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- top-area Start -->
<header class="top-area">
<div class="header-area">
<!-- Start Navigation -->
<nav class="navbar navbar-default bootsnav navbar-fixed dark no-background">
<div class="container">
<!-- Start Header Navigation -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-menu">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand" href="index.html">david mossakowski</a>
</div><!--/.navbar-header-->
<!-- End Header Navigation -->
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse menu-ui-design" id="navbar-menu">
<ul class="nav navbar-nav navbar-right" data-in="fadeInDown" data-out="fadeOutUp">
<li class=" smooth-menu active"></li>
<li><img src="assets/images/me.jpg" alt="profile_image" width="77"></li>
<li><img src="assets/images/me-vtt-casque.jpg" alt="profile_image" width="80" height="100"></li>
<li ><a href="index.html">code</a></li>
<li class="smooth-menu"><a href="#about">about</a></li>
<li class="smooth-menu"><a href="#experience">experience</a></li>
<li class="smooth-menu"><a href="#portfolio">links</a></li>
<li class="smooth-menu"><a href="#contact">contact</a></li>
</ul><!--/.nav -->
</div><!-- /.navbar-collapse -->
</div><!--/.container-->
</nav><!--/nav-->
<!-- End Navigation -->
</div><!--/.header-area-->
<div class="clearfix"></div>
</header><!-- /.top-area-->
<!-- top-area End -->
<!--welcome-hero start -->
<section id="welcome-hero" class="welcome-hero">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="header-text">
<h2>hi<span>,</span> i<span>'</span>m david <br> <span>.</span> </h2>
<p>I code, climb, bike</p>
<!--a href="assets/download/browney.txt" download>download resume</a-->
</div><!--/.header-text-->
</div><!--/.col-->
</div><!-- /.row-->
</div><!-- /.container-->
</section><!--/.welcome-hero-->
<!--welcome-hero end -->
<!--about start -->
<section id="about" class="about">
<div class="section-heading text-center">
<h2>about me</h2>
</div>
<div class="container">
<div class="about-content">
<div class="row">
<div class="col-sm-6">
<div class="single-about-txt">
<h3>
Software development professional with 25 years of experience in design, development, implementation and management. Extensive experience in managing local and remote teams. Business knowledge of US Capital Markets (Equities, Fixed Income and Foreign Exchange) and lately the Supply Chain and Category Management space.
</h3>
<p>
With a breadth of experience and strong analytical skills I can provide and manage high quality solutions that will provide the most value to your company. I’m a passionate, optimistic and motivational leader with a vision. I love to work with business on advancing common goals.
<br><br>
Java Community Process Member (JSR 107: Java Caching). Enthusiastic and self-driven technologist delivering the highest quality solutions with an eye on creative and penchant for precision.
</p>
<div class="row">
<div class="col-sm-5">
<div class="single-about-add-info">
<h3>email</h3>
<p>dmossakowski@gmail.com</p>
</div>
</div>
<div class="col-sm-5">
<div class="single-about-add-info">
<h3>website</h3>
<p>https://davidmossakowski.com</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-offset-1 col-sm-5">
<div class="single-about-img">
<img src="assets/images/me.jpg" alt="profile_image">
<div class="about-list-icon">
<ul>
<li>
<a href="#">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a href="https://hackernoon.com/u/davidski">
<i class="fa fa-clock-o" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<li>
<a href="https://www.linkedin.com/in/davidmossakowski/">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</li><!-- / li -->
<!--li>
<a href="#">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
</li>--<!-- / li -->
</ul><!-- / ul -->
</div><!-- /.about-list-icon -->
</div>
</div>
</div>
</div>
</div>
</section><!--/.about-->
<!--about end -->
<!--experience start -->
<section id="experience" class="experience">
<div class="section-heading text-center">
<h2>experience</h2>
</div>
<div class="container">
<div class="experience-content">
<div class="main-timeline">
<ul>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
<h2>August 2018 - Present </h2>
<h3>R&D Technology Senior Project Manager</h3>
<br><br>
<img src="assets/images/symphonyretailailogo.png" width="300">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
<h4 class="title">
Symphony Retail AI
</h4>
<h5>Paris, France</h5>
<p class="description">
Symphony Retail AI is a leading provider of software for Retailers and CPG Manufacturers with clients ranging from Dollar General in US, Carrefour in Spain, to Intermarche in France. R&D Technology of ten developers anticipates and drives the future of technology needed to best serve our clients. We manage frameworks and provide technical support to product teams.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Spearheaded adoption and migration to Microsoft Azure Devops. This included migration of source code, pull request development workflow, YAML based build scripts and adoption of Agile philosophy with biweekly sprints, estimation and retrospective sessions.
<br><br>
<h3><img src="assets/images/devopslogo.png" width="100"></h3>
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Drove adoption of testing as an integral part of the development process. Implemented automated unit testing using Karma+Jasmine and TestNG and automated functional testing using Katalon. For each pull request we are building and deploying an application and running battery of UI and REST API tests.
<h3><img src="assets/images/katalonlogo.png" width="120">
<img src="assets/images/jasmine-purple-horizontal.svg" width="130">
<img src="assets/images/testnglogo.png" width="50"></h3>
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Implemented full mobile testing pipeline that includes building APK, loading it onto an Android emulator and running Katalon tests through it.
<h3><img src="assets/images/androidlogo.png" width="120"> <img src="assets/images/cordova-logo.png" width="120"> </h3>
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Overhauled server side to use Spring profiles to modify functionality based on various product needs to avoid manual modifications to XML files which was error prone and dreaded by the client support teams. This improved tremendously confidence during upgrades.
</p>
<h3><br><br><img src="assets/images/springlogo.png" width="120"> </h3>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li><br><br>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
<h2>January 2014 - March 2018</h2>
<h3>Post Trade Team Lead</h3>
<br><br>
<img src="assets/images/trueex-logo.png" width="160">
<br><br>
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
<h4 class="title">
trueEx
</h4>
<h5>New York, NY</h5>
<p class="description">
trueEX is a global, electronic, CFTC-regulated exchange for interest rate swaps. The Post Trade team of eight developers was responsible for:</p>
<span><i class="fa fa-circle-o" aria-hidden="true"></i></span>
<p class="description">
<i class="fa fa-angle-right" aria-hidden="true"></i> real-time processing of trades generated both on and off the exchange (from UI and FIX) during London and New York trading sessions
<br><i class="fa fa-angle-right" aria-hidden="true"></i>increasing product coverage (FRA, Swaptions, MAC) and business functionality (two sided price, batch clearing, ANNA ISIN integration mandated by MiFID II)
<br><i class="fa fa-angle-right" aria-hidden="true"></i> increasing capabilities of the Regulatory team to do trade surveillance using Nasdaq SMARTS application by adding context to transactions (market data, participant CRM details)
<br><i class="fa fa-angle-right" aria-hidden="true"></i> providing data for company dashboards which were used by sales and the executive teams and for billing purposes (to calculate charges for trades done on platform and discounts for customers streaming prices)
<br><br>
<img src="assets/images/FIX-logo-fullcolor_small.jpg" width="150">
<img src="assets/images/cftclogo.png" width="150">
<img src="assets/images/ihsmarkit.svg" width="150">
<img src="assets/images/nasdaq-logo.png" width="150">
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
The real time trade processing included number of interfaces with external parties:
clearing the trade at a clearing house (LCH or CME) using messages containing FpML (Financial products Markup Language) transmitted over Websphere MQ
reporting trade to DTCC (a Securities Data Repository) by transmitting FpML using Websphere MQ (with security exit implemented)
notifying the parties of the trade for straight-through processing over Markitwire native library using SWBML or SCML for the dealer and cleared flows respectively
notifying the parties of the trade over FIX (either directly through ‘dropcopy’ or through Block Rock’s Aladdin offering)
generating and sending trade confirmation emails (PDFs)<br><img src="assets/images/logo-rabbitmq.svg" width="150">
<img src="assets/images/dtcc.jpeg" width="110">
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div>
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Developed internal regression testing methodology which compared over 40,000 artifacts generated by the Post Trade system (FpMLs, SWBML, Emails, etc.) with the same artifacts generated using previous version of the application. The resulting report was reviewed by Product and Onboarding teams to verify all changes going into a release were expected and correct.
Technologies: Java, Python, Groovy, RabbitMQ, PostgreSQL, Git, Jenkins, Erlang, FIX, FpML, Aha, Grafana, Zookeeper, REST, JSON schema, Jetty, Websockets, Apache ActiveMQ, Sublime. <br><br><img src="assets/images/fpmllogo.jpeg" width="150">
<img src="assets/images/postgresql-logo.png" width="150">
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li><br><br>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
<h2>September 2004 - January 2014</h2>
<h3>VP in Capital Markets</h3>
<br><br>
<img src="assets/images/citi-logo.png" width="120">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
<h4 class="title">
Citigroup
</h4>
<h5>New York, NY</h5>
<p class="description">
The 10 years at Citi in Capital Markets took me from Senior Software Engineer working
in Fixed Income, through posts at core technology and finally in Foreign Exchange.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Developed proprietary FX trading algorithms employing various strategies (quickness, volume, price). Built a tool using kdb+ data to display the life of an order as a time series to spot additional trading opportunities and aid in debugging existing strategies.<br>
<img src="assets/images/kx-logo.svg" width="50">
<img src="assets/images/matlab-logo.jpg" width="120">
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Merged Fixed Income and FX KDB platforms and developed common KDB feed handler platform. The feed handlers were easily configured using q schema files used for TICK database. The handlers had variety of built-in parsers to handle FIX messages, de-normalize CME multi-depth messages, etc. Proficient in q programming language to perform variety of statistical analysis (through KDB Studio or MATLAB) as well as to develop distributed system (data listeners and transformers feeding trading algorithms).<br>
<img src="assets/images/kx-logo.svg" width="50">
<img src="assets/images/cme-logo.png" width="120">
<img src="assets/images/matlab-logo.jpg" width="120">
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Built a global distributed cache for FX applications (based on GemFire) containing over 100 caches with more than 4 million pieces of data spanning 6 data centers globally. The system is accessible over generic caching API (CCache; based on JSR107). Pluggable transports allow for using native GemFire connections as well as JMS (over Tibco EMS) or plain sockets. Propagation time from North America to Asia is <1s. HTTP REST and JMX interfaces allow for browsing, administering and monitoring the cache. This system is used by nearly all FX applications as it provides currency, calendar, warehouse routing, customer lookup and # branch functionality. The CCache library is loaded in hundreds of processes and provides in-process calculations based on pushed base data (currency calendars, existing warehouses, etc.). Depending on size, some data is lazy loaded while other fully preloaded.
<br>
<img src="assets/images/gemfire-logo.png" width="70">
<img src="assets/images/vmware-logo.png" width="100">
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Replaced custom Tibco EMS setup that was causing numerous outages with a new federated approach using standard packages sourced from Citi’s Engineering Team and using broker management application developed by Equities team (included change management process and rollback). This infrastructure was then handed off to Production Support team, which further reduced cost. The development teams were educated on the new process and given ownership and responsibility for their brokers. Number of instances grew from 4 to 26 (18 in North America, 6 in Europe and 2 in Asia). This process also upgraded all instances from version 5.3 to 6.1 as well as included remediation of various issues found by external audit. <br>
<img src="assets/images/tibco-logo.png" width="100">
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
<h2>July 1996 - April 2004</h2>
<h3>Senior Software Engineer</h3>
<br><br>
<img src="assets/images/instinet-logo.jpg" width="220">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle" aria-hidden="true"></i></span>
<h4 class="title">
Instinet Corporation,
</h4>
<h5>New York, NY</h5>
<p class="description">
Instinet was the dominant electronic communication network in the early 90s operating in over 20
world markets and integral tool for traders on both 'buy' and 'sell' sides. My career started
as an intern and after graduating from Pace University I accepted a position in Trading
Technology.
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Development lead for Targeted Orders (Instinet’s first application in the ‘block trading’ initiative). Targeted Orders are large orders that are advertised to parties selected based on filters created by the traders. Filters include criteria such as type of client (institutional, fund, etc.), holdings and other. This facility included a web application for creation of filters and viewing execution reports, middle-ware connecting to trading system and evaluator servers for target-client selection. Visited clients to seek feedback and recruit for beta testing. Trained support personnel.
<br>
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Designed and developed ‘BookMark’ which was Instinet's web-based full book delivery product and answer to a Island’s (fast growing competitor) similar offering. The data was tunneled over HTTP to Java applet. Self-healing middleware managed interaction between the client and a number of Book Servers. Libraries from this product were used in Instinet's Newport product (full featured Execution Management System).
<br>
</p><a href="https://uspto.report/TM/76073065">Trademark filed with USPTO</a>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
<li>
<div class="single-timeline-box fix">
<div class="row">
<div class="col-md-5">
<div class="experience-time text-right">
</div><!--/.experience-time-->
</div><!--/.col-->
<div class="col-md-offset-1 col-md-5">
<div class="timeline">
<div class="timeline-content">
<span><i class="fa fa-circle-thin" aria-hidden="true"></i></span>
<p class="description">
Lead developer for Server Management facility to manage and monitor server applications. The client console communicated with middleware (Hub) which acted as a multiplexer to hundreds of server processes that implemented a custom protocol. The console included template view of server's events, list of available commands and general health of applications. Hubs combined into domains to support multiple environments (development, user acceptance testing and production).
<br>
</p>
</div><!--/.timeline-content-->
</div><!--/.timeline-->
</div><!--/.col-->
</div>
</div><!--/.single-timeline-box-->
</li>
</ul>
</div><!--.main-timeline-->
</div><!--.experience-content-->
</div>
</section><!--/.experience-->
<!--portfolio start -->
<section id="portfolio" class="portfolio">
<div class="portfolio-details">
<div class="section-heading text-center">
<h2>outside links</h2>
</div>
<div class="container">
<div class="portfolio-content">
<div class="isotope">
<div class="row">
<div class="col-sm-4">
<div class="item">
<img src="assets/images/hacker1-preview.png" alt="portfolio image"/>
<div class="isotope-overlay">
<a href="https://hackernoon.com/spotify-audio-features-time-series-in-additive-spotify-analyzer-lp1q34vh">
Hacker noon article 1
</a>
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
<div class="item">
<img src="assets/images/hacker2-preview.png" alt="portfolio image"/>
<div class="isotope-overlay">
<a href="https://hackernoon.com/visualizing-the-data-spotify-data-for-favorite-artists-over-time-3p9r35h1">
Hacker noon article 2
</a>
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
</div><!-- /.col -->
<div class="col-sm-4">
<div class="item">
<img src="assets/images/analyzer2-preview.png" alt="portfolio image"/>
<div class="isotope-overlay">
<a href="https://spotify.onrender.com/">
Spotify Additive Analyzer
</a>
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
</div><!-- /.col -->
<div class="col-sm-4">
<div class="item">
<img src="assets/images/insta1-preview.png" alt="portfolio image"/>
<div class="isotope-overlay">
<a href="https://www.instagram.com/davidmossakowski/">
Instagram
</a>
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
</div><!-- /.col -->
</div><!-- /.row -->
</div><!--/.isotope-->
</div><!--/.gallery-content-->
</div><!--/.container-->
</div><!--/.portfolio-details-->
</section><!--/.portfolio-->
<!--portfolio end -->
\
<!--contact start -->
<section id="contact" class="contact">
<div class="section-heading text-center">
<h2>contact me</h2>
</div>
<div class="container">
<div class="isotope">
<div class="row">
<div class="col-lg-offset-2 col-md-8">
<div class="item">
<img src="assets/images/me-lunette.jpg" alt="portfolio image"/>
<div class="isotope-overlay">
<a href="https://www.linkedin.com/in/davidmossakowski/">
linked <i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</div><!-- /.isotope-overlay -->
</div><!-- /.item -->
</div>
</div>
</div>
</div>