-
Notifications
You must be signed in to change notification settings - Fork 1
/
portfolio.html
1350 lines (1071 loc) · 67.8 KB
/
portfolio.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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="apple-touch-icon" sizes="57x57" href="images/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="images/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="images/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="images/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="images/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="images/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png">
<link rel="manifest" href="images/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="images/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<title>Portfolio</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/website.js"></script>
<script type="text/javascript" src="//cdn.jsdelivr.net/npm/[email protected]/slick/slick.min.js"></script>
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/[email protected]/slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/[email protected]/slick/slick-theme.css"/>
</head>
<body id="portfolio-page" class="">
<!--start header-->
<header>
<div class="logo">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="70.108 -56.117 371.775 299.871" class="logo-centered">
<g class="logomark">
<path d="M195.023,98.336c-4.703,0-8.66-1.491-11.869-4.472c-3.21-2.984-4.815-7.284-4.815-12.899V-38.743
c0-5.615,1.605-9.917,4.815-12.898c3.209-2.981,7.166-4.472,11.869-4.472h18.747v17.888h-11.868V80.448h11.868v17.889H195.023z"></path>
<path d="M236.567,98.336v15.492h23.026v20.229H238.29c-8.465,0-14.67-2.15-18.615-6.456c-3.947-4.303-5.917-10.112-5.917-17.43
V98.336H236.567z"></path>
<path d="M229.597,0.158c4.803,0,8.707,3.907,8.707,8.708c0,4.801-3.904,8.708-8.707,8.708s-8.709-3.907-8.709-8.708
C220.888,4.066,224.793,0.158,229.597,0.158"></path>
<rect x="218.711" y="-56.113" transform="matrix(-1 -0.0022 0.0022 -1 441.4647 -93.8768)" width="3.937" height="17.856"></path>
<rect x="227.627" y="-56.113" transform="matrix(-1 -0.002 0.002 -1 459.2836 -93.9129)" width="3.937" height="17.856"></path>
<path d="M304.783,18.1c2.176-1.313,4.066-2.953,5.666-4.894c1.613-1.955,2.902-4.159,3.871-6.627
c0.984-2.467,1.469-5.077,1.469-7.819v-36.991h11.863v-17.885H308.9c-4.697,0-8.646,1.496-11.861,4.475
c-3.215,2.977-4.814,7.282-4.814,12.898v34.745c0,5.04-1.576,8.857-4.725,11.442c-1.588,1.288-3.385,2.259-5.381,2.901
c-2.008-0.642-3.803-1.602-5.393-2.901c-3.15-2.585-4.736-6.402-4.736-11.442v-34.745c0-5.616-1.602-9.92-4.814-12.898
c-3.205-2.978-7.166-4.475-11.863-4.475h-18.75v17.888h11.873v36.991c0,2.742,0.487,5.353,1.458,7.819
c0.971,2.468,2.268,4.672,3.87,6.627c1.602,1.941,3.504,3.582,5.682,4.894c2.178,1.325,4.463,2.204,6.877,2.663v0.696
c-2.414,0.457-4.699,1.351-6.877,2.663s-4.08,2.952-5.682,4.894c-1.601,1.956-2.899,4.158-3.87,6.626
c-0.971,2.468-1.458,5.08-1.458,7.822v16.088l-8.013-1.834c-1.415-0.329-2.819,0.559-3.144,1.972
c-0.323,1.414,0.56,2.82,1.973,3.144l9.184,2.103v15.516h-11.873v17.883h18.75c4.697,0,8.658-1.492,11.863-4.473
c3.213-2.979,4.814-7.283,4.814-12.898V46.048c0-5.039,1.586-8.857,4.736-11.44c1.59-1.301,3.385-2.271,5.393-2.914
c1.996,0.656,3.793,1.628,5.381,2.914c3.148,2.583,4.725,6.402,4.725,11.44v34.918c0,5.615,1.6,9.92,4.814,12.898
c3.215,2.978,7.164,4.473,11.861,4.473h18.752V80.454h-11.863v-36.99c0-2.742-0.484-5.354-1.469-7.822
c-0.969-2.468-2.258-4.671-3.871-6.626c-1.598-1.941-3.49-3.582-5.666-4.894c-2.178-1.312-4.473-2.204-6.875-2.663v-0.696
C300.31,20.305,302.605,19.426,304.783,18.1z"></path>
</g>
<g id="wordmark">
<path d="M113.608,211.49h-0.348c-1.316,2.759-3.52,5.188-6.612,7.295c-3.094,2.105-7.116,3.158-12.064,3.158
c-7.734,0-13.746-2.608-18.038-7.83c-4.292-5.22-6.438-12.894-6.438-23.024c0-10.13,2.146-17.806,6.438-23.026
c4.292-5.22,10.304-7.83,18.038-7.83c4.948,0,8.97,1.044,12.064,3.133c3.092,2.089,5.296,4.563,6.612,7.425h0.348v-9.164h4.06
v82.128h-4.06V211.49z M95.165,218.348c2.474,0,4.832-0.348,7.076-1.046c2.242-0.696,4.194-1.703,5.858-3.021
c1.662-1.317,2.996-2.888,4.002-4.709c1.004-1.821,1.508-3.854,1.508-6.104v-24.878c0-2.168-0.504-4.163-1.508-5.985
c-1.006-1.82-2.34-3.371-4.002-4.649c-1.664-1.278-3.616-2.286-5.858-3.021c-2.244-0.735-4.602-1.104-7.076-1.104
c-6.574,0-11.658,2.15-15.254,6.452c-3.596,4.301-5.394,10.132-5.394,17.493v6.742c0,7.362,1.798,13.176,5.394,17.438
C83.507,216.218,88.592,218.348,95.165,218.348z"></path>
<path d="M152.12,221.943c-7.733,0-13.823-2.628-18.27-7.888c-4.448-5.258-6.67-12.914-6.67-22.968
c0-10.13,2.222-17.806,6.67-23.026c4.446-5.22,10.536-7.83,18.27-7.83c7.732,0,13.822,2.61,18.271,7.83
c4.445,5.222,6.67,12.896,6.67,23.026c0,10.054-2.225,17.71-6.67,22.968C165.941,219.315,159.852,221.943,152.12,221.943z
M152.12,218.348c6.572,0,11.639-2.146,15.196-6.438c3.556-4.292,5.336-10.188,5.336-17.69v-6.264
c0-7.578-1.78-13.494-5.336-17.748c-3.558-4.252-8.624-6.38-15.196-6.38c-6.573,0-11.64,2.128-15.195,6.38
c-3.559,4.254-5.337,10.17-5.337,17.748v6.264c0,7.502,1.778,13.398,5.337,17.69C140.479,216.202,145.545,218.348,152.12,218.348z
"></path>
<path d="M206.522,221.943c-7.732,0-13.822-2.628-18.27-7.888c-4.448-5.258-6.67-12.914-6.67-22.968
c0-10.13,2.222-17.806,6.67-23.026c4.446-5.22,10.536-7.83,18.27-7.83c7.732,0,13.822,2.61,18.271,7.83
c4.445,5.222,6.67,12.896,6.67,23.026c0,10.054-2.225,17.71-6.67,22.968C220.344,219.315,214.254,221.943,206.522,221.943z
M206.522,218.348c6.572,0,11.64-2.146,15.197-6.438c3.555-4.292,5.336-10.188,5.336-17.69v-6.264
c0-7.578-1.781-13.494-5.336-17.748c-3.559-4.252-8.625-6.38-15.197-6.38s-11.639,2.128-15.194,6.38
c-3.56,4.254-5.337,10.17-5.337,17.748v6.264c0,7.502,1.777,13.398,5.337,17.69C194.883,216.202,199.95,218.348,206.522,218.348z"
></path>
<path d="M231.809,220.552l21.924-29.696l-21.227-29.23h4.756l18.676,25.868h0.232l18.791-25.868h4.641l-21.229,29l21.809,29.928
h-4.756L256.17,193.99h-0.232l-19.488,26.563L231.809,220.552L231.809,220.552z"></path>
<path d="M324.03,211.49h-0.35c-1.314,2.759-3.52,5.188-6.611,7.295c-3.094,2.105-7.115,3.158-12.063,3.158
c-7.734,0-13.746-2.608-18.039-7.83c-4.291-5.22-6.438-12.894-6.438-23.024c0-10.13,2.146-17.806,6.438-23.026
c4.293-5.22,10.305-7.83,18.039-7.83c4.947,0,8.969,1.044,12.063,3.133s5.297,4.563,6.611,7.425h0.35v-36.077h4.061v85.84h-4.061
V211.49z M305.584,218.348c2.475,0,4.832-0.348,7.076-1.046c2.242-0.696,4.193-1.703,5.857-3.021
c1.662-1.317,2.996-2.888,4.002-4.709c1.004-1.821,1.508-3.854,1.508-6.104v-24.878c0-2.168-0.504-4.163-1.508-5.985
c-1.006-1.82-2.34-3.371-4.002-4.649c-1.664-1.278-3.615-2.286-5.857-3.021c-2.244-0.735-4.604-1.104-7.076-1.104
c-6.574,0-11.658,2.15-15.254,6.452c-3.596,4.301-5.395,10.132-5.395,17.493v6.742c0,7.362,1.799,13.176,5.395,17.438
C293.926,216.218,299.01,218.348,305.584,218.348z"></path>
<path d="M362.54,221.943c-7.734,0-13.824-2.628-18.271-7.888c-4.447-5.258-6.67-12.914-6.67-22.968
c0-10.13,2.223-17.806,6.67-23.026c4.447-5.22,10.537-7.83,18.271-7.83c7.73,0,13.82,2.61,18.27,7.83
c4.445,5.222,6.67,12.896,6.67,23.026c0,10.054-2.225,17.71-6.67,22.968C376.362,219.315,370.272,221.943,362.54,221.943z
M362.54,218.348c6.57,0,11.639-2.146,15.195-6.438s5.336-10.188,5.336-17.69v-6.264c0-7.578-1.779-13.494-5.336-17.748
c-3.559-4.252-8.625-6.38-15.195-6.38c-6.574,0-11.641,2.128-15.195,6.38c-3.561,4.254-5.338,10.17-5.338,17.748v6.264
c0,7.502,1.777,13.398,5.338,17.69C350.899,216.202,355.965,218.348,362.54,218.348z"></path>
<path d="M416.942,221.943c-7.732,0-13.822-2.628-18.27-7.888c-4.447-5.258-6.67-12.914-6.67-22.968
c0-10.13,2.223-17.806,6.67-23.026c4.445-5.22,10.537-7.83,18.27-7.83s13.822,2.61,18.271,7.83
c4.445,5.222,6.67,12.896,6.67,23.026c0,10.054-2.225,17.71-6.67,22.968C430.764,219.315,424.674,221.943,416.942,221.943z
M416.942,218.348c6.572,0,11.641-2.146,15.197-6.438c3.555-4.292,5.336-10.188,5.336-17.69v-6.264
c0-7.578-1.781-13.494-5.336-17.748c-3.559-4.252-8.625-6.38-15.197-6.38s-11.639,2.128-15.193,6.38
c-3.561,4.254-5.338,10.17-5.338,17.748v6.264c0,7.502,1.777,13.398,5.338,17.69C405.303,216.202,410.37,218.348,416.942,218.348z
"></path>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 511.992 145.025" class="logo-left">
<g class="logomark">
<path d="M12.715,117.834c-3.584,0-6.6-1.137-9.045-3.408c-2.447-2.273-3.67-5.551-3.67-9.83V13.367c0-4.279,1.223-7.558,3.67-9.83
c2.445-2.271,5.461-3.408,9.045-3.408h14.287v13.633h-9.045v90.439h9.045v13.633H12.715z"/>
<path d="M44.375,117.834v11.807h17.549v15.416H45.688c-6.451,0-11.18-1.639-14.186-4.92c-3.008-3.279-4.51-7.707-4.51-13.283v-9.02
H44.375z"/>
<path d="M39.063,43.014c3.66,0,6.635,2.978,6.635,6.636c0,3.659-2.975,6.637-6.635,6.637s-6.637-2.978-6.637-6.637
C32.426,45.991,35.402,43.014,39.063,43.014"/>
<rect x="30.768" y="0.13" transform="matrix(-1 -0.0023 0.0023 -1 64.5193 13.9412)" width="3" height="13.608"/>
<rect x="37.562" y="0.13" transform="matrix(-1 -0.002 0.002 -1 78.1099 13.9449)" width="3" height="13.608"/>
<path d="M96.362,56.687c1.658-1,3.099-2.25,4.318-3.729c1.23-1.49,2.211-3.17,2.951-5.051c0.75-1.88,1.119-3.869,1.119-5.959
v-28.19h9.041V0.127H99.5c-3.58,0-6.59,1.14-9.039,3.41c-2.451,2.269-3.67,5.55-3.67,9.83v26.479c0,3.841-1.202,6.75-3.6,8.72
c-1.211,0.981-2.58,1.722-4.102,2.211c-1.529-0.489-2.898-1.221-4.109-2.211c-2.4-1.97-3.609-4.879-3.609-8.72V13.367
c0-4.28-1.221-7.561-3.67-9.83c-2.441-2.27-5.461-3.41-9.041-3.41H44.371v13.632h9.049v28.19c0,2.09,0.371,4.079,1.111,5.959
c0.74,1.881,1.728,3.561,2.949,5.051c1.221,1.479,2.67,2.729,4.33,3.729c1.66,1.01,3.4,1.68,5.24,2.029v0.53
c-1.84,0.349-3.58,1.029-5.24,2.029s-3.109,2.25-4.33,3.729c-1.22,1.49-2.209,3.169-2.949,5.05
c-0.74,1.881-1.111,3.871-1.111,5.961v12.261l-6.106-1.397c-1.078-0.251-2.149,0.426-2.396,1.503
c-0.246,1.077,0.427,2.149,1.503,2.396l6.999,1.603v11.824h-9.049v13.629H58.66c3.58,0,6.6-1.138,9.041-3.408
c2.449-2.271,3.67-5.551,3.67-9.83V77.986c0-3.84,1.209-6.75,3.609-8.719c1.211-0.991,2.58-1.73,4.109-2.221
c1.522,0.5,2.891,1.241,4.102,2.221c2.399,1.969,3.6,4.879,3.6,8.719v26.611c0,4.279,1.219,7.56,3.67,9.83
c2.449,2.269,5.459,3.408,9.039,3.408h14.291v-13.629h-9.041V76.017c0-2.09-0.369-4.08-1.119-5.961
c-0.74-1.881-1.721-3.56-2.951-5.05c-1.218-1.479-2.66-2.729-4.318-3.729c-1.66-1-3.41-1.68-5.24-2.029v-0.53
C92.952,58.367,94.702,57.698,96.362,56.687z"/>
</g>
<g class="wordmark">
<path d="M183.717,108.99h-0.348c-1.316,2.759-3.52,5.188-6.612,7.295c-3.094,2.105-7.116,3.158-12.064,3.158
c-7.734,0-13.746-2.608-18.038-7.83c-4.292-5.22-6.438-12.894-6.438-23.024c0-10.13,2.146-17.806,6.438-23.026
c4.292-5.22,10.304-7.83,18.038-7.83c4.948,0,8.97,1.044,12.064,3.133c3.092,2.089,5.296,4.563,6.612,7.425h0.348v-9.164h4.06
v82.128h-4.06V108.99z M165.273,115.848c2.474,0,4.832-0.348,7.076-1.046c2.242-0.696,4.194-1.703,5.858-3.021
c1.662-1.317,2.996-2.888,4.002-4.709c1.004-1.821,1.508-3.854,1.508-6.104V76.091c0-2.168-0.504-4.163-1.508-5.985
c-1.006-1.82-2.34-3.371-4.002-4.649c-1.664-1.278-3.616-2.286-5.858-3.021c-2.244-0.735-4.602-1.104-7.076-1.104
c-6.574,0-11.658,2.15-15.254,6.452c-3.596,4.301-5.394,10.132-5.394,17.493v6.742c0,7.362,1.798,13.176,5.394,17.438
C153.615,113.718,158.7,115.848,165.273,115.848z"/>
<path d="M222.228,119.443c-7.733,0-13.823-2.628-18.27-7.888c-4.448-5.258-6.67-12.914-6.67-22.968
c0-10.13,2.222-17.806,6.67-23.026c4.446-5.22,10.536-7.83,18.27-7.83c7.732,0,13.822,2.61,18.271,7.83
c4.445,5.222,6.67,12.896,6.67,23.026c0,10.054-2.225,17.71-6.67,22.968C236.05,116.815,229.96,119.443,222.228,119.443z
M222.228,115.848c6.572,0,11.639-2.146,15.196-6.438c3.556-4.292,5.336-10.188,5.336-17.69v-6.264
c0-7.578-1.78-13.494-5.336-17.748c-3.558-4.252-8.624-6.38-15.196-6.38c-6.573,0-11.64,2.128-15.195,6.38
c-3.559,4.254-5.337,10.17-5.337,17.748v6.264c0,7.502,1.778,13.398,5.337,17.69
C210.588,113.702,215.654,115.848,222.228,115.848z"/>
<path d="M276.63,119.443c-7.732,0-13.822-2.628-18.27-7.888c-4.448-5.258-6.67-12.914-6.67-22.968
c0-10.13,2.222-17.806,6.67-23.026c4.446-5.22,10.536-7.83,18.27-7.83c7.732,0,13.822,2.61,18.271,7.83
c4.445,5.222,6.67,12.896,6.67,23.026c0,10.054-2.225,17.71-6.67,22.968C290.453,116.815,284.363,119.443,276.63,119.443z
M276.63,115.848c6.572,0,11.64-2.146,15.197-6.438c3.555-4.292,5.336-10.188,5.336-17.69v-6.264
c0-7.578-1.781-13.494-5.336-17.748c-3.559-4.252-8.625-6.38-15.197-6.38s-11.639,2.128-15.194,6.38
c-3.56,4.254-5.337,10.17-5.337,17.748v6.264c0,7.502,1.777,13.398,5.337,17.69C264.992,113.702,270.058,115.848,276.63,115.848z
"/>
<path d="M301.917,118.052l21.924-29.696l-21.227-29.23h4.756l18.676,25.868h0.232l18.791-25.868h4.641l-21.229,29l21.809,29.928
h-4.756L326.279,91.49h-0.232l-19.488,26.563L301.917,118.052L301.917,118.052z"/>
<path d="M394.138,108.99h-0.35c-1.314,2.759-3.52,5.188-6.611,7.295c-3.094,2.105-7.115,3.158-12.063,3.158
c-7.734,0-13.746-2.608-18.039-7.83c-4.291-5.22-6.438-12.894-6.438-23.024c0-10.13,2.146-17.806,6.438-23.026
c4.293-5.22,10.305-7.83,18.039-7.83c4.947,0,8.969,1.044,12.063,3.133s5.297,4.563,6.611,7.425h0.35V32.212h4.061v85.84h-4.061
V108.99z M375.693,115.848c2.475,0,4.832-0.348,7.076-1.046c2.242-0.696,4.193-1.703,5.857-3.021
c1.662-1.317,2.996-2.888,4.002-4.709c1.004-1.821,1.508-3.854,1.508-6.104V76.091c0-2.168-0.504-4.163-1.508-5.985
c-1.006-1.82-2.34-3.371-4.002-4.649c-1.664-1.278-3.615-2.286-5.857-3.021c-2.244-0.735-4.604-1.104-7.076-1.104
c-6.574,0-11.658,2.15-15.254,6.452c-3.596,4.301-5.395,10.132-5.395,17.493v6.742c0,7.362,1.799,13.176,5.395,17.438
C364.035,113.718,369.119,115.848,375.693,115.848z"/>
<path d="M432.648,119.443c-7.734,0-13.824-2.628-18.271-7.888c-4.447-5.258-6.67-12.914-6.67-22.968
c0-10.13,2.223-17.806,6.67-23.026c4.447-5.22,10.537-7.83,18.271-7.83c7.73,0,13.82,2.61,18.27,7.83
c4.445,5.222,6.67,12.896,6.67,23.026c0,10.054-2.225,17.71-6.67,22.968C446.47,116.815,440.38,119.443,432.648,119.443z
M432.648,115.848c6.57,0,11.639-2.146,15.195-6.438s5.336-10.188,5.336-17.69v-6.264c0-7.578-1.779-13.494-5.336-17.748
c-3.559-4.252-8.625-6.38-15.195-6.38c-6.574,0-11.641,2.128-15.195,6.38c-3.561,4.254-5.338,10.17-5.338,17.748v6.264
c0,7.502,1.777,13.398,5.338,17.69C421.007,113.702,426.074,115.848,432.648,115.848z"/>
<path d="M487.05,119.443c-7.732,0-13.822-2.628-18.27-7.888c-4.447-5.258-6.67-12.914-6.67-22.968
c0-10.13,2.223-17.806,6.67-23.026c4.445-5.22,10.537-7.83,18.27-7.83s13.822,2.61,18.271,7.83
c4.445,5.222,6.67,12.896,6.67,23.026c0,10.054-2.225,17.71-6.67,22.968C500.873,116.815,494.783,119.443,487.05,119.443z
M487.05,115.848c6.572,0,11.641-2.146,15.197-6.438c3.555-4.292,5.336-10.188,5.336-17.69v-6.264
c0-7.578-1.781-13.494-5.336-17.748c-3.559-4.252-8.625-6.38-15.197-6.38s-11.639,2.128-15.193,6.38
c-3.561,4.254-5.338,10.17-5.338,17.748v6.264c0,7.502,1.777,13.398,5.338,17.69C475.412,113.702,480.478,115.848,487.05,115.848
z"/>
</g>
</svg>
</div>
<input type="checkbox" class="nav-toggle" id="nav-toggle">
<nav>
<ul>
<li>
<a href="portfolio.html">In Action</a>
<ul>
<li><a href="portfolio.html">Real-life examples</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
<li><a href="https://qooxdoo.org/qxl.playground" target="_blank">Interactive Playground</a></li>
<li><a href="https://qooxdoo.org/qxl.demobrowser" target="_blank">Demos</a></li>
<li><a href="https://qooxdoo.org/qxl.widgetbrowser" target="_blank">Widget Browser</a></li>
<li><a href="https://qooxdoo.org/qxl.packagebrowser/#" target="_blank">Add-on Packages</a></li>
<li><a href="https://qooxdoo.org/qxl.tutorial/#" target="_blank">Live tutorial</a></li>
</ul>
</li>
<li>
<a href="http://qooxdoo.org/docs/#/contents">Documentation</a>
<ul>
<li><a href="/docs/#/README?id=getting-started" target="_blank">Getting Started</a></li>
<li><a href="https://qooxdoo.org/qxl.apiviewer/#" target="_blank">API</a></li>
<li><a href="/docs/#/development/" target="_blank">Development</a></li>
<li><a href="/docs/#/communication/" target="_blank">Communication</a></li>
<li><a href="/docs/#/mobile/" target="_blank">Mobile</a></li>
<li><a href="/docs/#/server/" target="_blank">Server</a></li>
<li><a href="https://github.com/qooxdoo" target="_blank">Source Code on GitHub</a></li>
<li><a href="https://github.com/qooxdoo/qooxdoo/issues" target="_blank">Issues</a></li>
</ul>
</li>
<li>
<a href="https://gitter.im/qooxdoo/qooxdoo">Community</a>
<ul>
<li><a href="https://gitter.im/qooxdoo/qooxdoo" target="_blank">Chat room</a></li>
<li><a href="https://stackoverflow.com/questions/tagged/qooxdoo" target="_blank">Stackoverflow</a></li>
<li><a href="https://medium.com/@qooxdoo" target="_blank">Blog</a></li>
<li><a href="https://www.facebook.com/qxdev/" class="facebook" target="_blank">Facebook</a></li>
<li><a href="https://twitter.com/qooxdoo" class="twitter" target="_blank">Twitter</a></li>
</ul>
</li>
<li>
<a href="about.html">About</a>
<ul>
<li><a href="about.html">About Qooxdoo</a></li>
<li><a href="team.html">Meet the team</a></li>
<li><a href="contributions.html">Contributions</a></li>
<li><a href="https://github.com/qooxdoo/qooxdoo/blob/master/LICENSE" target="_blank">License</a></li>
<li><a href="https://qooxdoo.org/status" target="_blank">Build Status</a></li>
</ul>
</li>
</ul>
</nav>
<label for="nav-toggle" class="nav-toggle-label">
<span></span>
</label>
<div class="version"><a href="https://github.com/qooxdoo/qooxdoo">v7.7.0</a></div>
<div class="donations"><a href="/contributions.html">Donate</a></div>
</header>
<div id="header-spacer">
</div>
<!--end header-->
<section class="hero">
<div class="hero-container">
<h1>Powered by Qooxdoo</h1>
<p>Here's a few of the many applications which are...</p>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 189.805 19.388" class=" bracket">
<path d="M0,19.388V18.9c0-2.734,0.834-4.95,2.5-6.65c1.667-1.7,4-2.55,7-2.55h73.885c2.934,0,5.15-0.917,6.65-2.75
c1.5-1.834,2.25-4.15,2.25-6.95h4.887c0,2.8,0.75,5.116,2.25,6.95c1.5,1.833,3.684,2.75,6.55,2.75h74.331c3,0,5.333,0.85,7,2.55
c1.666,1.7,2.5,3.916,2.5,6.65v0.488H0z"/>
</svg>
</div>
</section>
<div id="page-content">
<div id="page-content-body">
<div style="border:1px solid transparent"></div>
<div id="portfolio-nav">
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/bibliograph.jpg"
alt="Bibliograph: Open Source Online Citation &amp; Library Management">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/datalife.png"
alt="DataLife: Hospital Information System">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/ecliptic-scada-schema.png"
alt="Ecliptic SCADA: Diagnostic and Control System">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="https://www.creatis.insa-lyon.fr/~valette/public/project/eduanat2/featured_hu8684937c3e81b81cc700f0e8c08ddf0b_175994_720x0_resize_q90_lanczos.jpg"
alt="EduAnat2">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/kanapa.png"
alt="Kanapa: Smart Home System">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/mutualink.png"
alt="Mutualink">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/osparc2.JPG"
alt="o2S2PARC - Open Online Simulations for Stimulating Peripheral Activity to Relieve Conditions">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/plaidcloud.png"
alt="PlaidCloud: Better Data Analysis">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/polaris2.png"
alt="Polaris Aplive">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/prems.png"
alt="PREMS (The Plant REsource Management System)">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/raceday.png"
alt="Race Day: Motorsports events tracker">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/reform2.png"
alt="ReForm">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/sias.png"
alt="SIAS Online 3.x">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/sparuk1.png"
alt="SPAR UK Cloud Services">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/digitalsignage1.png"
alt="VisionMedia Digital Signage">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/vzaweb.jpg"
alt="VZAweb: web-based traffic census data base">
</div>
</div>
<div class="portfolio-nav-frame">
<div class="portfolio-nav-slide">
<img
src="images/portfolio/wisej.png"
alt="Wisej Real-time Web Applications">
</div>
</div>
</div>
<div id="portfolio-slider">
<div class="portfolio-slide-frame">
<div class="portfolio-slide">
<div class="portfolio-slide-body">
<h2>Bibliograph: Open Source Online Citation & Library Management</h2>
<img class="header-image"
src="images/portfolio/bibliograph.jpg"
alt="Bibliograph: Open Source Online Citation &amp; Library Management">
<p>Bibliograph is an application that lets you collect, edit, and publish bibliographic data collaboratively on
the web. It has a modern and intuitive user interface that makes the daily life of working with bibliographies
and library collections easy and fun. It allows researchers, librarians, teachers and students work
together online without having to install software locally. Bibliograph is fully open source and free to
download, install, use and adapt to your particular need.</p>
<p>Bibliograph's frontend is based on Qooxdoo, its PHP backend uses the Yii2 framework and a MySql/MariaDB database.</p>
<p>Website: <a rel="nofollow noopener noreferrer" target="_blank" href="http://www.bibliograph.org/">http://www.bibliograph.org/</a></p>
<p>Source Code: <a rel="nofollow noopener noreferrer" target="_blank" href="https://github.com/cboulanger/bibliograph">https://github.com/cboulanger/bibliograph</a></p>
<img
src="images/portfolio/bibliograph.jpg"
alt="Bibliograph: Open Source Online Citation &amp; Library Management">
</div>
</div>
</div>
<div class="portfolio-slide-frame">
<div class="portfolio-slide">
<div class="portfolio-slide-body">
<h2>DataLife: Hospital Information System</h2>
<img class="header-image"
src="images/portfolio/datalife.png"
alt="DataLife: Hospital Information System">
<p>DataLife is a hospital information system designed to0
support the management of healthcare institutions,
regardless of specialty. It covers all aspects of
operations of small, medium and large general and
specialist clinics, rehabilitation centers, public
hospitals and nursing homes.</p>
<p>Focusing on information integrity, decision support and
simplicity, DataLife features:</p>
<ul>
<li>In- and out- patient management</li>
<li>Electronic Medical Records</li>
<li>Financials, billing and credit tracking</li>
<li>Inventory and pharmacy management</li>
<li>Statistics and reporting</li>
</ul>
<p>Website: <a rel="nofollow noopener noreferrer" target="_blank" href="https://www.datalife.gr/">https://www.datalife.gr/</a></p>
<img
src="images/portfolio/datalife.png"
alt="DataLife: Hospital Information System">
</div>
</div>
</div>
<div class="portfolio-slide-frame">
<div class="portfolio-slide">
<div class="portfolio-slide-body">
<h2>Ecliptic SCADA: Diagnostic and Control System</h2>
<img class="header-image"
src="images/portfolio/ecliptic-scada-schema.png"
alt="Ecliptic SCADA: Diagnostic and Control System">
<p>Ecliptic SCADA is a control system architecture comprising computers, networked data communications and graphical
user interfaces for high-level supervision of machines and processes. It also covers sensors and other devices, such
as programmable logic controllers, which interface with process plant or machinery.</p>
<p>Client-server communication is implemented with node-opcua library.
Transport layer of node-opcua is websockets for web browser clients and tcp for Electron version of application.</p>
<p>Ecliptic SCADA's frontend is based on Qooxdoo, its backend uses the C++/C OPC UA implementation.</p>
<p>One of adaptations for the system is a tram traction substations' system for whole city. On the screenshots you may see the following.
<ul>
<li>Real-time dinamic electric schema which shows a current state of traction substation</li>
<li>Table of events and alarms which happen on the substation</li>
<li>Map of all substations</li>
</ul>
</p>
<p>Author: <a rel="nofollow noopener noreferrer" target="_blank" href="LLC NPP "Yugpromavtomatizacia"">LLC NPP "Yugpromavtomatizacia"</a></p>
<p>Website: <a rel="nofollow noopener noreferrer" target="_blank" href="https://www.ugpa.ru">https://www.ugpa.ru</a></p>
<div class="portfolio-image-slider">
<img
src="images/portfolio/ecliptic-scada-schema.png"
alt="Ecliptic SCADA: Diagnostic and Control System">
<img
src="images/portfolio/ecliptic-scada-schema-no-connection.png"
alt="Ecliptic SCADA: Diagnostic and Control System">
<img
src="images/portfolio/ecliptic-scada-indigo-dark.png"
alt="Ecliptic SCADA: Diagnostic and Control System">
<img
src="images/portfolio/ecliptic-scada-geomap.png"
alt="Ecliptic SCADA: Diagnostic and Control System">
<img
src="images/portfolio/ecliptic-scada-charts.png"
alt="Ecliptic SCADA: Diagnostic and Control System">
<img
src="images/portfolio/ecliptic-scada-log.png"
alt="Ecliptic SCADA: Diagnostic and Control System">
</div>
</div>
</div>
</div>
<div class="portfolio-slide-frame">
<div class="portfolio-slide">
<div class="portfolio-slide-body">
<h2>EduAnat2</h2>
<img class="header-image"
src="https://www.creatis.insa-lyon.fr/~valette/public/project/eduanat2/featured_hu8684937c3e81b81cc700f0e8c08ddf0b_175994_720x0_resize_q90_lanczos.jpg"
alt="EduAnat2">
<p>This program allows easy visualization of medical images, ideal
for
teaching life sciences at school. Based on <a
href="https://www.qooxdoo.org/" rel="nofollow">qooxdoo</a>, <a
href="https://www.creatis.insa-lyon.fr/~valette/public/project/desk/"
rel="nofollow">DESK</a> and <a href="https://electronjs.org/"
rel="nofollow">electron.js</a>,
Eduanat2 has been developed with ease of use as a primary
objective,
in cooperation with the <a
href="http://acces.ens-lyon.fr/acces/thematiques/neurosciences/outils-numeriques/eduanat2-et-anapeda"
rel="nofollow">French Institute for Education (IFE)</a>.</p>
<p>Website: <a rel="nofollow noopener noreferrer" target="_blank" href="https://www.creatis.insa-lyon.fr/~valette/public/project/eduanat2/">https://www.creatis.insa-lyon.fr/~valette/public/project/eduanat2/</a></p>
<p>Source Code: <a rel="nofollow noopener noreferrer" target="_blank" href="https://github.com/valette/eduAnat2">https://github.com/valette/eduAnat2</a></p>
<img
src="https://www.creatis.insa-lyon.fr/~valette/public/project/eduanat2/featured_hu8684937c3e81b81cc700f0e8c08ddf0b_175994_720x0_resize_q90_lanczos.jpg"
alt="EduAnat2">
</div>
</div>
</div>
<div class="portfolio-slide-frame">
<div class="portfolio-slide">
<div class="portfolio-slide-body">
<h2>Kanapa: Smart Home System</h2>
<img class="header-image"
src="images/portfolio/kanapa.png"
alt="Kanapa: Smart Home System">
<p>Kanapa is application to manage smart home modules.
It allows programing behavior of each module by setup conditions (relations) between sensors. There are several sensors implemented in module: temperature, light, humidity, PWM, RGB indicator, relays, touch switches, air quality, motion. Each module is based on AVR processor and communicate via wireless network by UDP protocol. Kanapa also covers setup conditions (relations) between modules. Commands send by modules are monitoring by Kanapa and can be analyses using reports.
The main role of Kanapa application is to setup and tuning intelligent home. Regardless of this fact, Kanapa gives interface to manage home remotely. The interface consists of buttons which can be defined by user.</p>
<p>Author: <a rel="nofollow noopener noreferrer" target="_blank" href="http://www.grykar.eu">http://www.grykar.eu</a></p>
<img
src="images/portfolio/kanapa.png"
alt="Kanapa: Smart Home System">
</div>
</div>
</div>
<div class="portfolio-slide-frame">
<div class="portfolio-slide">
<div class="portfolio-slide-body">
<h2>Mutualink</h2>
<img class="header-image"
src="images/portfolio/mutualink.png"
alt="Mutualink">
<p><a href="https://mutualink.net/"
rel="nofollow">Mutualink</a> <strong>IWS Web</strong>
provides an incident-based highly intuitive graphical user
interface (GUI) used by a dispatcher or incident manager to
communicate with other dispatch personnel and units in the
field. Easily share radio, voice, video & data for
cross-agency collaboration. Connect with partner agencies in
real time with Mutualink’s interoperability system to
quickly resolve incidents.</p>
<p>Public safety agencies and critical infrastructure
organizations need radio interoperability. Our solution goes
beyond basic radio interoperability to provide LMR to LMR,
LMR to LTE, real-time video sharing, geospatial information
and data sharing capabilities.</p>
<p>All of this is possible through our powerful capability and
network called the Interoperable Response and Preparedness
Platform (IRAPP). This network is the largest nationwide
network of public safety agencies, critical infrastructure,
schools and private enterprise security. The IRAPP is
transport agnostic, device agnostic and media agnostic. It
leverages your current communications assets and
incorporates new devices as needed. Connect to the IRAPP
network via public or private LTE, satellite or terrestrial
broadband.</p>
<p>Emergencies are unpredictable; the who, what, when and
where of communications needed for mitigation is unknown
until the incident unfolds. Additionally, emergency
environments are not static events; new primary as well as
secondary and tertiary effects can rapidly emerge.
Therefore, collaboration is needed with those in both remote
and immediate proximity. The complex inter-dependencies of
the real world require a communications approach that serves
this dynamic.</p>
<p>• Displays available partners and agency resources and
active incidents<br>
• Accommodates multiple incidents<br>
• Real-time voice, video and data sharing<br>
• Data Encryption<br>
• Locate and add partners using Network Map<br>
• Monitor traffic and weather by activating layers on
Network Map<br>
• Manage incidents in Network Map view</p>
<p>Website: <a rel="nofollow noopener noreferrer" target="_blank" href="https://mutualink.net/">https://mutualink.net/</a></p>
<img
src="images/portfolio/mutualink.png"
alt="Mutualink">
</div>
</div>
</div>
<div class="portfolio-slide-frame">
<div class="portfolio-slide">
<div class="portfolio-slide-body">
<h2>o2S2PARC - Open Online Simulations for Stimulating Peripheral Activity to Relieve Conditions</h2>
<img class="header-image"
src="images/portfolio/osparc2.JPG"
alt="o2S2PARC - Open Online Simulations for Stimulating Peripheral Activity to Relieve Conditions">
<p>The <a href="https://osparc.io/" rel="nofollow">application</a>
is not yet completely accessible since an invitation for
registering is required (it will be opened early next
year).</p>
<p>Description from <a href="https://docs.osparc.io/"
rel="nofollow">the docs</a>: The
aim of o2S2PARC is to establish a comprehensive, freely
accessible, intuitive, and interactive online platform
for simulating peripheral nerve system
neuromodulation/stimulation and its impact on organ
physiology in a precise and predictive manner. To
achieve this, the platform will comprise both
state-of-the art and highly detailed animal and human
anatomical models with realistic tissue property
distributions that make it possible to perform
simulations ranging from the molecular scale up to the
complexity of the human body.</p>
<p>Some <a
href="https://github.com/ITISFoundation/osparc-simcore/blob/master/docs/simcore-stack.md">diagrams</a>
showing how the stack in the backend is configured.</p>
<p><a
href="https://github.com/ITISFoundation/osparc-simcore">Main
repo</a><br>
<a href="https://github.com/ITISFoundation/osparc-simcore/tree/master/services/web/client">Front-end
using qooxdoo</a></p>
<p>Website: <a rel="nofollow noopener noreferrer" target="_blank" href="https://github.com/ITISFoundation/osparc-simcore">https://github.com/ITISFoundation/osparc-simcore</a></p>
<p>Source Code: <a rel="nofollow noopener noreferrer" target="_blank" href="https://github.com/ITISFoundation/osparc-simcore">https://github.com/ITISFoundation/osparc-simcore</a></p>
<img
src="images/portfolio/osparc2.JPG"
alt="o2S2PARC - Open Online Simulations for Stimulating Peripheral Activity to Relieve Conditions">
</div>
</div>
</div>
<div class="portfolio-slide-frame">
<div class="portfolio-slide">
<div class="portfolio-slide-body">
<h2>PlaidCloud: Better Data Analysis</h2>
<img class="header-image"
src="images/portfolio/plaidcloud.png"
alt="PlaidCloud: Better Data Analysis">
<p>PlaidCloud is a cohesive platform that brings together leading business processes,
data analysis methods, workflows, and techniques in a scalable, secure, and
trusted environment that is actually simple to use</p>
<p>PlaidCloud empowers business focus on solutions instead of technology.
Unlimited potential and flexibility with pre-built solutions:</p>
<ul>
<li>Goods and Services Transfer Pricing</li>
<li>Customer and Production Profitability</li>
<li>Bill of Materials (BOM) Costing and Cost Projections</li>
<li>Cost to Serve and Fulfillment Profitability</li>
<li>Sales and Marketing Segmentation and Effectiveness</li>
<li>Robotic Process Automation (RPA)</li>
</ul>
<p>PlaidCloud provides and end-to-end solution that eliminates technology pinch
points. Included are:</p>
<ul>
<li>Report - PDF, Excel, and other formats to suite your needs</li>
<li>Dashboard - Build and share dashboards with real-time data updates</li>
<li>Collaborate - Effortlessly share information and work in parallel with others</li>
<li>Efficient - Everything is designed to get things done faster and eliminate clicks</li>
<li>Scale - Never worry about scale issues again</li>
<li>Connect - Connect to ERP, databases, and files to maintain high quality sources of truth</li>
<li>SaaS - Nothing to install or maintain... it just works</li>
</ul>
<p>Website: <a rel="nofollow noopener noreferrer" target="_blank" href="https://plaidcloud.com/">https://plaidcloud.com/</a></p>
<div class="portfolio-image-slider">
<img
src="images/portfolio/plaidcloud.png"
alt="PlaidCloud: Better Data Analysis">
<img
src="images/portfolio/plaidcloud_2.png"
alt="PlaidCloud: Better Data Analysis">
<img
src="images/portfolio/plaidcloud_3.png"
alt="PlaidCloud: Better Data Analysis">
<img
src="images/portfolio/plaidcloud_4.png"
alt="PlaidCloud: Better Data Analysis">
</div>
</div>
</div>
</div>
<div class="portfolio-slide-frame">
<div class="portfolio-slide">
<div class="portfolio-slide-body">
<h2>Polaris Aplive</h2>
<img class="header-image"
src="images/portfolio/polaris2.png"
alt="Polaris Aplive">
<p>At Laboratorio Nebula of the UPNFM we develop Polaris
Aplive, our Frontend application for students users for
their academic management, like enrolment, academic
history, messaging, e-learning, etc.<br>
Polaris is daily used by more of 27,000 students across
the country, resulting in a fundamental tool for the
University activities.</p>
<img
src="images/portfolio/polaris2.png"
alt="Polaris Aplive">
</div>
</div>
</div>
<div class="portfolio-slide-frame">
<div class="portfolio-slide">
<div class="portfolio-slide-body">
<h2>PREMS (The Plant REsource Management System)</h2>
<img class="header-image"
src="images/portfolio/prems.png"
alt="PREMS (The Plant REsource Management System)">
<p>
This app is a <a href="https://www.qooxdoo.org/"
rel="nofollow">qooxdoo</a> based front-end
for a postgresql database with python jsonrpc web services
(ELVIS, see sources) aimed to manage biological resources
for plants and seeds. It is actively developed by the <a
href="https://www6.angers-nantes.inra.fr/irhs/Recherche/Bioinformatics-for-plant-Defense-Investigations"
rel="nofollow">BIDefI</a> team at <a
href="https://www6.angers-nantes.inra.fr/irhs"
rel="nofollow">IRHS</a>. In the app, users can define
groups or collections of plants and use them in projects and
experiments. They can characterize them and will be able to
store manipulation done in laboratory like sampling or
extracting DNA. It is like a LIMS but focused on plants and
samples management.<br>
The instance of the app is for internal use only but the app
is released under <a href="https://cecill.info/"
rel="nofollow">CeCILL</a> free software
license.
</p>
<p>Website: <a rel="nofollow noopener noreferrer" target="_blank" href="https://www6.angers-nantes.inra.fr/irhs/Recherche/Bioinformatics-for-plant-Defense-Investigations">https://www6.angers-nantes.inra.fr/irhs/Recherche/Bioinformatics-for-plant-Defense-Investigations</a></p>
<p>Source Code: <a rel="nofollow noopener noreferrer" target="_blank" href="https://sourcesup.renater.fr/projects/prems">https://sourcesup.renater.fr/projects/prems</a></p>
<img
src="images/portfolio/prems.png"
alt="PREMS (The Plant REsource Management System)">
</div>
</div>
</div>
<div class="portfolio-slide-frame">
<div class="portfolio-slide">
<div class="portfolio-slide-body">
<h2>Race Day: Motorsports events tracker</h2>
<img class="header-image"
src="images/portfolio/raceday.png"
alt="Race Day: Motorsports events tracker">
<p>Race Day tracks motorsports events and the available broadcasts for each. With a continually updated database of such
events, it is the premier online resource for tracking your favorite motorsports series and finding new ones. Race
Day provides both desktop and mobile friendly views.</p>
<p>Author: <a rel="nofollow noopener noreferrer" target="_blank" href="Motorsport on TV/Online">Motorsport on TV/Online</a></p>
<p>Website: <a rel="nofollow noopener noreferrer" target="_blank" href="https://raceday.watch">https://raceday.watch</a></p>
<div class="portfolio-image-slider">
<img
src="images/portfolio/raceday.png"
alt="Race Day: Motorsports events tracker">
<img
src="images/portfolio/raceday2.png"
alt="Race Day: Motorsports events tracker">
<img
src="images/portfolio/raceday3.png"
alt="Race Day: Motorsports events tracker">
</div>
</div>
</div>
</div>
<div class="portfolio-slide-frame">
<div class="portfolio-slide">
<div class="portfolio-slide-body">
<h2>ReForm</h2>
<img class="header-image"
src="images/portfolio/reform2.png"
alt="ReForm">
<p><strong>ReForm</strong> (by <a
href="https://www.sibitag.com/home"
rel="nofollow">SiBit</a>)<br>
A comprehensive CRUD-like Framework specialized for
implementing business processes. Based on ReForm we've build
applications like a warehouse management system for our
customer <a href="https://www.afb-group.de/home/"
rel="nofollow">AfB</a> and the asset management
Software Office Asset.</p>
</p>
<p>Author: <a rel="nofollow noopener noreferrer" target="_blank" href="https://www.sibitag.com/home">https://www.sibitag.com/home</a></p>
<p>Website: <a rel="nofollow noopener noreferrer" target="_blank" href="https://www.afb-group.de/home/">https://www.afb-group.de/home/</a></p>
<div class="portfolio-image-slider">
<img
src="images/portfolio/reform2.png"
alt="ReForm">
<img
src="images/portfolio/reform1.png"
alt="ReForm">
</div>
</div>
</div>
</div>
<div class="portfolio-slide-frame">
<div class="portfolio-slide">
<div class="portfolio-slide-body">
<h2>SIAS Online 3.x</h2>
<img class="header-image"
src="images/portfolio/sias.png"
alt="SIAS Online 3.x">
<p>Our website: <a href="http://www.digisoftph.com/"
rel="nofollow">www.digisoftph.com</a></p>
<p>Special thanks also to <strong><a
href="https://github.com/jbaron">https://github.com/jbaron</a></strong>
for making Qx-Typed: <a
href="https://github.com/qooxdoo/qooxdoo/issues/url">https://github.com/jbaron/qx-typed</a>
which made qooxdoo easily accessible to Typescript
developers.</p>
<p>Main Modules:</p>
<ol>
<li>Admission and Document Management</li>
<li>Pre-Enlistment (Automatic), Enrollment and
Auto-Advising
</li>
<li>Class Scheduling Wizard (Deans and Registrar)</li>
<li>Assessment, Discounts and Scholarships (UNIFAST
reports)
</li>
<li>Grading System: Adaptive / User-defined, RAW Scores,
Automatic Transmutation, Universal Grade Conversion
</li>
<li>Instructor Modules: Class Record (Raw Scores such as
Quizzes, Class Standing, Periodic Test, etc.), Grade