-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
992 lines (926 loc) · 54.3 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
<!DOCTYPE html>
<html lang="en">
<!-- Mirrored from zachbrogan.com/ by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 06 Feb 2021 21:31:34 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset='UTF-8'>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<title>Zach Brogan – Software Engineering Blog</title>
<link rel='dns-prefetch' href='https://fonts.googleapis.com/' />
<link rel='dns-prefetch' href='http://s.w.org/' />
<link rel="alternate" type="application/rss+xml" title="Zach Brogan » Feed" href="feed/index.html" />
<link rel="alternate" type="application/rss+xml" title="Zach Brogan » Comments Feed" href="comments/feed/index.html" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/wp-archive.zachbrogan.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.6.1"}};
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='wp-includes/css/dist/block-library/style.mind96d.css?ver=5.6.1' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-5-css' href='wp-content/plugins/themeisle-companion/obfx_modules/gutenberg-blocks/assets/fontawesome/css/all.minc27b.css?ver=2.10.3' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-4-shims-css' href='wp-content/plugins/themeisle-companion/obfx_modules/gutenberg-blocks/assets/fontawesome/css/v4-shims.minc27b.css?ver=2.10.3' type='text/css' media='all' />
<link rel='stylesheet' id='hestia-clients-bar-css' href='wp-content/plugins/themeisle-companion/obfx_modules/companion-legacy/assets/css/hestia/clients-bard96d.css?ver=5.6.1' type='text/css' media='all' />
<link rel='stylesheet' id='bootstrap-css' href='wp-content/themes/hestia/assets/bootstrap/css/bootstrap.min20b9.css?ver=1.0.2' type='text/css' media='all' />
<link rel='stylesheet' id='hestia-font-sizes-css' href='wp-content/themes/hestia/assets/css/font-sizes.min6173.css?ver=3.0.8' type='text/css' media='all' />
<link rel='stylesheet' id='hestia_style-css' href='wp-content/themes/hestia/style.min6173.css?ver=3.0.8' type='text/css' media='all' />
<style id='hestia_style-inline-css' type='text/css'>
.hestia-top-bar li a[href*="facebook.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="facebook.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="facebook.com"]:hover:before {
color: #3b5998;
}
.hestia-top-bar li a[href*="twitter.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="twitter.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="twitter.com"]:hover:before {
color: #55acee;
}
.hestia-top-bar li a[href*="pinterest.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="pinterest.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="pinterest.com"]:hover:before {
color: #cc2127;
}
.hestia-top-bar li a[href*="google.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="google.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="google.com"]:hover:before {
color: #dd4b39;
}
.hestia-top-bar li a[href*="linkedin.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="linkedin.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="linkedin.com"]:hover:before {
color: #0976b4;
}
.hestia-top-bar li a[href*="dribbble.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="dribbble.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="dribbble.com"]:hover:before {
color: #ea4c89;
}
.hestia-top-bar li a[href*="github.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="github.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="github.com"]:hover:before {
color: #000;
}
.hestia-top-bar li a[href*="youtube.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="youtube.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="youtube.com"]:hover:before {
color: #e52d27;
}
.hestia-top-bar li a[href*="instagram.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="instagram.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="instagram.com"]:hover:before {
color: #125688;
}
.hestia-top-bar li a[href*="reddit.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="reddit.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="reddit.com"]:hover:before {
color: #ff4500;
}
.hestia-top-bar li a[href*="tumblr.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="tumblr.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="tumblr.com"]:hover:before {
color: #35465c;
}
.hestia-top-bar li a[href*="behance.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="behance.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="behance.com"]:hover:before {
color: #1769ff;
}
.hestia-top-bar li a[href*="snapchat.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="snapchat.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="snapchat.com"]:hover:before {
color: #fffc00;
}
.hestia-top-bar li a[href*="deviantart.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="deviantart.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="deviantart.com"]:hover:before {
color: #05cc47;
}
.hestia-top-bar li a[href*="vimeo.com"] {
font-size: 0;
}
.hestia-top-bar li a[href*="vimeo.com"]:before {
content: "";
}
.hestia-top-bar li a[href*="vimeo.com"]:hover:before {
color: #1ab7ea;
}
.footer-big .footer-menu li a[href*="facebook.com"],
.footer-big .footer-menu li a[href*="twitter.com"],
.footer-big .footer-menu li a[href*="pinterest.com"],
.footer-big .footer-menu li a[href*="google.com"],
.footer-big .footer-menu li a[href*="linkedin.com"],
.footer-big .footer-menu li a[href*="dribbble.com"],
.footer-big .footer-menu li a[href*="github.com"],
.footer-big .footer-menu li a[href*="youtube.com"],
.footer-big .footer-menu li a[href*="instagram.com"],
.footer-big .footer-menu li a[href*="reddit.com"],
.footer-big .footer-menu li a[href*="tumblr.com"],
.footer-big .footer-menu li a[href*="behance.com"],
.footer-big .footer-menu li a[href*="snapchat.com"],
.footer-big .footer-menu li a[href*="deviantart.com"],
.footer-big .footer-menu li a[href*="vimeo.com"]{
color: transparent;
font-size: 0;
padding: 10px;
}
.footer-big .footer-menu li a[href*="facebook.com"]:hover,
.footer-big .footer-menu li a[href*="twitter.com"]:hover,
.footer-big .footer-menu li a[href*="pinterest.com"]:hover,
.footer-big .footer-menu li a[href*="google.com"]:hover,
.footer-big .footer-menu li a[href*="linkedin.com"]:hover,
.footer-big .footer-menu li a[href*="dribbble.com"]:hover,
.footer-big .footer-menu li a[href*="github.com"]:hover,
.footer-big .footer-menu li a[href*="youtube.com"]:hover,
.footer-big .footer-menu li a[href*="instagram.com"]:hover,
.footer-big .footer-menu li a[href*="reddit.com"]:hover,
.footer-big .footer-menu li a[href*="tumblr.com"]:hover,
.footer-big .footer-menu li a[href*="behance.com"]:hover,
.footer-big .footer-menu li a[href*="snapchat.com"]:hover,
.footer-big .footer-menu li a[href*="deviantart.com"]:hover,
.footer-big .footer-menu li a[href*="vimeo.com"]:hover {
opacity: 1 !important;
}
.footer-big .footer-menu li a[href*="facebook.com"]:hover:before {
color: #3b5998;
}
.footer-big .footer-menu li a[href*="twitter.com"]:hover:before {
color: #55acee;
}
.footer-big .footer-menu li a[href*="pinterest.com"]:hover:before {
color: #cc2127;
}
.footer-big .footer-menu li a[href*="google.com"]:hover:before {
color: #dd4b39;
}
.footer-big .footer-menu li a[href*="linkedin.com"]:hover:before {
color: #0976b4;
}
.footer-big .footer-menu li a[href*="dribbble.com"]:hover:before {
color: #ea4c89;
}
.footer-big .footer-menu li a[href*="github.com"]:hover:before {
color: #000;
}
.footer-big .footer-menu li a[href*="youtube.com"]:hover:before {
color: #e52d27;
}
.footer-big .footer-menu li a[href*="instagram.com"]:hover:before {
color: #125688;
}
.footer-big .footer-menu li a[href*="reddit.com"]:hover:before {
color: #ff4500;
}
.footer-big .footer-menu li a[href*="tumblr.com"]:hover:before {
color: #35465c;
}
.footer-big .footer-menu li a[href*="behance.com"]:hover:before {
color: #1769ff;
}
.footer-big .footer-menu li a[href*="snapchat.com"]:hover:before {
color: #fffc00;
}
.footer-big .footer-menu li a[href*="deviantart.com"]:hover:before {
color: #05cc47;
}
.footer-big .footer-menu li a[href*="vimeo.com"]:hover:before {
color: #1ab7ea;
}
.footer-big .footer-menu li a[href*="facebook.com"]:before,
.footer-big .footer-menu li a[href*="twitter.com"]:before,
.footer-big .footer-menu li a[href*="pinterest.com"]:before,
.footer-big .footer-menu li a[href*="google.com"]:before,
.footer-big .footer-menu li a[href*="linkedin.com"]:before,
.footer-big .footer-menu li a[href*="dribbble.com"]:before,
.footer-big .footer-menu li a[href*="github.com"]:before,
.footer-big .footer-menu li a[href*="youtube.com"]:before,
.footer-big .footer-menu li a[href*="instagram.com"]:before,
.footer-big .footer-menu li a[href*="reddit.com"]:before,
.footer-big .footer-menu li a[href*="tumblr.com"]:before,
.footer-big .footer-menu li a[href*="behance.com"]:before,
.footer-big .footer-menu li a[href*="snapchat.com"]:before,
.footer-big .footer-menu li a[href*="deviantart.com"]:before,
.footer-big .footer-menu li a[href*="vimeo.com"]:before {
font-family: "Font Awesome 5 Brands";
font-weight: 900;
color: #3c4858;
font-size: 16px;
}
.footer-black .footer-menu li a[href*="facebook.com"]:before,
.footer-black .footer-menu li a[href*="twitter.com"]:before,
.footer-black .footer-menu li a[href*="pinterest.com"]:before,
.footer-black .footer-menu li a[href*="google.com"]:before,
.footer-black .footer-menu li a[href*="linkedin.com"]:before,
.footer-black .footer-menu li a[href*="dribbble.com"]:before,
.footer-black .footer-menu li a[href*="github.com"]:before,
.footer-black .footer-menu li a[href*="youtube.com"]:before,
.footer-black .footer-menu li a[href*="instagram.com"]:before,
.footer-black .footer-menu li a[href*="reddit.com"]:before,
.footer-black .footer-menu li a[href*="tumblr.com"]:before,
.footer-black .footer-menu li a[href*="behance.com"]:before,
.footer-black .footer-menu li a[href*="snapchat.com"]:before,
.footer-black .footer-menu li a[href*="deviantart.com"]:before,
.footer-black .footer-menu li a[href*="vimeo.com"]:before {
color: #fff;
}
.footer-big .footer-menu li a[href*="facebook.com"]:before {
content: "";
}
.footer-big .footer-menu li a[href*="twitter.com"]:before {
content: "";
}
.footer-big .footer-menu li a[href*="pinterest.com"]:before {
content: "";
}
.footer-big .footer-menu li a[href*="google.com"]:before {
content: "";
}
.footer-big .footer-menu li a[href*="linkedin.com"]:before {
content: "";
}
.footer-big .footer-menu li a[href*="dribbble.com"]:before {
content: "";
}
.footer-big .footer-menu li a[href*="github.com"]:before {
content: "";
}
.footer-big .footer-menu li a[href*="youtube.com"]:before {
content: "";
}
.footer-big .footer-menu li a[href*="instagram.com"]:before {
content: "";
}
.footer-big .footer-menu li a[href*="reddit.com"]:before {
content: "";
}
.footer-big .footer-menu li a[href*="tumblr.com"]:before {
content: "";
}
.footer-big .footer-menu li a[href*="behance.com"]:before {
content: "";
}
.footer-big .footer-menu li a[href*="snapchat.com"]:before {
content: "";
}
.footer-big .footer-menu li a[href*="deviantart.com"]:before {
content: "";
}
.footer-big .footer-menu li a[href*="vimeo.com"]:before {
content: "";
}
.hestia-top-bar, .hestia-top-bar .widget.widget_shopping_cart .cart_list {
background-color: #363537
}
.hestia-top-bar .widget .label-floating input[type=search]:-webkit-autofill {
-webkit-box-shadow: inset 0 0 0px 9999px #363537
}.hestia-top-bar, .hestia-top-bar .widget .label-floating input[type=search], .hestia-top-bar .widget.widget_search form.form-group:before, .hestia-top-bar .widget.widget_product_search form.form-group:before, .hestia-top-bar .widget.widget_shopping_cart:before {
color: #ffffff
}
.hestia-top-bar .widget .label-floating input[type=search]{
-webkit-text-fill-color:#ffffff !important
}
.hestia-top-bar div.widget.widget_shopping_cart:before, .hestia-top-bar .widget.widget_product_search form.form-group:before, .hestia-top-bar .widget.widget_search form.form-group:before{
background-color: #ffffff
}.hestia-top-bar a, .hestia-top-bar .top-bar-nav li a {
color: #ffffff
}
.hestia-top-bar ul li a[href*="mailto:"]:before, .hestia-top-bar ul li a[href*="tel:"]:before{
background-color: #ffffff
}
.hestia-top-bar a:hover, .hestia-top-bar .top-bar-nav li a:hover {
color: #eeeeee
}
.hestia-top-bar ul li:hover a[href*="mailto:"]:before, .hestia-top-bar ul li:hover a[href*="tel:"]:before{
background-color: #eeeeee
}
a,
.navbar .dropdown-menu li:hover > a,
.navbar .dropdown-menu li:focus > a,
.navbar .dropdown-menu li:active > a,
.navbar .navbar-nav > li .dropdown-menu li:hover > a,
body:not(.home) .navbar-default .navbar-nav > .active:not(.btn) > a,
body:not(.home) .navbar-default .navbar-nav > .active:not(.btn) > a:hover,
body:not(.home) .navbar-default .navbar-nav > .active:not(.btn) > a:focus,
a:hover,
.card-blog a.moretag:hover,
.card-blog a.more-link:hover,
.widget a:hover,
.has-text-color.has-accent-color,
p.has-text-color a {
color:#1792b7;
}
.svg-text-color{
fill:#1792b7;
}
.pagination span.current, .pagination span.current:focus, .pagination span.current:hover {
border-color:#1792b7
}
button,
button:hover,
.woocommerce .track_order button[type="submit"],
.woocommerce .track_order button[type="submit"]:hover,
div.wpforms-container .wpforms-form button[type=submit].wpforms-submit,
div.wpforms-container .wpforms-form button[type=submit].wpforms-submit:hover,
input[type="button"],
input[type="button"]:hover,
input[type="submit"],
input[type="submit"]:hover,
input#searchsubmit,
.pagination span.current,
.pagination span.current:focus,
.pagination span.current:hover,
.btn.btn-primary,
.btn.btn-primary:link,
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary.active,
.btn.btn-primary.active:focus,
.btn.btn-primary.active:hover,
.btn.btn-primary:active:hover,
.btn.btn-primary:active:focus,
.btn.btn-primary:active:hover,
.hestia-sidebar-open.btn.btn-rose,
.hestia-sidebar-close.btn.btn-rose,
.hestia-sidebar-open.btn.btn-rose:hover,
.hestia-sidebar-close.btn.btn-rose:hover,
.hestia-sidebar-open.btn.btn-rose:focus,
.hestia-sidebar-close.btn.btn-rose:focus,
.label.label-primary,
.hestia-work .portfolio-item:nth-child(6n+1) .label,
.nav-cart .nav-cart-content .widget .buttons .button,
.has-accent-background-color[class*="has-background"] {
background-color: #1792b7;
}
@media (max-width: 768px) {
.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus,
.navbar .navbar-nav .dropdown .dropdown-menu li a:hover,
.navbar .navbar-nav .dropdown .dropdown-menu li a:focus,
.navbar button.navbar-toggle:hover,
.navbar .navbar-nav li:hover > a i {
color: #1792b7;
}
}
body:not(.woocommerce-page) button:not([class^="fl-"]):not(.hestia-scroll-to-top):not(.navbar-toggle):not(.close),
body:not(.woocommerce-page) .button:not([class^="fl-"]):not(hestia-scroll-to-top):not(.navbar-toggle):not(.add_to_cart_button),
div.wpforms-container .wpforms-form button[type=submit].wpforms-submit,
input[type="submit"],
input[type="button"],
.btn.btn-primary,
.widget_product_search button[type="submit"],
.hestia-sidebar-open.btn.btn-rose,
.hestia-sidebar-close.btn.btn-rose,
.everest-forms button[type=submit].everest-forms-submit-button {
-webkit-box-shadow: 0 2px 2px 0 rgba(23,146,183,0.14),0 3px 1px -2px rgba(23,146,183,0.2),0 1px 5px 0 rgba(23,146,183,0.12);
box-shadow: 0 2px 2px 0 rgba(23,146,183,0.14),0 3px 1px -2px rgba(23,146,183,0.2),0 1px 5px 0 rgba(23,146,183,0.12);
}
.card .header-primary, .card .content-primary,
.everest-forms button[type=submit].everest-forms-submit-button {
background: #1792b7;
}
body:not(.woocommerce-page) .button:not([class^="fl-"]):not(.hestia-scroll-to-top):not(.navbar-toggle):not(.add_to_cart_button):hover,
body:not(.woocommerce-page) button:not([class^="fl-"]):not(.hestia-scroll-to-top):not(.navbar-toggle):not(.close):hover,
div.wpforms-container .wpforms-form button[type=submit].wpforms-submit:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input#searchsubmit:hover,
.widget_product_search button[type="submit"]:hover,
.pagination span.current,
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary.active,
.btn.btn-primary:active:focus,
.btn.btn-primary:active:hover,
.hestia-sidebar-open.btn.btn-rose:hover,
.hestia-sidebar-close.btn.btn-rose:hover,
.pagination span.current:hover,
.everest-forms button[type=submit].everest-forms-submit-button:hover,
.everest-forms button[type=submit].everest-forms-submit-button:focus,
.everest-forms button[type=submit].everest-forms-submit-button:active {
-webkit-box-shadow: 0 14px 26px -12px rgba(23,146,183,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(23,146,183,0.2);
box-shadow: 0 14px 26px -12px rgba(23,146,183,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(23,146,183,0.2);
color: #fff;
}
.form-group.is-focused .form-control {
background-image: -webkit-gradient(linear,left top, left bottom,from(#1792b7),to(#1792b7)),-webkit-gradient(linear,left top, left bottom,from(#d2d2d2),to(#d2d2d2));
background-image: -webkit-linear-gradient(linear,left top, left bottom,from(#1792b7),to(#1792b7)),-webkit-linear-gradient(linear,left top, left bottom,from(#d2d2d2),to(#d2d2d2));
background-image: linear-gradient(linear,left top, left bottom,from(#1792b7),to(#1792b7)),linear-gradient(linear,left top, left bottom,from(#d2d2d2),to(#d2d2d2));
}
.navbar:not(.navbar-transparent) li:not(.btn):hover > a,
.navbar li.on-section:not(.btn) > a,
.navbar.full-screen-menu.navbar-transparent li:not(.btn):hover > a,
.navbar.full-screen-menu .navbar-toggle:hover,
.navbar:not(.navbar-transparent) .nav-cart:hover,
.navbar:not(.navbar-transparent) .hestia-toggle-search:hover {
color:#1792b7
}
.header-filter-gradient {
background: linear-gradient(45deg, rgba(168,29,132,1) 0%, rgb(234,57,111) 100%);
}
.has-text-color.has-header-gradient-color { color: #a81d84; }
.has-header-gradient-background-color[class*="has-background"] { background-color: #a81d84; }
.has-text-color.has-background-color-color { color: #E5E5E5; }
.has-background-color-background-color[class*="has-background"] { background-color: #E5E5E5; }
.btn.btn-primary:not(.colored-button):not(.btn-left):not(.btn-right):not(.btn-just-icon):not(.menu-item), input[type="submit"]:not(.search-submit), body:not(.woocommerce-account) .woocommerce .button.woocommerce-Button, .woocommerce .product button.button, .woocommerce .product button.button.alt, .woocommerce .product #respond input#submit, .woocommerce-cart .blog-post .woocommerce .cart-collaterals .cart_totals .checkout-button, .woocommerce-checkout #payment #place_order, .woocommerce-account.woocommerce-page button.button, .woocommerce .track_order button[type="submit"], .nav-cart .nav-cart-content .widget .buttons .button, .woocommerce a.button.wc-backward, body.woocommerce .wccm-catalog-item a.button, body.woocommerce a.wccm-button.button, form.woocommerce-form-coupon button.button, div.wpforms-container .wpforms-form button[type=submit].wpforms-submit, div.woocommerce a.button.alt, div.woocommerce table.my_account_orders .button, .btn.colored-button, .btn.btn-left, .btn.btn-right, .btn:not(.colored-button):not(.btn-left):not(.btn-right):not(.btn-just-icon):not(.menu-item):not(.hestia-sidebar-open):not(.hestia-sidebar-close){ padding-top:15px; padding-bottom:15px; padding-left:33px; padding-right:33px; }
.btn.btn-primary:not(.colored-button):not(.btn-left):not(.btn-right):not(.btn-just-icon):not(.menu-item), input[type="submit"]:not(.search-submit), body:not(.woocommerce-account) .woocommerce .button.woocommerce-Button, .woocommerce .product button.button, .woocommerce .product button.button.alt, .woocommerce .product #respond input#submit, .woocommerce-cart .blog-post .woocommerce .cart-collaterals .cart_totals .checkout-button, .woocommerce-checkout #payment #place_order, .woocommerce-account.woocommerce-page button.button, .woocommerce .track_order button[type="submit"], .nav-cart .nav-cart-content .widget .buttons .button, .woocommerce a.button.wc-backward, body.woocommerce .wccm-catalog-item a.button, body.woocommerce a.wccm-button.button, form.woocommerce-form-coupon button.button, div.wpforms-container .wpforms-form button[type=submit].wpforms-submit, div.woocommerce a.button.alt, div.woocommerce table.my_account_orders .button, input[type="submit"].search-submit, .hestia-view-cart-wrapper .added_to_cart.wc-forward, .woocommerce-product-search button, .woocommerce-cart .actions .button, #secondary div[id^=woocommerce_price_filter] .button, .woocommerce div[id^=woocommerce_widget_cart].widget .buttons .button, .searchform input[type=submit], .searchform button, .search-form:not(.media-toolbar-primary) input[type=submit], .search-form:not(.media-toolbar-primary) button, .woocommerce-product-search input[type=submit], .btn.colored-button, .btn.btn-left, .btn.btn-right, .btn:not(.colored-button):not(.btn-left):not(.btn-right):not(.btn-just-icon):not(.menu-item):not(.hestia-sidebar-open):not(.hestia-sidebar-close){border-radius:3px;}
h1, h2, h3, h4, h5, h6, .hestia-title, .hestia-title.title-in-content, p.meta-in-content , .info-title, .card-title,
.page-header.header-small .hestia-title, .page-header.header-small .title, .widget h5, .hestia-title,
.title, .footer-brand, .footer-big h4, .footer-big h5, .media .media-heading,
.carousel h1.hestia-title, .carousel h2.title,
.carousel span.sub-title, .hestia-about h1, .hestia-about h2, .hestia-about h3, .hestia-about h4, .hestia-about h5 {
font-family: ABeeZee;
}
@media (min-width: 769px){
.page-header.header-small .hestia-title,
.page-header.header-small .title,
h1.hestia-title.title-in-content,
.main article.section .has-title-font-size {
font-size: 41px;
}}@media (max-width: 480px){
.page-header.header-small .hestia-title,
.page-header.header-small .title,
h1.hestia-title.title-in-content,
.main article.section .has-title-font-size {
font-size: 26px;
}}@media (max-width: 768px){
.page-header.header-small .hestia-title,
.page-header.header-small .title,
h1.hestia-title.title-in-content,
.main article.section .has-title-font-size {
font-size: 26px;
}}@media (min-width: 769px){
.single-post-wrap h1:not(.title-in-content),
.page-content-wrap h1:not(.title-in-content),
.page-template-template-fullwidth article h1:not(.title-in-content) {
font-size: 41px;
}
.single-post-wrap h2,
.page-content-wrap h2,
.page-template-template-fullwidth article h2,
.main article.section .has-heading-font-size {
font-size: 36px;
}
.single-post-wrap h3,
.page-content-wrap h3,
.page-template-template-fullwidth article h3 {
font-size: 31px;
}
.single-post-wrap h4,
.page-content-wrap h4,
.page-template-template-fullwidth article h4 {
font-size: 26px;
}
.single-post-wrap h5,
.page-content-wrap h5,
.page-template-template-fullwidth article h5 {
font-size: 22px;
}
.single-post-wrap h6,
.page-content-wrap h6,
.page-template-template-fullwidth article h6 {
font-size: 17px;
}}@media (max-width: 480px){
.single-post-wrap h1:not(.title-in-content),
.page-content-wrap h1:not(.title-in-content),
.page-template-template-fullwidth article h1:not(.title-in-content) {
font-size: 30px;
}
.single-post-wrap h2,
.page-content-wrap h2,
.page-template-template-fullwidth article h2,
.main article.section .has-heading-font-size {
font-size: 28px;
}
.single-post-wrap h3,
.page-content-wrap h3,
.page-template-template-fullwidth article h3 {
font-size: 24px;
}
.single-post-wrap h4,
.page-content-wrap h4,
.page-template-template-fullwidth article h4 {
font-size: 22px;
}
.single-post-wrap h5,
.page-content-wrap h5,
.page-template-template-fullwidth article h5 {
font-size: 20px;
}
.single-post-wrap h6,
.page-content-wrap h6,
.page-template-template-fullwidth article h6 {
font-size: 18px;
}}@media (max-width: 768px){
.single-post-wrap h1:not(.title-in-content),
.page-content-wrap h1:not(.title-in-content),
.page-template-template-fullwidth article h1:not(.title-in-content) {
font-size: 30px;
}
.single-post-wrap h2,
.page-content-wrap h2,
.page-template-template-fullwidth article h2,
.main article.section .has-heading-font-size {
font-size: 28px;
}
.single-post-wrap h3,
.page-content-wrap h3,
.page-template-template-fullwidth article h3 {
font-size: 24px;
}
.single-post-wrap h4,
.page-content-wrap h4,
.page-template-template-fullwidth article h4 {
font-size: 22px;
}
.single-post-wrap h5,
.page-content-wrap h5,
.page-template-template-fullwidth article h5 {
font-size: 20px;
}
.single-post-wrap h6,
.page-content-wrap h6,
.page-template-template-fullwidth article h6 {
font-size: 18px;
}}@media (min-width: 769px){.single-post-wrap, .page-content-wrap, .single-post-wrap ul, .page-content-wrap ul, .single-post-wrap ol, .page-content-wrap ol, .single-post-wrap dl, .page-content-wrap dl, .single-post-wrap table, .page-content-wrap table, .page-template-template-fullwidth article, .main article.section .has-body-font-size {
font-size: 20px;
}}@media (max-width: 480px){.single-post-wrap, .page-content-wrap, .single-post-wrap ul, .page-content-wrap ul, .single-post-wrap ol, .page-content-wrap ol, .single-post-wrap dl, .page-content-wrap dl, .single-post-wrap table, .page-content-wrap table, .page-template-template-fullwidth article, .main article.section .has-body-font-size {
font-size: 16px;
}}@media (max-width: 768px){.single-post-wrap, .page-content-wrap, .single-post-wrap ul, .page-content-wrap ul, .single-post-wrap ol, .page-content-wrap ol, .single-post-wrap dl, .page-content-wrap dl, .single-post-wrap table, .page-content-wrap table, .page-template-template-fullwidth article, .main article.section .has-body-font-size {
font-size: 16px;
}}@media (min-width: 769px){#carousel-hestia-generic .hestia-title{
font-size: 42px;
}#carousel-hestia-generic span.sub-title{
font-size: 15px;
}#carousel-hestia-generic .btn{
font-size: 12px;
}}@media (min-width: 769px){
section.hestia-features .hestia-title,
section.hestia-shop .hestia-title,
section.hestia-work .hestia-title,
section.hestia-team .hestia-title,
section.hestia-pricing .hestia-title,
section.hestia-ribbon .hestia-title,
section.hestia-testimonials .hestia-title,
section.hestia-subscribe h2.title,
section.hestia-blogs .hestia-title,
.section.related-posts .hestia-title,
section.hestia-contact .hestia-title{
font-size: 37px;
}
section.hestia-features .hestia-info h4.info-title,
section.hestia-shop h4.card-title,
section.hestia-team h4.card-title,
section.hestia-testimonials h4.card-title,
section.hestia-blogs h4.card-title,
.section.related-posts h4.card-title,
section.hestia-contact h4.card-title,
section.hestia-contact .hestia-description h6{
font-size: 18px;
}
section.hestia-work h4.card-title,
section.hestia-contact .hestia-description h5{
font-size: 23px;
}
section.hestia-contact .hestia-description h1{
font-size: 42px;
}
section.hestia-contact .hestia-description h2{
font-size: 37px;
}
section.hestia-contact .hestia-description h3{
font-size: 32px;
}
section.hestia-contact .hestia-description h4{
font-size: 27px;
}}@media (min-width: 769px){
section.hestia-features h5.description,
section.hestia-shop h5.description,
section.hestia-work h5.description,
section.hestia-team h5.description,
section.hestia-testimonials h5.description,
section.hestia-subscribe h5.subscribe-description,
section.hestia-blogs h5.description,
section.hestia-contact h5.description{
font-size: 18px;
}}@media (max-width: 480px){
section.hestia-features h5.description,
section.hestia-shop h5.description,
section.hestia-work h5.description,
section.hestia-team h5.description,
section.hestia-testimonials h5.description,
section.hestia-subscribe h5.subscribe-description,
section.hestia-blogs h5.description,
section.hestia-contact h5.description{
font-size: 18px;
}}@media (max-width: 768px){
section.hestia-features h5.description,
section.hestia-shop h5.description,
section.hestia-work h5.description,
section.hestia-team h5.description,
section.hestia-testimonials h5.description,
section.hestia-subscribe h5.subscribe-description,
section.hestia-blogs h5.description,
section.hestia-contact h5.description{
font-size: 18px;
}}@media (min-width: 769px){
section.hestia-team p.card-description,
section.hestia-pricing p.text-gray,
section.hestia-testimonials p.card-description,
section.hestia-blogs p.card-description,
.section.related-posts p.card-description,
.hestia-contact p,
section.hestia-features .hestia-info p,
section.hestia-shop .card-description p{
font-size: 14px;
}
section.hestia-shop h6.category,
section.hestia-work .label-primary,
section.hestia-team h6.category,
section.hestia-pricing .card-pricing h6.category,
section.hestia-testimonials h6.category,
section.hestia-blogs h6.category,
.section.related-posts h6.category{
font-size: 12px;
}}@media (max-width: 480px){
section.hestia-team p.card-description,
section.hestia-pricing p.text-gray,
section.hestia-testimonials p.card-description,
section.hestia-blogs p.card-description,
.section.related-posts p.card-description,
.hestia-contact p,
section.hestia-features .hestia-info p,
section.hestia-shop .card-description p{
font-size: 14px;
}
section.hestia-shop h6.category,
section.hestia-work .label-primary,
section.hestia-team h6.category,
section.hestia-pricing .card-pricing h6.category,
section.hestia-testimonials h6.category,
section.hestia-blogs h6.category,
.section.related-posts h6.category{
font-size: 12px;
}}@media (max-width: 768px){
section.hestia-team p.card-description,
section.hestia-pricing p.text-gray,
section.hestia-testimonials p.card-description,
section.hestia-blogs p.card-description,
.section.related-posts p.card-description,
.hestia-contact p,
section.hestia-features .hestia-info p,
section.hestia-shop .card-description p{
font-size: 14px;
}
section.hestia-shop h6.category,
section.hestia-work .label-primary,
section.hestia-team h6.category,
section.hestia-pricing .card-pricing h6.category,
section.hestia-testimonials h6.category,
section.hestia-blogs h6.category,
.section.related-posts h6.category{
font-size: 12px;
}}
.page-template-builder-fullwidth-std .header > .elementor {
padding-top: 70px;
}
</style>
<link rel='stylesheet' id='hestia_fonts-css' href='https://fonts.googleapis.com/css?family=Roboto%3A300%2C400%2C500%2C700%7CRoboto+Slab%3A400%2C700&subset=latin%2Clatin-ext&ver=3.0.8' type='text/css' media='all' />
<link rel='stylesheet' id='hestia-google-font-abeezee-css' href='https://fonts.googleapis.com/css?family=ABeeZee%3A300%2C400%2C500%2C700&subset=latin&ver=5.6.1' type='text/css' media='all' />
<script type='text/javascript' src='wp-includes/js/jquery/jquery.min9d52.js?ver=3.5.1' id='jquery-core-js'></script>
<script type='text/javascript' src='wp-includes/js/jquery/jquery-migrate.mind617.js?ver=3.3.2' id='jquery-migrate-js'></script>
<link rel="https://api.w.org/" href="wp-json/index.html" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="xmlrpc0db0.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.6.1" />
<!-- Enter your scripts here --> <style type="text/css" id="wp-custom-css">
/* .navbar {
position: static;
}
.navbar.navbar-scroll-point, .navbar.navbar-scroll-point.header-with-topbar, .navbar.navbar-scroll-point.hestia_center, .navbar.navbar-scroll-point.hestia_right {
position: static;
top: auto;
} */
@media (min-width: 769px) {
.navbar.navbar-scroll-point {
display: none;
}
}
</style>
</head>
<body class="home blog header-layout-default">
<div class="wrapper default ">
<header class="header ">
<div style="display: none"></div> <nav class="navbar navbar-default navbar-fixed-top hestia_left">
<div class="container">
<div class="navbar-header">
<div class="title-logo-wrapper">
<a class="navbar-brand" href="index.html"
title="Zach Brogan">
<p>Zach Brogan</p></a>
</div>
<div class="navbar-toggle-wrapper">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#main-navigation">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="sr-only">Toggle Navigation</span>
</button>
</div>
</div>
<div id="main-navigation" class="collapse navbar-collapse"><ul id="menu-main-menu" class="nav navbar-nav"><li id="menu-item-197" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-197"><a title="BYU IoT Lab" href="category/byu-iot-lab/index.html">BYU IoT Lab</a></li>
<li id="menu-item-198" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-198"><a title="Personal Projects" href="category/personal-projects/index.html">Personal Projects</a></li>
<li id="menu-item-110" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-110"><a title="Portfolio" href="portfolio/index.html">Portfolio</a></li>
<li class="hestia-search-in-menu"><div class="hestia-nav-search"><form role="search" method="get" class="search-form" action="https://wp-archive.zachbrogan.com/">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" placeholder="Search …" value="" name="s" />
</label>
<input type="submit" class="search-submit" value="Search" />
</form></div><a class="hestia-toggle-search"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="16" height="16"><path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"></path></svg></a></li></ul></div> </div>
</nav>
</header>
<div id="primary" class=" page-header header-small" data-parallax="active" ><div class="container"><div class="row"><div class="col-md-10 col-md-offset-1 text-center"><h1 class="hestia-title">Software Engineering Blog</h1></div></div></div><div class="header-filter" style="background-image: url(wp-content/uploads/2017/09/Screen-Shot-2017-09-22-at-50145-PM.png);"></div></div>
<div class="main ">
<div class="hestia-blogs" data-layout="sidebar-right">
<div class="container">
<div class="row">
<div class="col-md-8 blog-posts-wrap">
<div class="flex-row"><article
id="post-373"
class="card card-blog card-plain post-373 post type-post status-publish format-standard hentry category-byu-iot-lab"><div class="row "><div class= "col-sm-12"><h6 class="category text-info"><a href="category/byu-iot-lab/index.html" title="View all posts in BYU IoT Lab" rel="tag">BYU IoT Lab</a> </h6><h2 class="card-title entry-title"><a href="byu-iot-lab/hvac-schematic-and-custom-board/index.html" title="HVAC Schematic and Custom Board" rel="bookmark">HVAC Schematic and Custom Board</a></h2><div class="card-description entry-summary "><p>The hvac controller design mentioned in this post has been updated with a new schematic and board design. I drew a schematic by hand and then asked another member of the team to create the design in Eagle. The plan is<a class="moretag" href="byu-iot-lab/hvac-schematic-and-custom-board/index.html"> Read more…</a></p>
</div><div class="posted-by vcard author">By <a href="author/admin/index.html" title="admin" class="url"><b class="author-name fn">admin</b></a>, <a href="byu-iot-lab/hvac-schematic-and-custom-board/index.html"><time class="entry-date published" datetime="2018-04-21T21:23:23-06:00" content="2018-04-21">3 years</time><time class="updated hestia-hidden" datetime="2018-04-21T21:24:26-06:00">3 years</time> ago </a></div></div></div></article><article
id="post-316"
class="card card-blog card-plain post-316 post type-post status-publish format-standard hentry category-byu-iot-lab"><div class="row "><div class= "col-sm-12"><h6 class="category text-info"><a href="category/byu-iot-lab/index.html" title="View all posts in BYU IoT Lab" rel="tag">BYU IoT Lab</a> </h6><h2 class="card-title entry-title"><a href="byu-iot-lab/thermostat-api/index.html" title="Thermostat API" rel="bookmark">Thermostat API</a></h2><div class="card-description entry-summary "><p>An IoT thermostat API to connect hvac and temperature APIs The thermostat API provides controls and logic for the whole thermostat system. This component of an IoT thermostat is what ties everything together: It gets the current temperature from the<a class="moretag" href="byu-iot-lab/thermostat-api/index.html"> Read more…</a></p>
</div><div class="posted-by vcard author">By <a href="author/admin/index.html" title="admin" class="url"><b class="author-name fn">admin</b></a>, <a href="byu-iot-lab/thermostat-api/index.html"><time class="entry-date published" datetime="2018-04-11T22:32:50-06:00" content="2018-04-11">3 years</time><time class="updated hestia-hidden" datetime="2018-04-11T22:38:15-06:00">3 years</time> ago </a></div></div></div></article><article
id="post-321"
class="card card-blog card-plain post-321 post type-post status-publish format-standard hentry category-byu-iot-lab"><div class="row "><div class= "col-sm-12"><h6 class="category text-info"><a href="category/byu-iot-lab/index.html" title="View all posts in BYU IoT Lab" rel="tag">BYU IoT Lab</a> </h6><h2 class="card-title entry-title"><a href="byu-iot-lab/thermostat-web-app/index.html" title="Thermostat Web App" rel="bookmark">Thermostat Web App</a></h2><div class="card-description entry-summary "><p>A web-based interface for controlling the IoT thermostat The API-based IoT thermostat system I have been working on has four main components: HVAC Controller, Software and API Temperature Sensor, Software, and API Thermostat Logic, and API Interface for controlling thermostat<a class="moretag" href="byu-iot-lab/thermostat-web-app/index.html"> Read more…</a></p>
</div><div class="posted-by vcard author">By <a href="author/admin/index.html" title="admin" class="url"><b class="author-name fn">admin</b></a>, <a href="byu-iot-lab/thermostat-web-app/index.html"><time class="entry-date published" datetime="2018-04-11T17:51:51-06:00" content="2018-04-11">3 years</time><time class="updated hestia-hidden" datetime="2018-04-11T18:50:15-06:00">3 years</time> ago </a></div></div></div></article><article
id="post-301"
class="card card-blog card-plain post-301 post type-post status-publish format-standard hentry category-byu-iot-lab tag-api tag-aws tag-esp8266 tag-sensor tag-temperature tag-temperature-sensor tag-thermostat tag-tmp36gz tag-wemos"><div class="row "><div class= "col-sm-12"><h6 class="category text-info"><a href="category/byu-iot-lab/index.html" title="View all posts in BYU IoT Lab" rel="tag">BYU IoT Lab</a> </h6><h2 class="card-title entry-title"><a href="byu-iot-lab/temperature-sensor/index.html" title="Temperature Sensor" rel="bookmark">Temperature Sensor</a></h2><div class="card-description entry-summary "><p>An independent temperature sensor as part of the IoT thermostat As mentioned in one of my previous posts, a typical thermostat can be broken down into four subsystems: HVAC controller for activating heater/ac/fan Temperature sensor Temperature set point: interface for<a class="moretag" href="byu-iot-lab/temperature-sensor/index.html"> Read more…</a></p>
</div><div class="posted-by vcard author">By <a href="author/admin/index.html" title="admin" class="url"><b class="author-name fn">admin</b></a>, <a href="byu-iot-lab/temperature-sensor/index.html"><time class="entry-date published" datetime="2018-04-05T00:28:06-06:00" content="2018-04-05">3 years</time><time class="updated hestia-hidden" datetime="2018-04-05T00:33:30-06:00">3 years</time> ago </a></div></div></div></article><article
id="post-292"
class="card card-blog card-plain post-292 post type-post status-publish format-standard hentry category-byu-iot-lab tag-api tag-aws tag-hvac"><div class="row "><div class= "col-sm-12"><h6 class="category text-info"><a href="category/byu-iot-lab/index.html" title="View all posts in BYU IoT Lab" rel="tag">BYU IoT Lab</a> </h6><h2 class="card-title entry-title"><a href="byu-iot-lab/hvac-api/index.html" title="HVAC API" rel="bookmark">HVAC API</a></h2><div class="card-description entry-summary "><p>Web API for hvac built on AWS The HVAC API is used as a virtual representation of the physical HVAC devices. It serves as a bridge between the physical hvac controller and other devices, software, and APIs. The API has<a class="moretag" href="byu-iot-lab/hvac-api/index.html"> Read more…</a></p>
</div><div class="posted-by vcard author">By <a href="author/admin/index.html" title="admin" class="url"><b class="author-name fn">admin</b></a>, <a href="byu-iot-lab/hvac-api/index.html"><time class="entry-date published" datetime="2018-03-24T03:44:23-06:00" content="2018-03-24">3 years</time><time class="updated hestia-hidden" datetime="2018-03-27T01:42:51-06:00">3 years</time> ago </a></div></div></div></article><article
id="post-281"
class="card card-blog card-plain post-281 post type-post status-publish format-standard hentry category-byu-iot-lab"><div class="row "><div class= "col-sm-12"><h6 class="category text-info"><a href="category/byu-iot-lab/index.html" title="View all posts in BYU IoT Lab" rel="tag">BYU IoT Lab</a> </h6><h2 class="card-title entry-title"><a href="byu-iot-lab/hvac-software/index.html" title="HVAC Software" rel="bookmark">HVAC Software</a></h2><div class="card-description entry-summary "><p>Arduino code for esp8266-based hvac As mentioned in the previous post, I chose to use the esp8266 for developing the hvac controller. The esp8266 is super cheap and relatively easy to use: perfect for IoT prototyping. There are a number<a class="moretag" href="byu-iot-lab/hvac-software/index.html"> Read more…</a></p>
</div><div class="posted-by vcard author">By <a href="author/admin/index.html" title="admin" class="url"><b class="author-name fn">admin</b></a>, <a href="byu-iot-lab/hvac-software/index.html"><time class="entry-date published" datetime="2018-03-22T19:24:28-06:00" content="2018-03-22">3 years</time><time class="updated hestia-hidden" datetime="2018-03-24T02:44:49-06:00">3 years</time> ago </a></div></div></div></article><article
id="post-229"
class="card card-blog card-plain post-229 post type-post status-publish format-standard hentry category-byu-iot-lab tag-api tag-arduino tag-aws tag-byu tag-esp8266 tag-hvac tag-iot tag-personal-api tag-thermostat"><div class="row "><div class= "col-sm-12"><h6 class="category text-info"><a href="category/byu-iot-lab/index.html" title="View all posts in BYU IoT Lab" rel="tag">BYU IoT Lab</a> </h6><h2 class="card-title entry-title"><a href="byu-iot-lab/hvac-controller/index.html" title="HVAC Controller" rel="bookmark">HVAC Controller</a></h2><div class="card-description entry-summary "><p>Part of a Better IoT Thermostat Summary My research has involved building a wifi-controlled HVAC (heating, ventilation, and air conditioning) controller with a web API. This facilitates the creation of a practical and affordable IoT thermostat. Hardware: An ESP8266, 3 solid-state relays,<a class="moretag" href="byu-iot-lab/hvac-controller/index.html"> Read more…</a></p>
</div><div class="posted-by vcard author">By <a href="author/admin/index.html" title="admin" class="url"><b class="author-name fn">admin</b></a>, <a href="byu-iot-lab/hvac-controller/index.html"><time class="entry-date published" datetime="2017-09-29T23:56:46-06:00" content="2017-09-29">3 years</time><time class="updated hestia-hidden" datetime="2018-03-24T02:57:36-06:00">3 years</time> ago </a></div></div></div></article><article
id="post-194"
class="card card-blog card-plain post-194 post type-post status-publish format-standard hentry category-uncategorized"><div class="row "><div class= "col-sm-12"><h6 class="category text-info"><a href="category/uncategorized/index.html" title="View all posts in Uncategorized" rel="tag">Uncategorized</a> </h6><h2 class="card-title entry-title"><a href="uncategorized/welcome/index.html" title="Welcome" rel="bookmark">Welcome</a></h2><div class="card-description entry-summary "><p>This site is still under development. In the future I will update it with blog posts about programming projects I am working on. You can find a link to my resume on the portfolio page.</p>
</div><div class="posted-by vcard author">By <a href="author/admin/index.html" title="admin" class="url"><b class="author-name fn">admin</b></a>, <a href="uncategorized/welcome/index.html"><time class="entry-date published" datetime="2017-09-28T00:05:51-06:00" content="2017-09-28">3 years</time><time class="updated hestia-hidden" datetime="2017-09-28T00:20:08-06:00">3 years</time> ago </a></div></div></div></article></div> </div>
<div class="col-md-3 blog-sidebar-wrapper col-md-offset-1">
<aside id="secondary" class="blog-sidebar" role="complementary">
<div id="recent-posts-9" class="widget widget_recent_entries">
<h5>Recent Posts</h5>
<ul>
<li>
<a href="byu-iot-lab/hvac-schematic-and-custom-board/index.html">HVAC Schematic and Custom Board</a>
</li>
<li>
<a href="byu-iot-lab/thermostat-api/index.html">Thermostat API</a>
</li>
<li>
<a href="byu-iot-lab/thermostat-web-app/index.html">Thermostat Web App</a>
</li>
<li>
<a href="byu-iot-lab/temperature-sensor/index.html">Temperature Sensor</a>
</li>
<li>
<a href="byu-iot-lab/hvac-api/index.html">HVAC API</a>
</li>
<li>
<a href="byu-iot-lab/hvac-software/index.html">HVAC Software</a>
</li>
<li>
<a href="byu-iot-lab/hvac-controller/index.html">HVAC Controller</a>
</li>
<li>
<a href="uncategorized/welcome/index.html">Welcome</a>
</li>
</ul>
</div><div id="archives-10" class="widget widget_archive"><h5>Archives</h5>
<ul>
<li><a href='2018/04/index.html'>April 2018</a></li>
<li><a href='2018/03/index.html'>March 2018</a></li>
<li><a href='2017/09/index.html'>September 2017</a></li>
</ul>
</div><div id="categories-11" class="widget widget_categories"><h5>Categories</h5>
<ul>
<li class="cat-item cat-item-8"><a href="category/byu-iot-lab/index.html" title="My work as a research assistant at BYU's Internet of Things Lab">BYU IoT Lab</a> (7)
</li>
<li class="cat-item cat-item-1"><a href="category/uncategorized/index.html">Uncategorized</a> (1)
</li>
</ul>
</div><div id="linkcat-6" class="widget widget_links"><h5>Social</h5>
<ul class='xoxo blogroll'>
<li><a href="https://www.facebook.com/ZachBrogan" rel="me" title="Zach Brogan’s Facebook" target="_blank">Facebook</a></li>
<li><a href="https://github.com/zbrogz" title="Zach Brogan’s Github" target="_blank">Github</a></li>
<li><a href="https://www.linkedin.com/in/zachbrogan/" rel="me" title="Zach Brogan’s LinkedIn Profile" target="_blank">LinkedIn</a></li>
<li><a href="https://twitter.com/zbrogz" rel="me" title="Zach Brogan’s Twitter" target="_blank">Twitter</a></li>
</ul>
</div>
</aside><!-- .sidebar .widget-area -->
</div>
</div>
</div>
</div>
<footer class="footer footer-black footer-big">
<div class="container">
<div class="hestia-bottom-footer-content"><ul id="menu-social" class="footer-menu pull-left"><li id="menu-item-124" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-124"><a href="https://www.linkedin.com/in/zachbrogan/">LinkedIn</a></li>
<li id="menu-item-130" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-130"><a href="https://github.com/zbrogz">Github</a></li>
<li id="menu-item-127" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-127"><a href="https://twitter.com/zbrogz">Twitter</a></li>
<li id="menu-item-128" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-128"><a href="https://www.facebook.com/ZachBrogan">Facebook</a></li>
</ul> <div class="copyright pull-right">
Hestia | Developed by <a href="https://themeisle.com/" rel="nofollow">ThemeIsle</a> </div>
</div> </div>
</footer>
</div>
</div>
<img alt='css.php' src="wp-content/plugins/cookies-for-comments/cssdf6c.gif?k=8cca3334dcb83dcc580233885c3d4992&o=i&t=1758255714" width='1' height='1' /><!-- Enter your scripts here -->
<button class="hestia-scroll-to-top">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" width="12.5px" height="20px"><path d="M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z"></path></svg>
</button>
<link rel='stylesheet' id='font-awesome-5-all-css' href='wp-content/themes/hestia/assets/font-awesome/css/all.min20b9.css?ver=1.0.2' type='text/css' media='all' />
<link rel='stylesheet' id='font-awesome-4-shim-css' href='wp-content/themes/hestia/assets/font-awesome/css/v4-shims.min20b9.css?ver=1.0.2' type='text/css' media='all' />
<script type='text/javascript' src='wp-content/themes/hestia/assets/bootstrap/js/bootstrap.min20b9.js?ver=1.0.2' id='jquery-bootstrap-js'></script>
<script type='text/javascript' src='wp-includes/js/jquery/ui/core.min35d0.js?ver=1.12.1' id='jquery-ui-core-js'></script>
<script type='text/javascript' id='hestia_scripts-js-extra'>
/* <![CDATA[ */
var requestpost = {"ajaxurl":"https:\/\/wp-archive.zachbrogan.com\/wp-admin\/admin-ajax.php","disable_autoslide":"","masonry":""};
/* ]]> */
</script>
<script type='text/javascript' src='wp-content/themes/hestia/assets/js/script.min6173.js?ver=3.0.8' id='hestia_scripts-js'></script>
<script type='text/javascript' src='wp-includes/js/wp-embed.mind96d.js?ver=5.6.1' id='wp-embed-js'></script>
</body>
<!-- Mirrored from zachbrogan.com/ by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 06 Feb 2021 21:32:00 GMT -->
</html>