-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1075 lines (1014 loc) · 52.2 KB
/
index.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 lang="en-US">
<head>
<title>Elliot - That guy's awesome.</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="Software Designer Portfolio" />
<meta name="keywords" content="Freelance, software design, international" />
<meta name="author" content="Elliot" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="shortcut icon" href="images/favicon.ico" />
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700%7CPT+Serif:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href='css/clear.css' />
<link rel="stylesheet" type="text/css" href='css/common.css' />
<link rel="stylesheet" type="text/css" href='css/font-awesome.min.css' />
<link rel="stylesheet" type="text/css" href='css/carouFredSel.css' />
<link rel="stylesheet" type="text/css" href='css/sm-clean.css' />
<link rel="stylesheet" type="text/css" href='style.css' />
<!--[if lt IE 9]>
<script src="js/html5.js"></script>
<![endif]-->
</head>
<body class="home blog">
<div class="doc-loader"></div>
<div class="content-1170 header-holder center-relative">
<div class="header-logo left">
<a href="index.html">
<img src="images/polis.png" alt="Katt">
</a>
</div>
<div class="header-menu">
<div class="toggle-holder relative">
<div id="toggle">
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</div>
</div>
<!--This is a menu - Should include about, blog, resume, calendar, writing(once I have some), contact, and attributions-->
<nav id="header-main-menu" class="big-menu">
<ul class="main-menu sm sm-clean">
<li><a href="index.html" class="current">Home</a></li>
<li><a href="#">All About Me</a></li>
<li><a href="DesPhil.html">Design Philosophy</a>
<ul class="sub-menu">
<li><a href="https://medium.com/@jem060/the-world-is-by-design-110c0fb610c" target="_blank">Medium</a></li>
</ul>
<li><a href="Resume/CV.html">Curriculum Vitae</a></li>
<li><a href="#">Contact</a></li>
<li><a href="CalendarPhotos/calendar.html">Calendar</a></li>
<li><a href="Writing/writing.html">Writing</a></li>
<li><a href="#">Site Attributions</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="clear"></div>
</div>
<div class="clear"></div>
</div>
<div class="block content-1170 center-relative">
<div class="blog-holder block center-relative">
<article id="post-1" class="relative blog-item-holder">
<div class="post-thumb thumb-html one_thumb relative">
<script>
var slider1_speed = "500";
var slider1_auto = "true";
var slider1_pagination = "true";
var slider1_hover = "true";
</script>
<div class="image-slider-wrapper">
<div class="caroufredsel_wrapper">
<ul id="slider1" class="image-slider slides center-text">
<li><img src="images/Elliot2.jpg" alt="obligatory pretension"></li>
<li><img src="images/WheresElliot1.JPG" alt="where is elliot"></li>
<li><img src="images/Elliot3.jpg" alt=""></li>
</ul>
</div>
<div class="slider1_pagination carousel_pagination left"></div>
<div class="clear"></div>
</div>
</div>
<div class="post-title-holder one_title absolute">
<h2 class="entry-title excerpt">
<a href="#">
J. Elliot Miller<br>
Full Stack Software Developer<br>C/C++/C#/Java/Python<br>Project Manager and Team Leader</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Design</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"Always do your best and you'll never have to apologize."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Bio -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb right">
<img src="images/ElliotAndGir.jpg" alt="My dog and I">
</div>
<div class="post-title-holder one_third_title left">
<h2 class="entry-title">
<a href="#">The most important goal anyone can have for themselves or the people they lead: Always strive to be better than you are.</a>
</h2>
<div class="cat-links">
<ul>
<li>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"Audiences (and parents) are the perdition to their own sin."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Blog1 -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb right">
</div>
<div class="post-title-holder left">
<h2 class="entry-title">
<a href="https://www.linkedin.com/posts/j-elliot-miller-40a06395_goal-oriented-is-a-common-and-well-lauded-activity-6633220700960366592-OLRp" target="_blank">
<strong>Process Versus Goal</strong></a><br>
'Goal oriented' is a common and well lauded concept,
and for good reason. In planning a project, the most
important task is defining clear goals and carefully
tracking your progress towards reaching them. But
exclusive focus on narrowly defined goals can create
dehumanizing and dangerous work environments. It's
process that considers things like safety, personal
development, and human dignity. Process oriented
thinking is the decision to do something the right
way, even though that isn't the fastest, easiest,
cheapest way. Every shortcut you don't take is
putting the process above the goal.
<br>On the other hand, “A good plan, violently
executed now, is better than a perfect plan next
week.” (Quoted from Patton: War as I Knew It).
Especially for entrepreneurs, the quick, dirty
solution is often the only viable option. 'Goal
oriented' is a virtue for good reason, but as with
many aspects of our lives and careers, we can't
adopt one perspective to the exclusion of all
others. Balancing goals and process is one of many
tightropes we have to traverse.</a>
</h2>
<div class="cat-links">
<ul>
<li>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"We hate our enemies to the extent that they expose the weakness in ourselves."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Aly's blog -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb left">
<img src="images/Borden1.jpg" alt="blog image">
</div>
<div class="post-title-holder one_third_title right">
<h2 class="entry-title">
Helping my sister fix her awesome house!
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://thewassaicmaison.home.blog/" target="_blank">External Link</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"You can't fight fire with fire,
but you can fight fire with dynamite."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- World of Hellos -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb left">
<img src="images/SierpinskiTriangle.PNG" alt="blog image">
</div>
<div class="post-title-holder one_third_title right">
<h2 class="entry-title">
<a href="#">The meta Hello World! Can I get every programming language to compile and run Hello World in every other language.</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://github.com/j-elliot/worldofhellos" target="_blank">External Link</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"Cocaine solves every problem not caused by cocaine."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- This very website -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb left">
<img src="images/Icon.jpg" alt="blog image">
</div>
<div class="post-title-holder one_third_title right">
<h2 class="entry-title">
<a href="#">It's what you're looking at right now!</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="index.html">Internal Link</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"You can't spell 'settling down' without 'settling'"
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Math Generator -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb left">
<a href="https://www.freestock.com/free-photos/math-formulas-written-green-chalkboard-102509135" target="_blank"><img src="images/math.jpg" alt="Image used under license from Freestock.com"></a>
</div>
<div class="post-title-holder one_third_title right">
<h2 class="entry-title">
<a href="#">Homework problems, on demand</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://thewassaicmaison.home.blog/" target="_blank">External Link</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"My love is unconditional.
My attention has strings attached."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Circuit Game -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb left">
<img src="images/VoltSource 1.png" alt="blog image">
</div>
<div class="post-title-holder one_third_title right">
<h2 class="entry-title">
<a href="#">Finding new ways to teach and to learn electrical engineering fundementals</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://thewassaicmaison.home.blog/" target="_blank">External Link</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"I'd rather die tomorrow doing something I love than live 100 more years in fear that I might die tomorrow."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Categorical -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb left">
<a href="https://en.wikipedia.org/wiki/Square_of_opposition" target="_blank"><img src="images/Square_of_opposition.png" alt="Square of opposition"></a>
</div>
<div class="post-title-holder one_third_title right">
<h2 class="entry-title">
<a href="#">When you're comp sci and you're taking logic, you do this instead of homework.</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://thewassaicmaison.home.blog/" target="_blank">External Link</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"Never satisfy yourself with not knowing"
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Super Chess -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb left">
<a href="https://pixabay.com/users/MasterTux-470906/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=2375511" target="_blank"><img src="images/DoomChess.jpg" alt="blog image"></a>
</div>
<div class="post-title-holder one_third_title right">
<h2 class="entry-title">
<a href="#">Rebuilding from the ground up my first significant programming accomplishment</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://thewassaicmaison.home.blog/" target="_blank">External Link</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"Every day we are given the opportunity to redefine ourselves, and every day we choose to reject that opportunity and continue doing what we did the day before."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Gettysburg Soccer Academy -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb left">
<img src="images/GSA.jpg" alt="blog image">
</div>
<div class="post-title-holder one_third_title right">
<h2 class="entry-title">
<a href="#">Joint venture with an extraordinary coach to create a sustainable soccer business model</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://thewassaicmaison.home.blog/" target="_blank">External Link</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"You can't spell 'settling down' without 'settling'
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Project Management Backend -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb left">
<img src="images/PM.png" alt="blog image">
</div>
<div class="post-title-holder one_third_title right">
<h2 class="entry-title">
<a href="#">A mix of policy, procedure, and code to solve a number of problems I've identified in commercially available software.</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://thewassaicmaison.home.blog/" target="_blank">External Link</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"My love is unconditional.<br>My attention has strings attached."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- My full resume -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb left">
<img src="images/Resume.jpg" alt="blog image">
</div>
<div class="post-title-holder one_third_title right">
<h2 class="entry-title">
<a href="#">Using LaTeX to compile the entire list of everything I've done</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://thewassaicmaison.home.blog/" target="_blank">External Link</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"I'd rather die tomorrow doing something I love than live 100 more years in fear that I might die tomorrow."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Ethical H2O -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb left">
<img src="images/EthicalLogo.png" alt="blog image">
</div>
<div class="post-title-holder one_third_title right">
<h2 class="entry-title">
<a href="#">Synthesized the old with the new in this launch of a new company</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://thewassaicmaison.home.blog/" target="_blank">External Link</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"I only accept apologies I've earned"
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Wind Turbine -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb left">
<img src="images/Wind.jpg" alt="blog image">
</div>
<div class="post-title-holder one_third_title right">
<h2 class="entry-title">
<a href="#">A more physical project: The erection of a consumer grade, eighty foot tower and wind turbine</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://thewassaicmaison.home.blog/" target="_blank">External Link</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"Do whatever you have to do to ensure you are not at the mercy of the merciless."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Homebrew Smart House -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb left">
<img src="images/SmartHome.png" alt="blog image">
</div>
<div class="post-title-holder one_third_title right">
<h2 class="entry-title">
<a href="#">Pi-based total solution to security and automation with the flexibility to maintain an appropriate aesthetic</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://thewassaicmaison.home.blog/" target="_blank">External Link</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-2" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"I don't judge; I question."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 30px; left: -90px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Dragon Riding -->
<article id="post-3" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb left">
<img src="images/Kutu1.png" alt="dragon flying over island first person">
</div>
<div class="post-title-holder one_third_title right">
<h2 class="entry-title">
<a href="#">Take to the skies and defend your home against invasion with this VR dragon riding simulator.</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://gitlab.bucknell.edu/jem060/design_for_vr" target="_blank">git</a>
<a href="https://medium.com/@jeanleong98/impossible-experience-made-possible-dragon-riding-in-vr-c00932e85833?sk=7f606581c6d0a8807a4fcd6f3ce09073" target="_blank">medium</a>
<a href="https://www.youtube.com/watch?v=r3JNFWYTbz0" target="_blank">demo</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 40px; right: 331px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-6" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"If you borrow a book from me, read it with a pencil. Your thoughts will add to the volume, and the value you contribute will recompense me for the loan. I promise to do the same if you lend me a book."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 25px; left: -80px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Overwatch -->
<article id="post-4" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb right">
<img src="images/Overwatch1.png" alt="poster for the game Overwatch">
</div>
<div class="post-title-holder one_third_title left">
<h2 class="entry-title">
<a href="#">
Reach into the game. Play the popular first person shooter Overwatch without the constraints of antiquated interfaces.
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://github.com/zilinma/OverwatchLeapMotion" target="_blank">git</a>
<a href="https://medium.com/@jec041/overwatch-off-the-screen-and-into-your-hands-eb2e94d5a1de" target="_blank">medium</a>
<a href="https://www.youtube.com/watch?v=4ZA-LmIbvuo" target="_blank">demo</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 110px; left: -83px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-6" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"If you can't bring yourself to smile while doing a thing, you shouldn't be doing that thing."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 25px; left: -80px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Song Data -->
<article id="post-5" class="relative blog-item-holder">
<div class="post-thumb thumb-image one_third_thumb left">
<img src="images/Understanding1.png" alt="">
</div>
<div class="post-title-holder two_third_title right">
<h2 class="entry-title">
<a href="#">
Understand what makes for a good song.
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://gitlab.bucknell.edu/jem060/3rd-groups-a-charm" target="_blank">git</a>
<a href="https://medium.com/@tmc011/visualizations-from-spotifys-worldwide-daily-rankings-dataset-45668488524" target="_blank">medium</a>
<a href="https://public.tableau.com/profile/malachi.musick#!/vizhome/SpotifyPopularitybyCountries/Dashboard1?publish=yes" target="_blank">demo1</a>
<a href="https://public.tableau.com/profile/bhagawat.acharya#!/vizhome/Top10StreamsbyCountries2017/Dashboard1?publish=yes" target="_blank">demo2</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 50px; right: -92px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->
<article id="post-6" class="relative blog-item-holder">
<div class="only-post-title-holder">
<h2 class="entry-title excerpt">
<a href="#">
"I don't get frustrated, just more determined."
</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="#">Me</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 25px; left: -80px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Old People -->
<article id="post-7" class="relative blog-item-holder">
<div class="post-thumb thumb-image two_third_thumb right">
<img src="images/HomeScreen1.png" alt="">
</div>
<div class="post-title-holder one_third_title left">
<h2 class="entry-title" style="margin-top: 305px;">
<a href="#">An app design for a population underrepresented in technology.</a>
</h2>
<div class="cat-links">
<ul>
<li>
<a href="https://gitlab.bucknell.edu/jem060/old-people-dont-app" target="_blank">git</a>
<a href="https://medium.com/@ktl008/boom-library-app-redesign-ad7186e5f443" target="_blank">medium</a>
<a href="https://xd.adobe.com/view/15a6ed10-6017-4796-79b4-3322a633a5d6-6397/" target="_blank">demo</a>
</li>
</ul>
</div>
</div>
<div class="clear"></div>
<div class="zigzag absolute" style="bottom: 120px; left: 310px;">
<img src="images/zigzag.png" alt="">
</div>
</article>
<!-- Quote break -->