-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1610 lines (1448 loc) · 114 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-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="https://mikethecanuck.wordpress.com/xmlrpc.php">
<title>Notes to self: merging my fork with upstream – The rattled cough of Mike's imagination</title>
<script type="text/javascript">
WebFontConfig = {"google":{"families":["Arimo:r,i,b,bi:latin,latin-ext"]}};
(function() {
var wf = document.createElement('script');
wf.src = 'https://s0.wp.com/wp-content/plugins/custom-fonts/js/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script><style id="jetpack-custom-fonts-css">.wf-active code, .wf-active kbd, .wf-active pre, .wf-active samp{font-family:"Arimo",sans-serif}.wf-active body, .wf-active button, .wf-active input, .wf-active select, .wf-active textarea{font-family:"Arimo",sans-serif}.wf-active blockquote cite{font-family:"Arimo",sans-serif}.wf-active pre{font-family:"Arimo",sans-serif}.wf-active code, .wf-active kbd, .wf-active tt, .wf-active var{font-family:"Arimo",sans-serif}.wf-active button, .wf-active input[type="button"], .wf-active input[type="reset"], .wf-active input[type="submit"]{font-family:"Arimo",sans-serif}.wf-active .main-navigation ul ul{font-family:"Arimo",sans-serif}.wf-active .widget_calendar caption{font-family:"Arimo",sans-serif}.wf-active .widget_goodreads div[class^="gr_custom_author"]{font-family:"Arimo",sans-serif}.wf-active .widget_rss .rss-date{font-family:"Arimo",sans-serif}.wf-active .contact-form label{font-family:"Arimo",sans-serif}.wf-active .post-password-form label{font-family:"Arimo",sans-serif}.wf-active .featured-post{font-family:"Arimo",sans-serif}.wf-active .entry-footer span, .wf-active .entry-meta span, .wf-active .post-format-label{font-family:"Arimo",sans-serif}.wf-active .entry-meta a:not(.post-edit-link){font-family:"Arimo",sans-serif}.wf-active .nav-links .nav-subtitle{font-family:"Arimo",sans-serif}.wf-active .page-links .page-links-title{font-family:"Arimo",sans-serif}.wf-active .archive .format-quote .post-format-label a, .wf-active .blog .format-quote .post-format-label a, .wf-active .single .format-quote .post-format-label a{font-family:"Arimo",sans-serif}.wf-active .archive .format-status .post-format-label a, .wf-active .blog .format-status .post-format-label a, .wf-active .single .format-status .post-format-label a{font-family:"Arimo",sans-serif}.wf-active .comment-form label{font-family:"Arimo",sans-serif}.wf-active .comment-metadata .edit-link, .wf-active .pingback .edit-link{font-family:"Arimo",sans-serif}.wf-active .comment-navigation .nav-links a, .wf-active .comment-respond #reply-title small, .wf-active .reply a{font-family:"Arimo",sans-serif}.wf-active #infinite-handle span button, .wf-active #infinite-handle span button:focus, .wf-active #infinite-handle span button:hover, .wf-active .posts-navigation .nav-next a, .wf-active .posts-navigation .nav-previous a{font-family:"Arimo",sans-serif}</style>
<meta name='robots' content='max-image-preview:large' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//wordpress.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//s.pubmine.com' />
<link rel='dns-prefetch' href='//x.bidswitch.net' />
<link rel='dns-prefetch' href='//static.criteo.net' />
<link rel='dns-prefetch' href='//ib.adnxs.com' />
<link rel='dns-prefetch' href='//aax.amazon-adsystem.com' />
<link rel='dns-prefetch' href='//bidder.criteo.com' />
<link rel='dns-prefetch' href='//cas.criteo.com' />
<link rel='dns-prefetch' href='//gum.criteo.com' />
<link rel='dns-prefetch' href='//ads.pubmatic.com' />
<link rel='dns-prefetch' href='//gads.pubmatic.com' />
<link rel='dns-prefetch' href='//tpc.googlesyndication.com' />
<link rel='dns-prefetch' href='//ad.doubleclick.net' />
<link rel='dns-prefetch' href='//googleads.g.doubleclick.net' />
<link rel='dns-prefetch' href='//www.googletagservices.com' />
<link rel='dns-prefetch' href='//cdn.switchadhub.com' />
<link rel='dns-prefetch' href='//delivery.g.switchadhub.com' />
<link rel='dns-prefetch' href='//delivery.swid.switchadhub.com' />
<link rel='dns-prefetch' href='//a.teads.tv' />
<link rel='dns-prefetch' href='//prebid.media.net' />
<link rel='dns-prefetch' href='//adserver-us.adtech.advertising.com' />
<link rel='dns-prefetch' href='//fastlane.rubiconproject.com' />
<link rel='dns-prefetch' href='//prebid-server.rubiconproject.com' />
<link rel='dns-prefetch' href='//hb-api.omnitagjs.com' />
<link rel='dns-prefetch' href='//mtrx.go.sonobi.com' />
<link rel='dns-prefetch' href='//apex.go.sonobi.com' />
<link rel='dns-prefetch' href='//u.openx.net' />
<link rel="alternate" type="application/rss+xml" title="The rattled cough of Mike's imagination » Feed" href="https://mikethecanuck.wordpress.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="The rattled cough of Mike's imagination » Comments Feed" href="https://mikethecanuck.wordpress.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="The rattled cough of Mike's imagination » Notes to self: merging my fork with upstream Comments Feed" href="https://mikethecanuck.wordpress.com/2017/02/05/notes-to-self-merging-my-fork-with-upstream/feed/" />
<script type="text/javascript">
/* <![CDATA[ */
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function () {
oldonload();
func();
}
}
}
/* ]]> */
</script>
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/72x72\/","ext":".png","svgUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/s0.wp.com\/wp-includes\/js\/wp-emoji-release.min.js?m=1612197847h&ver=5.7.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='all-css-0-1' href='https://s0.wp.com/_static/??-eJydkd1OxCAQhV9IOlZ3NXthfBYoE6TLX5hhN317aZtV3MbGeEM4w/nOMADXJIYYGAODLyK5YmwguKYhekHeOpzuVDcQPUCDKRfNNxizlprAuKik23ibFhmdZNQiReI7tYc5e0aCETnJ4SwWtbHfvKZUqTCbepIRLv1jd+h6UMU6PV97CVBZ5gmIJ4d/CFqopr+cYmFhstX/jciSbTD0C95MPs9Q6z5Jnh0etZXo0FfbHrZ+nlIpI5Goq7fFC/6o4O5DV2qOXp8YqvFnZUUthMi20vS12WSurSAVBRzLGEtuhn33b/1Lfzo8PR9fT+Mnon32wg==?cssminify=yes' type='text/css' media='all' />
<style id='wp-block-library-inline-css'>
.has-text-align-justify {
text-align:justify;
}
</style>
<link crossorigin="anonymous" rel='stylesheet' id='toujours-fonts-css' href='https://fonts.googleapis.com/css?family=Alegreya+Sans%3A300%2C500%2C300italic%2C500italic%7CMerriweather%3A700italic%2C400%2C400italic%2C700%2C600&subset=latin%2Clatin-ext' media='all' />
<link rel='stylesheet' id='all-css-2-1' href='https://s0.wp.com/_static/??-eJx9UNsOwiAM/SGxzmRmPhi/hWFFNqCElpD9vejTjLq3c9JzaQs1KUNRMArIAwMypDKCUJmoZIbRk5l5b5h3sJKGopIv1kUGixGza4M/8Mv7q8ZFAyyLR1WTobDVV93NojBgaVOaHSqvKwiG5LW03HfM9sKk2lVaHMUPou5eu7xlzdj+YRu00FQr+jJdw6Xrz4fu1B+HYXoCPYeB+A==?cssminify=yes' type='text/css' media='all' />
<link rel='stylesheet' id='print-css-3-1' href='https://s0.wp.com/wp-content/mu-plugins/global-print/global-print.css?m=1465851035h&cssminify=yes' type='text/css' media='print' />
<style id='jetpack-global-styles-frontend-style-inline-css'>
:root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
</style>
<link rel='stylesheet' id='all-css-6-1' href='https://s0.wp.com/_static/??-eJxti0EKgCAQAD+ULUaJl+gtJqbG6opr9P3o0CHqNAzMwFmEpdxcbpAOUfDwMTMU4iY2NLECB1Nj9g97y9zB/8Vko0GB5Oktn6kFlxxDGMEjrQbvYEmzVHIclNZy2i9lFDfR?cssminify=yes' type='text/css' media='all' />
<script id='jetpack_related-posts-js-extra'>
var related_posts_js_options = {"post_heading":"h4"};
</script>
<script id='wpcom-actionbar-placeholder-js-extra'>
var actionbardata = {"siteID":"83101694","siteName":"The rattled cough of Mike's imagination","siteURL":"http:\/\/mikethecanuck.wordpress.com","icon":"<img alt='' src='https:\/\/s0.wp.com\/i\/logo\/wpcom-gray-white.png' class='avatar avatar-50' height='50' width='50' \/>","canManageOptions":"","canCustomizeSite":"","isFollowing":"","themeSlug":"pub\/toujours","signupURL":"https:\/\/wordpress.com\/start\/","loginURL":"https:\/\/wordpress.com\/log-in?redirect_to=https%3A%2F%2Fmikethecanuck.wordpress.com%2F2017%2F02%2F05%2Fnotes-to-self-merging-my-fork-with-upstream%2F&signup_flow=account","themeURL":"https:\/\/wordpress.com\/theme\/toujours\/","xhrURL":"https:\/\/mikethecanuck.wordpress.com\/wp-admin\/admin-ajax.php","nonce":"bf9c39bdc6","isSingular":"1","isFolded":"","isLoggedIn":"","isMobile":"","subscribeNonce":"<input type=\"hidden\" id=\"_wpnonce\" name=\"_wpnonce\" value=\"ee64fdb443\" \/>","referer":"https:\/\/mikethecanuck.wordpress.com\/2017\/02\/05\/notes-to-self-merging-my-fork-with-upstream\/","canFollow":"1","feedID":"33972327","statusMessage":"","customizeLink":"https:\/\/mikethecanuck.wordpress.com\/wp-admin\/customize.php?url=https%3A%2F%2Fmikethecanuck.wordpress.com%2F2017%2F02%2F05%2Fnotes-to-self-merging-my-fork-with-upstream%2F","postID":"4877","shortlink":"https:\/\/wp.me\/p5CGxU-1gF","canEditPost":"","editLink":"https:\/\/wordpress.com\/post\/mikethecanuck.wordpress.com\/4877","statsLink":"https:\/\/wordpress.com\/stats\/post\/4877\/mikethecanuck.wordpress.com","i18n":{"view":"View site","follow":"Follow","following":"Following","edit":"Edit","login":"Log in","signup":"Sign up","customize":"Customise","report":"Report this content","themeInfo":"Get theme: Toujours","shortlink":"Copy shortlink","copied":"Copied","followedText":"New posts from this site will now appear in your <a href=\"https:\/\/wordpress.com\/read\">Reader<\/a>","foldBar":"Collapse this bar","unfoldBar":"Expand this bar","editSubs":"Manage subscriptions","viewReader":"View site in Reader","viewReadPost":"View post in Reader","subscribe":"Sign me up","enterEmail":"Enter your email address","followers":"Join 373 other followers","alreadyUser":"Already have a WordPress.com account? <a href=\"https:\/\/wordpress.com\/log-in?redirect_to=https%3A%2F%2Fmikethecanuck.wordpress.com%2F2017%2F02%2F05%2Fnotes-to-self-merging-my-fork-with-upstream%2F&signup_flow=account\">Log in now.<\/a>","stats":"Statistics"}};
</script>
<script crossorigin='anonymous' type='text/javascript' src='https://s0.wp.com/_static/??-eJyFjtEKwjAMRX/IrJTBhg/it8wtlpYmrU2K7u/tQGHuxadLuCeHa54Z5sSKrCaIyUmUUGRy2AU5md+W0s1HhCpYGsAKnu/pyFGFHKvzLKZgnBQX2KyH6/vleY51Qdn04VGxrJ/oyPNfCMi70qR7eLe3RIVc0mtt3ZUudrBjb/thPIc3NWZbjQ=='></script>
<script type='text/javascript'>
window.addEventListener( 'DOMContentLoaded', function() {
rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
} );
</script>
<link rel='stylesheet' id='all-css-0-2' href='https://s0.wp.com/wp-content/mu-plugins/highlander-comments/style.css?m=1530132353h&cssminify=yes' type='text/css' media='all' />
<!--[if lt IE 8]>
<link rel='stylesheet' id='highlander-comments-ie7-css' href='https://s0.wp.com/wp-content/mu-plugins/highlander-comments/style-ie7.css?m=1351637563h&ver=20110606' media='all' />
<![endif]-->
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://mikethecanuck.wordpress.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://s0.wp.com/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress.com" />
<link rel="canonical" href="https://mikethecanuck.wordpress.com/2017/02/05/notes-to-self-merging-my-fork-with-upstream/" />
<link rel='shortlink' href='https://wp.me/p5CGxU-1gF' />
<link rel="alternate" type="application/json+oembed" href="https://public-api.wordpress.com/oembed/?format=json&url=https%3A%2F%2Fmikethecanuck.wordpress.com%2F2017%2F02%2F05%2Fnotes-to-self-merging-my-fork-with-upstream%2F&for=wpcom-auto-discovery" /><link rel="alternate" type="application/xml+oembed" href="https://public-api.wordpress.com/oembed/?format=xml&url=https%3A%2F%2Fmikethecanuck.wordpress.com%2F2017%2F02%2F05%2Fnotes-to-self-merging-my-fork-with-upstream%2F&for=wpcom-auto-discovery" />
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="article" />
<meta property="og:title" content="Notes to self: merging my fork with upstream" />
<meta property="og:url" content="https://mikethecanuck.wordpress.com/2017/02/05/notes-to-self-merging-my-fork-with-upstream/" />
<meta property="og:description" content="It’s supposed to be as natural as breathing, right? See a neat repository on Github, decide you want to use the code and make some minor changes to it right? So you fork the sucker, commit …" />
<meta property="article:published_time" content="2017-02-06T03:02:26+00:00" />
<meta property="article:modified_time" content="2017-02-06T03:02:26+00:00" />
<meta property="og:site_name" content="The rattled cough of Mike's imagination" />
<meta property="og:image" content="https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-behind.png" />
<meta property="og:image:width" content="519" />
<meta property="og:image:height" content="54" />
<meta property="og:image:alt" content="github-branch-is-xx-commits-behind" />
<meta property="og:locale" content="en_GB" />
<meta name="twitter:creator" content="@paranoidmike" />
<meta name="twitter:site" content="@paranoidmike" />
<meta name="twitter:text:title" content="Notes to self: merging my fork with upstream" />
<meta name="twitter:image" content="https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-behind.png?w=144" />
<meta name="twitter:image:alt" content="github-branch-is-xx-commits-behind" />
<meta name="twitter:card" content="summary" />
<meta property="fb:app_id" content="249643311490" />
<meta property="article:publisher" content="https://www.facebook.com/WordPresscom" />
<!-- End Jetpack Open Graph Tags -->
<link rel="shortcut icon" type="image/x-icon" href="https://s0.wp.com/i/favicon.ico" sizes="16x16 24x24 32x32 48x48" />
<link rel="icon" type="image/x-icon" href="https://s0.wp.com/i/favicon.ico" sizes="16x16 24x24 32x32 48x48" />
<link rel="apple-touch-icon" href="https://s0.wp.com/i/webclip.png" />
<link rel='openid.server' href='https://mikethecanuck.wordpress.com/?openidserver=1' />
<link rel='openid.delegate' href='https://mikethecanuck.wordpress.com/' />
<link rel="search" type="application/opensearchdescription+xml" href="https://mikethecanuck.wordpress.com/osd.xml" title="The rattled cough of Mike's imagination" />
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> <style type="text/css">
.recentcomments a {
display: inline !important;
padding: 0 !important;
margin: 0 !important;
}
table.recentcommentsavatartop img.avatar, table.recentcommentsavatarend img.avatar {
border: 0px;
margin: 0;
}
table.recentcommentsavatartop a, table.recentcommentsavatarend a {
border: 0px !important;
background-color: transparent !important;
}
td.recentcommentsavatarend, td.recentcommentsavatartop {
padding: 0px 0px 1px 0px;
margin: 0px;
}
td.recentcommentstextend {
border: none !important;
padding: 0px 0px 2px 10px;
}
.rtl td.recentcommentstextend {
padding: 0px 10px 2px 0px;
}
td.recentcommentstexttop {
border: none;
padding: 0px 0px 0px 10px;
}
.rtl td.recentcommentstexttop {
padding: 0px 10px 0px 0px;
}
</style>
<meta name="application-name" content="The rattled cough of Mike's imagination" /><meta name="msapplication-window" content="width=device-width;height=device-height" /><meta name="msapplication-task" content="name=Subscribe;action-uri=https://mikethecanuck.wordpress.com/feed/;icon-uri=https://s0.wp.com/i/favicon.ico" /><meta name="msapplication-task" content="name=Sign up for a free blog;action-uri=http://wordpress.com/signup/;icon-uri=https://s0.wp.com/i/favicon.ico" /><meta name="msapplication-task" content="name=WordPress.com Support;action-uri=http://support.wordpress.com/;icon-uri=https://s0.wp.com/i/favicon.ico" /><meta name="msapplication-task" content="name=WordPress.com Forums;action-uri=http://forums.wordpress.com/;icon-uri=https://s0.wp.com/i/favicon.ico" /><meta name="description" content="It's supposed to be as natural as breathing, right? See a neat repository on Github, decide you want to use the code and make some minor changes to it right? So you fork the sucker, commit some change, maybe push a PR back to the original repo? Then, you want to keep your repo around -…" />
<style type="text/css" id="custom-background-css">
body.custom-background { background-image: url("https://s0.wp.com/wp-content/themes/pub/toujours/images/toujoursbackground20160105.png"); background-position: left top; background-size: auto; background-repeat: repeat; background-attachment: scroll; }
</style>
<script type="text/javascript">
window.doNotSellCallback = function() {
var linkElements = [
'a[href="https://wordpress.com/?ref=footer_blog"]',
'a[href="https://wordpress.com/?ref=footer_website"]',
'a[href="https://wordpress.com/?ref=vertical_footer"]',
'a[href^="https://wordpress.com/?ref=footer_segment_"]',
].join(',');
var dnsLink = document.createElement( 'a' );
dnsLink.href = 'https://wordpress.com/advertising-program-optout';
dnsLink.classList.add( 'do-not-sell-link' );
dnsLink.rel = 'nofollow';
dnsLink.style.marginLeft = '0.5em';
dnsLink.textContent = 'Do Not Sell My Personal Information';
var creditLinks = document.querySelectorAll( linkElements );
if ( 0 === creditLinks.length ) {
return false;
}
Array.prototype.forEach.call( creditLinks, function( el ) {
el.insertAdjacentElement( 'afterend', dnsLink );
});
return true;
};
</script>
<script type="text/javascript">
function __ATA_CC() {var v = document.cookie.match('(^|;) ?personalized-ads-consent=([^;]*)(;|$)');return v ? 1 : 0;}
var __ATA_PP = { 'pt': 1, 'ht': 0, 'tn': 'toujours', 'amp': false, 'consent': __ATA_CC(), 'gdpr_applies': false, 'ad': { 'label': { 'text': 'Advertisements' }, 'reportAd': { 'text': 'Report this Ad' } }, 'siteid': 8982, 'blogid': 83101694 };
var __ATA = __ATA || {};
__ATA.cmd = __ATA.cmd || [];
__ATA.criteo = __ATA.criteo || {};
__ATA.criteo.cmd = __ATA.criteo.cmd || [];
</script>
<script type="text/javascript">
(function(){var g=Date.now||function(){return+new Date};function h(a,b){a:{for(var c=a.length,d="string"==typeof a?a.split(""):a,e=0;e<c;e++)if(e in d&&b.call(void 0,d[e],e,a)){b=e;break a}b=-1}return 0>b?null:"string"==typeof a?a.charAt(b):a[b]};function k(a,b,c){c=null!=c?"="+encodeURIComponent(String(c)):"";if(b+=c){c=a.indexOf("#");0>c&&(c=a.length);var d=a.indexOf("?");if(0>d||d>c){d=c;var e=""}else e=a.substring(d+1,c);a=[a.substr(0,d),e,a.substr(c)];c=a[1];a[1]=b?c?c+"&"+b:b:c;a=a[0]+(a[1]?"?"+a[1]:"")+a[2]}return a};var l=0;function m(a,b){var c=document.createElement("script");c.src=a;c.onload=function(){b&&b(void 0)};c.onerror=function(){b&&b("error")};a=document.getElementsByTagName("head");var d;a&&0!==a.length?d=a[0]:d=document.documentElement;d.appendChild(c)}function n(a){var b=void 0===b?document.cookie:b;return(b=h(b.split("; "),function(c){return-1!=c.indexOf(a+"=")}))?b.split("=")[1]:""}function p(a){return"string"==typeof a&&0<a.length}
function r(a,b,c){b=void 0===b?"":b;c=void 0===c?".":c;var d=[];Object.keys(a).forEach(function(e){var f=a[e],q=typeof f;"object"==q&&null!=f||"function"==q?d.push(r(f,b+e+c)):null!==f&&void 0!==f&&(e=encodeURIComponent(b+e),d.push(e+"="+encodeURIComponent(f)))});return d.filter(p).join("&")}function t(a,b){a||((window.__ATA||{}).config=b.c,m(b.url))}var u=Math.floor(1E13*Math.random()),v=window.__ATA||{};window.__ATA=v;window.__ATA.cmd=v.cmd||[];v.rid=u;v.createdAt=g();var w=window.__ATA||{},x="s.pubmine.com";
w&&w.serverDomain&&(x=w.serverDomain);var y="//"+x+"/conf",z=window.top===window,A=window.__ATA_PP&&window.__ATA_PP.gdpr_applies,B="boolean"===typeof A?Number(A):null,C=window.__ATA_PP||null,D=z?document.referrer?document.referrer:null:null,E=z?window.location.href:document.referrer?document.referrer:null,F,G=n("__ATA_tuuid");F=G?G:null;var H=window.innerWidth+"x"+window.innerHeight,I=n("usprivacy"),J=r({gdpr:B,pp:C,rid:u,src:D,ref:E,tuuid:F,vp:H,us_privacy:I?I:null},"",".");
(function(a){var b=void 0===b?"cb":b;l++;var c="callback__"+g().toString(36)+"_"+l.toString(36);a=k(a,b,c);window[c]=function(d){t(void 0,d)};m(a,function(d){d&&t(d)})})(y+"?"+J);}).call(this);
</script><link rel="amphtml" href="https://mikethecanuck.wordpress.com/2017/02/05/notes-to-self-merging-my-fork-with-upstream/amp/"><script type="text/javascript">
window.google_analytics_uacct = "UA-52447-2";
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-52447-2']);
_gaq.push(['_gat._anonymizeIp']);
_gaq.push(['_setDomainName', 'wordpress.com']);
_gaq.push(['_initData']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
})();
</script>
</head>
<body class="post-template-default single single-post postid-4877 single-format-standard custom-background wp-embed-responsive customizer-styles-applied highlander-enabled highlander-light">
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#content">Skip to content</a>
<header id="masthead" class="site-header" role="banner">
<div class="wrap">
<div class="site-branding">
<a href="https://mikethecanuck.wordpress.com/" class="site-logo-link" rel="home" itemprop="url"></a> <p class="site-title"><a href="https://mikethecanuck.wordpress.com/" rel="home">The rattled cough of Mike's imagination</a></p>
</div><!-- .site-branding -->
</div><!-- .wrap -->
</header><!-- #masthead -->
<div id="content" class="site-content">
<div class="wrap">
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<article id="post-4877" class="post-4877 post type-post status-publish format-standard hentry category-coding category-open-source category-salt-mines">
<header class="entry-header">
<h2 class="entry-title">Notes to self: merging my fork with upstream</h2>
<div class="entry-meta">
<span class="posted-on"><span>Published on <a href="https://mikethecanuck.wordpress.com/2017/02/05/notes-to-self-merging-my-fork-with-upstream/" rel="bookmark"><time class="entry-date published updated" datetime="2017-02-05T19:02:26-08:00">2017-02-05</time></a></span></span> <span class="byline">by <span class="author vcard"><a class="url fn n" href="https://mikethecanuck.wordpress.com/author/paranoidmike/">paranoidmike</a></span></span> </div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<p>It’s supposed to be as natural as breathing, right? See a neat repository on Github, decide you want to use the code and make some minor changes to it right? So you fork the sucker, commit some change, maybe push a PR back to the original repo?</p>
<p>Then, you want to keep your repo around – I dunno, maybe it’s for vanity, or maybe you’re continuing to make changes or use the project (and maybe, just maybe, you’ll find yourself wanting to push another PR in the future?). Or maybe messages like this just bother your OCD:</p>
<p><img data-attachment-id="4885" data-permalink="https://mikethecanuck.wordpress.com/2017/02/05/notes-to-self-merging-my-fork-with-upstream/github-branch-is-xx-commits-behind/" data-orig-file="https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-behind.png" data-orig-size="519,54" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="github-branch-is-xx-commits-behind" data-image-description="" data-medium-file="https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-behind.png?w=300" data-large-file="https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-behind.png?w=519" class="alignnone size-full wp-image-4885" src="https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-behind.png?w=760" alt="github-branch-is-xx-commits-behind" srcset="https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-behind.png 519w, https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-behind.png?w=150 150w, https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-behind.png?w=300 300w" sizes="(max-width: 519px) 100vw, 519px" /></p>
<p>Eventually, most developers will run into a situation in which they wish to re-sync their forked version of a project with the updates that have been made in “upstream”.</p>
<p>Should be dead easy, yes? People are doing this all the time, yes? Well, crap. If that’s the case, then I’m an idiot because I’d tried this a half-dozen times and never before arrived at the beautiful message “<em>This branch is even with</em>…”. So I figured I’d write it out (talk to the duck), and in so doing stumble on the solution.</p>
<p>GitHub help is supposed to help, e.g. <a href="https://help.github.com/articles/syncing-a-fork/">Syncing a fork</a>. Which depends on <a href="https://help.github.com/articles/configuring-a-remote-for-a-fork/">Configuring a remote for a fork</a>, and which is followed by <a href="https://help.github.com/articles/pushing-to-a-remote/">Pushing to a remote</a>.</p>
<p>Which for a foreign repo named e.g. “hackers/hackit” means the following stream of commands (after I’ve Forked the repo in GitHub.com and <strong>git clone</strong>‘d the repo on my local machine):</p>
<pre>git remote add upstream [email protected]:hackers/hackit.git
git fetch upstream
git checkout master
git merge upstream/master</pre>
<p>That last command will often result in a bunch of conflicts, if you’ve made any changes, e.g.:</p>
<pre class="p1"><span class="s1">git merge upstream/master</span>
<span class="s1">Auto-merging package.json</span>
<span class="s1">CONFLICT (content): Merge conflict in package.json</span>
<span class="s1">Auto-merging README.md</span>
<span class="s1">Auto-merging .travis.yml</span>
<span class="s1">CONFLICT (content): Merge conflict in .travis.yml</span>
<span class="s1">Auto-merging .babelrc</span>
<span class="s1">Automatic merge failed; fix conflicts and then commit the result.</span></pre>
<p>At this point I temporarily abandon the command line and dive into my favourite editor (Visual Studio Code with a handful of extensions) to resolve the conflicting files.</p>
<p>Once I’d merged changes from both sources (mine and upstream), then it was a simple matter of the usual commands:</p>
<pre>git add .
git commit -m "merged changes from upstream"
git push</pre>
<p>And the result is…</p>
<p><img data-attachment-id="4969" data-permalink="https://mikethecanuck.wordpress.com/2017/02/05/notes-to-self-merging-my-fork-with-upstream/github-branch-is-xx-commits-ahead/" data-orig-file="https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-ahead.png" data-orig-size="397,50" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="github-branch-is-xx-commits-ahead" data-image-description="" data-medium-file="https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-ahead.png?w=300" data-large-file="https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-ahead.png?w=397" class="alignnone size-full wp-image-4969" src="https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-ahead.png?w=760" alt="github-branch-is-xx-commits-ahead" srcset="https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-ahead.png 397w, https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-ahead.png?w=150 150w, https://mikethecanuck.files.wordpress.com/2017/02/github-branch-is-xx-commits-ahead.png?w=300 300w" sizes="(max-width: 397px) 100vw, 397px" /></p>
<p>(No it wasn’t quite the “<em>even</em>” paradise, but I’ll take it.)</p>
<h2>Aside</h2>
<p>I somehow got myself into a state where I couldn’t get the normal commands to work. For example, when I ran <strong>git push origin master</strong>, I get nowhere:</p>
<pre class="p1"><span class="s1">git push origin master</span>
<span class="s1">fatal: 'origin' does not appear to be a git repository</span>
<span class="s1">fatal: Could not read from remote repository.</span>
<span class="s1">Please make sure you have the correct access rights</span>
<span class="s1">and the repository exists.</span></pre>
<p>Or <strong>git push</strong>:</p>
<pre class="p1"><span class="s1">git push</span>
<span class="s1">ERROR: Permission to hackers/hackit.git denied to MikeTheCanuck.</span>
<span class="s1">fatal: Could not read from remote repository.</span>
<span class="s1">Please make sure you have the correct access rights</span>
<span class="s1">and the repository exists.</span></pre>
<p>Then when I added upstream…:</p>
<pre class="p1"><span class="s1">git remote add upstream [email protected]:hackers/hackit.git</span></pre>
<p>…and ran <strong>git remote -v</strong>…:</p>
<pre class="p1"><span class="s1">git remote -v</span>
<span class="s1">upstream [email protected]:hackers/hackit.git (fetch)</span>
<span class="s1">upstream [email protected]:hackers/hackit.git (push)</span></pre>
<p class="p1">…it appears I no longer had a reference to <strong>origin</strong>. (No idea how that happened, but hopefully these notes will help me not go astray again.) Adding back the reference to origin seemed the most likely solution, but I didn’t get the kind of results I wanted:</p>
<pre class="p1"><span class="s1">git remote add origin [email protected]:mikethecanuck/hackit.git
</span></pre>
<pre class="p1"><span class="s1">git remote -v</span>
<span class="s1">origin [email protected]:mikethecanuck/hackit.git (fetch)</span>
<span class="s1">origin [email protected]:mikethecanuck/hackit.git (push)</span>
<span class="s1">upstream [email protected]:hackers/hackit.git (fetch)</span>
<span class="s1">upstream [email protected]:hackers/hackit.git (push)</span></pre>
<pre class="p1"><span class="s1">git push origin master</span>
<span class="s1">To github.com:mikethecanuck/hackit.git</span>
<span class="s1"> ! [rejected]<span class="Apple-converted-space"> </span>master -> master (fetch first)</span>
<span class="s1">error: failed to push some refs to '[email protected]:mikethecanuck/hackit.git'</span>
<span class="s1">hint: Updates were rejected because the remote contains work that you do</span>
<span class="s1">hint: not have locally. This is usually caused by another repository pushing</span>
<span class="s1">hint: to the same ref. You may want to first integrate the remote changes</span>
<span class="s1">hint: (e.g., 'git pull ...') before pushing again.</span>
<span class="s1">hint: See the 'Note about fast-forwards' in 'git push --help' for details.</span></pre>
<p> </p>
<p>And when I pushed with no params, I went right back to the starting place:</p>
<pre class="p1"><span class="s1">git push</span>
<span class="s1">ERROR: Permission to hackers/hackit.git denied to MikeTheCanuck.</span>
<span class="s1">fatal: Could not read from remote repository.</span>
<span class="s1">Please make sure you have the correct access rights</span>
<span class="s1">and the repository exists.</span></pre>
<p>(I finally <strong>rm -rf</strong>‘d my forked repo, cloned it again, and started over – that’s how I got to the first part of the article.)</p>
<div id="atatags-370373-60919571ceed7">
<script type="text/javascript">
__ATA.cmd.push(function() {
__ATA.initVideoSlot('atatags-370373-60919571ceed7', {
sectionId: '370373',
format: 'inread'
});
});
</script>
</div> <div id="atatags-26942-60919571cef37"></div>
<script>
__ATA.cmd.push(function() {
__ATA.initDynamicSlot({
id: 'atatags-26942-60919571cef37',
location: 120,
formFactor: '001',
label: {
text: 'Advertisements',
},
creative: {
reportAd: {
text: 'Report this Ad',
},
privacySettings: {
text: 'Privacy',
}
}
});
});
</script><div id="jp-post-flair" class="sharedaddy sd-like-enabled sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-4877" class="share-twitter sd-button share-icon" href="https://mikethecanuck.wordpress.com/2017/02/05/notes-to-self-merging-my-fork-with-upstream/?share=twitter" target="_blank" title="Click to share on Twitter"><span>Twitter</span></a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-4877" class="share-facebook sd-button share-icon" href="https://mikethecanuck.wordpress.com/2017/02/05/notes-to-self-merging-my-fork-with-upstream/?share=facebook" target="_blank" title="Click to share on Facebook"><span>Facebook</span></a></li><li class="share-custom share-custom-linkedin"><a rel="nofollow noopener noreferrer" data-shared="" class="share-custom share-custom-linkedin sd-button share-icon" href="https://mikethecanuck.wordpress.com/2017/02/05/notes-to-self-merging-my-fork-with-upstream/?share=custom-1426636578" target="_blank" title="Click to share on LinkedIn"><span style="background-image:url("https://mikethecanuck.files.wordpress.com/2015/03/linkedin-gray-16x16.png");">LinkedIn</span></a></li><li class="share-end"></li></ul></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-83101694-4877-60919571cfc68' data-src='//widgets.wp.com/likes/index.html?ver=20210413#blog_id=83101694&post_id=4877&origin=mikethecanuck.wordpress.com&obj_id=83101694-4877-60919571cfc68' data-name='like-post-frame-83101694-4877-60919571cfc68'><h3 class='sd-title'>Like this:</h3><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class="loading">Loading...</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div>
<div id='jp-relatedposts' class='jp-relatedposts' >
<h3 class="jp-relatedposts-headline"><em>Related</em></h3>
</div></div>
</div><!-- .entry-content -->
<footer class="entry-footer">
<span class="cat-links">Categories <a href="https://mikethecanuck.wordpress.com/category/coding/" rel="category tag">coding</a>, <a href="https://mikethecanuck.wordpress.com/category/open-source/" rel="category tag">open source</a>, <a href="https://mikethecanuck.wordpress.com/category/salt-mines/" rel="category tag">Salt Mines</a></span> </footer><!-- .entry-footer -->
</article><!-- #post-## -->
<nav class="navigation post-navigation" role="navigation" aria-label="Posts">
<h2 class="screen-reader-text">Post navigation</h2>
<div class="nav-links"><div class="nav-previous"><a href="https://mikethecanuck.wordpress.com/2017/01/15/aws-wrangling-round-4-automating-the-setup-of-a-static-website/" rel="prev"><span class="nav-subtitle">Previous</span> <span class="nav-title">AWS wrangling, round 4: automating the setup of a static website</span></a></div><div class="nav-next"><a href="https://mikethecanuck.wordpress.com/2017/02/07/docker-container-commands-which-goes-where/" rel="next"><span class="nav-subtitle">Next</span> <span class="nav-title">Docker container commands: which goes where?</span></a></div></div>
</nav>
<div id="comments" class="comments-area">
<div id="respond" class="comment-respond">
<h3 id="reply-title" class="comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/2017/02/05/notes-to-self-merging-my-fork-with-upstream/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://mikethecanuck.wordpress.com/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><input type="hidden" id="highlander_comment_nonce" name="highlander_comment_nonce" value="da3801e717" /><input type="hidden" name="_wp_http_referer" value="/2017/02/05/notes-to-self-merging-my-fork-with-upstream/" />
<input type="hidden" name="hc_post_as" id="hc_post_as" value="guest" />
<div class="comment-form-field comment-textarea">
<label for="comment">Enter your comment here...</label>
<div id="comment-form-comment"><textarea id="comment" name="comment" title="Enter your comment here..."></textarea></div>
</div>
<div id="comment-form-identity">
<div id="comment-form-nascar">
<p>Fill in your details below or click an icon to log in:</p>
<ul>
<li class="selected" style="display:none;">
<a href="#comment-form-guest" id="postas-guest" class="nascar-signin-link"
title="Login via Guest">
</a>
</li>
<li>
<a href="#comment-form-load-service:WordPress.com" id="postas-wordpress" class="nascar-signin-link"
title="Login via WordPress.com">
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" viewBox="0 0 24 24" ><rect x="0" fill="none" width="24" height="24"/><g><path fill="#0087be" d="M12.158 12.786l-2.698 7.84c.806.236 1.657.365 2.54.365 1.047 0 2.05-.18 2.986-.51-.024-.037-.046-.078-.065-.123l-2.762-7.57zM3.008 12c0 3.56 2.07 6.634 5.068 8.092L3.788 8.342c-.5 1.117-.78 2.354-.78 3.658zm15.06-.454c0-1.112-.398-1.88-.74-2.48-.456-.74-.883-1.368-.883-2.11 0-.825.627-1.595 1.51-1.595.04 0 .078.006.116.008-1.598-1.464-3.73-2.36-6.07-2.36-3.14 0-5.904 1.613-7.512 4.053.21.008.41.012.58.012.94 0 2.395-.114 2.395-.114.484-.028.54.684.057.74 0 0-.487.058-1.03.086l3.275 9.74 1.968-5.902-1.4-3.838c-.485-.028-.944-.085-.944-.085-.486-.03-.43-.77.056-.742 0 0 1.484.114 2.368.114.94 0 2.397-.114 2.397-.114.486-.028.543.684.058.74 0 0-.488.058-1.03.086l3.25 9.665.897-2.997c.456-1.17.684-2.137.684-2.907zm1.82-3.86c.04.286.06.593.06.924 0 .912-.17 1.938-.683 3.22l-2.746 7.94c2.672-1.558 4.47-4.454 4.47-7.77 0-1.564-.4-3.033-1.1-4.314zM12 22C6.486 22 2 17.514 2 12S6.486 2 12 2s10 4.486 10 10-4.486 10-10 10z"/></g></svg> </a>
</li>
<li>
<iframe id="googleplus-sign-in" name="googleplus-sign-in" src="https://public-api.wordpress.com/connect/?googleplus-sign-in=https%3A%2F%2Fmikethecanuck.wordpress.com&color_scheme=light" width="24" height="24" scrolling="no" allowtransparency="true" seamless="seamless" frameborder="0"></iframe>
</li>
<li>
<a href="#comment-form-load-service:Twitter" id="postas-twitter" class="nascar-signin-link"
title="Login via Twitter">
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" viewBox="0 0 24 24" ><rect x="0" fill="none" width="24" height="24"/><g><path fill="#1DA1F2" d="M22.23 5.924c-.736.326-1.527.547-2.357.646.847-.508 1.498-1.312 1.804-2.27-.793.47-1.67.812-2.606.996C18.325 4.498 17.258 4 16.078 4c-2.266 0-4.103 1.837-4.103 4.103 0 .322.036.635.106.935-3.41-.17-6.433-1.804-8.457-4.287-.353.607-.556 1.312-.556 2.064 0 1.424.724 2.68 1.825 3.415-.673-.022-1.305-.207-1.86-.514v.052c0 1.988 1.415 3.647 3.293 4.023-.344.095-.707.145-1.08.145-.265 0-.522-.026-.773-.074.522 1.63 2.038 2.817 3.833 2.85-1.404 1.1-3.174 1.757-5.096 1.757-.332 0-.66-.02-.98-.057 1.816 1.164 3.973 1.843 6.29 1.843 7.547 0 11.675-6.252 11.675-11.675 0-.178-.004-.355-.012-.53.802-.578 1.497-1.3 2.047-2.124z"/></g></svg> </a>
</li>
<li>
<a href="#comment-form-load-service:Facebook" id="postas-facebook" class="nascar-signin-link"
title="Login via Facebook">
<svg xmlns="http://www.w3.org/2000/svg" role="presentation" viewBox="0 0 24 24" ><rect x="0" fill="none" width="24" height="24"/><g><path fill="#3B5998" d="M20.007 3H3.993C3.445 3 3 3.445 3 3.993v16.013c0 .55.445.994.993.994h8.62v-6.97H10.27V11.31h2.346V9.31c0-2.325 1.42-3.59 3.494-3.59.993 0 1.847.073 2.096.106v2.43h-1.438c-1.128 0-1.346.537-1.346 1.324v1.734h2.69l-.35 2.717h-2.34V21h4.587c.548 0 .993-.445.993-.993V3.993c0-.548-.445-.993-.993-.993z"/></g></svg> </a>
</li>
</ul>
</div>
<div id="comment-form-guest" class="comment-form-service selected">
<div class="comment-form-padder">
<div class="comment-form-avatar">
<a href="https://gravatar.com/site/signup/" target="_blank"> <img src="https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=25&d=retro&forcedefault=y&r=G" alt="Gravatar" width="25" class="no-grav" />
</a> </div>
<div class="comment-form-fields">
<div class="comment-form-field comment-form-email">
<label for="email">Email <span class="required">(required)</span> <span class="nopublish">(Address never made public)</span></label>
<div class="comment-form-input"><input id="email" name="email" type="email" value="" /></div>
</div>
<div class="comment-form-field comment-form-author">
<label for="author">Name <span class="required">(required)</span></label>
<div class="comment-form-input"><input id="author" name="author" type="text" value="" /></div>
</div>
<div class="comment-form-field comment-form-url">
<label for="url">Website</label>
<div class="comment-form-input"><input id="url" name="url" type="url" value="" /></div>
</div>
</div>
</div>
</div>
<div id="comment-form-wordpress" class="comment-form-service">
<div class="comment-form-padder">
<div class="comment-form-avatar">
<img src="https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=25&d=retro&forcedefault=y&r=G" alt="WordPress.com Logo" width="25" class="no-grav" />
</div>
<div class="comment-form-fields">
<input type="hidden" name="wp_avatar" id="wordpress-avatar" class="comment-meta-wordpress" value="" />
<input type="hidden" name="wp_user_id" id="wordpress-user_id" class="comment-meta-wordpress" value="" />
<input type="hidden" name="wp_access_token" id="wordpress-access_token" class="comment-meta-wordpress" value="" />
<p class="comment-form-posting-as pa-wordpress">
<strong></strong>
You are commenting using your WordPress.com account. <span class="comment-form-log-out">
( <a href="javascript:HighlanderComments.doExternalLogout( 'wordpress' );">Log Out</a> /
<a href="#" onclick="javascript:HighlanderComments.switchAccount();return false;">Change</a> )
</span>
<span class="pa-icon"><svg xmlns="http://www.w3.org/2000/svg" role="presentation" viewBox="0 0 24 24" ><rect x="0" fill="none" width="24" height="24"/><g><path fill="#0087be" d="M12.158 12.786l-2.698 7.84c.806.236 1.657.365 2.54.365 1.047 0 2.05-.18 2.986-.51-.024-.037-.046-.078-.065-.123l-2.762-7.57zM3.008 12c0 3.56 2.07 6.634 5.068 8.092L3.788 8.342c-.5 1.117-.78 2.354-.78 3.658zm15.06-.454c0-1.112-.398-1.88-.74-2.48-.456-.74-.883-1.368-.883-2.11 0-.825.627-1.595 1.51-1.595.04 0 .078.006.116.008-1.598-1.464-3.73-2.36-6.07-2.36-3.14 0-5.904 1.613-7.512 4.053.21.008.41.012.58.012.94 0 2.395-.114 2.395-.114.484-.028.54.684.057.74 0 0-.487.058-1.03.086l3.275 9.74 1.968-5.902-1.4-3.838c-.485-.028-.944-.085-.944-.085-.486-.03-.43-.77.056-.742 0 0 1.484.114 2.368.114.94 0 2.397-.114 2.397-.114.486-.028.543.684.058.74 0 0-.488.058-1.03.086l3.25 9.665.897-2.997c.456-1.17.684-2.137.684-2.907zm1.82-3.86c.04.286.06.593.06.924 0 .912-.17 1.938-.683 3.22l-2.746 7.94c2.672-1.558 4.47-4.454 4.47-7.77 0-1.564-.4-3.033-1.1-4.314zM12 22C6.486 22 2 17.514 2 12S6.486 2 12 2s10 4.486 10 10-4.486 10-10 10z"/></g></svg></span>
</p>
</div>
</div>
</div>
<div id="comment-form-googleplus" class="comment-form-service">
<div class="comment-form-padder">
<div class="comment-form-avatar">
<img src="https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=25&d=retro&forcedefault=y&r=G" alt="Google photo" width="25" class="no-grav" />
</div>
<div class="comment-form-fields">
<input type="hidden" name="googleplus_avatar" id="googleplus-avatar" class="comment-meta-googleplus" value="" />
<input type="hidden" name="googleplus_user_id" id="googleplus-user_id" class="comment-meta-googleplus" value="" />
<input type="hidden" name="googleplus_access_token" id="googleplus-access_token" class="comment-meta-googleplus" value="" />
<p class="comment-form-posting-as pa-googleplus">
<strong></strong>
You are commenting using your Google account. <span class="comment-form-log-out">
( <a href="javascript:HighlanderComments.doExternalLogout( 'googleplus' );">Log Out</a> /
<a href="#" onclick="javascript:HighlanderComments.switchAccount();return false;">Change</a> )
</span>
<span class="pa-icon"><svg xmlns="http://www.w3.org/2000/svg" role="presentation" x="0px" y="0px" viewBox="0 0 60 60" ><path fill="#519bf7" d="M56.3,30c0,-1.6 -0.2,-3.4 -0.6,-5h-3.1H42.2H30v10.6h14.8C44,39.3 42,42 39.1,43.9l8.8,6.8C53,46 56.3,39 56.3,30z" /><path fill="#3db366" d="M30,57.5c6.7,0 13.1,-2.4 17.9,-6.8l-8.8,-6.8c-2.5,1.6 -5.6,2.4 -9.1,2.4c-7.2,0 -13.3,-4.7 -15.4,-11.2l-9.3,7.1C9.8,51.3 19.1,57.5 30,57.5z" /><path fill="#fdc600" d="M5.3,42.2l9.3,-7.1c-0.5,-1.6 -0.8,-3.3 -0.8,-5.1s0.3,-3.5 0.8,-5.1l-9.3,-7.1C3.5,21.5 2.5,25.6 2.5,30S3.5,38.5 5.3,42.2z" /><path fill="#f15b44" d="M40.1,17.4l8,-8C43.3,5.1 37,2.5 30,2.5C19.1,2.5 9.8,8.7 5.3,17.8l9.3,7.1c2.1,-6.5 8.2,-11.1 15.4,-11.1C33.9,13.7 37.4,15.1 40.1,17.4z" /></svg></span>
</p>
</div>
</div>
</div>
<div id="comment-form-twitter" class="comment-form-service">
<div class="comment-form-padder">
<div class="comment-form-avatar">
<img src="https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=25&d=retro&forcedefault=y&r=G" alt="Twitter picture" width="25" class="no-grav" />
</div>
<div class="comment-form-fields">
<input type="hidden" name="twitter_avatar" id="twitter-avatar" class="comment-meta-twitter" value="" />
<input type="hidden" name="twitter_user_id" id="twitter-user_id" class="comment-meta-twitter" value="" />
<input type="hidden" name="twitter_access_token" id="twitter-access_token" class="comment-meta-twitter" value="" />
<p class="comment-form-posting-as pa-twitter">
<strong></strong>
You are commenting using your Twitter account. <span class="comment-form-log-out">
( <a href="javascript:HighlanderComments.doExternalLogout( 'twitter' );">Log Out</a> /
<a href="#" onclick="javascript:HighlanderComments.switchAccount();return false;">Change</a> )
</span>
<span class="pa-icon"><svg xmlns="http://www.w3.org/2000/svg" role="presentation" viewBox="0 0 24 24" ><rect x="0" fill="none" width="24" height="24"/><g><path fill="#1DA1F2" d="M22.23 5.924c-.736.326-1.527.547-2.357.646.847-.508 1.498-1.312 1.804-2.27-.793.47-1.67.812-2.606.996C18.325 4.498 17.258 4 16.078 4c-2.266 0-4.103 1.837-4.103 4.103 0 .322.036.635.106.935-3.41-.17-6.433-1.804-8.457-4.287-.353.607-.556 1.312-.556 2.064 0 1.424.724 2.68 1.825 3.415-.673-.022-1.305-.207-1.86-.514v.052c0 1.988 1.415 3.647 3.293 4.023-.344.095-.707.145-1.08.145-.265 0-.522-.026-.773-.074.522 1.63 2.038 2.817 3.833 2.85-1.404 1.1-3.174 1.757-5.096 1.757-.332 0-.66-.02-.98-.057 1.816 1.164 3.973 1.843 6.29 1.843 7.547 0 11.675-6.252 11.675-11.675 0-.178-.004-.355-.012-.53.802-.578 1.497-1.3 2.047-2.124z"/></g></svg></span>
</p>
</div>
</div>
</div>
<div id="comment-form-facebook" class="comment-form-service">
<div class="comment-form-padder">
<div class="comment-form-avatar">
<img src="https://1.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=25&d=retro&forcedefault=y&r=G" alt="Facebook photo" width="25" class="no-grav" />
</div>
<div class="comment-form-fields">
<input type="hidden" name="fb_avatar" id="facebook-avatar" class="comment-meta-facebook" value="" />
<input type="hidden" name="fb_user_id" id="facebook-user_id" class="comment-meta-facebook" value="" />
<input type="hidden" name="fb_access_token" id="facebook-access_token" class="comment-meta-facebook" value="" />
<p class="comment-form-posting-as pa-facebook">
<strong></strong>
You are commenting using your Facebook account. <span class="comment-form-log-out">
( <a href="javascript:HighlanderComments.doExternalLogout( 'facebook' );">Log Out</a> /
<a href="#" onclick="javascript:HighlanderComments.switchAccount();return false;">Change</a> )
</span>
<span class="pa-icon"><svg xmlns="http://www.w3.org/2000/svg" role="presentation" viewBox="0 0 24 24" ><rect x="0" fill="none" width="24" height="24"/><g><path fill="#3B5998" d="M20.007 3H3.993C3.445 3 3 3.445 3 3.993v16.013c0 .55.445.994.993.994h8.62v-6.97H10.27V11.31h2.346V9.31c0-2.325 1.42-3.59 3.494-3.59.993 0 1.847.073 2.096.106v2.43h-1.438c-1.128 0-1.346.537-1.346 1.324v1.734h2.69l-.35 2.717h-2.34V21h4.587c.548 0 .993-.445.993-.993V3.993c0-.548-.445-.993-.993-.993z"/></g></svg></span>
</p>
</div>
</div>
</div>
<div id="comment-form-load-service" class="comment-form-service">
<div class="comment-form-posting-as-cancel"><a href="javascript:HighlanderComments.cancelExternalWindow();">Cancel</a></div>
<p>Connecting to %s</p>
</div>
</div>
<script type="text/javascript">
var highlander_expando_javascript = function () {
function hide( sel ) {
var el = document.querySelector( sel );
if ( el ) {
el.style.setProperty( 'display', 'none' );
}
}
function show( sel ) {
var el = document.querySelector( sel );
if ( el ) {
el.style.removeProperty( 'display' );
}
}
var input = document.createElement( 'input' );
var comment = document.querySelector( '#comment' );
if ( input && comment && 'placeholder' in input ) {
var label = document.querySelector( '.comment-textarea label' );
if ( label ) {
var text = label.textContent;
label.parentNode.removeChild( label );
comment.setAttribute( 'placeholder', text );
}
}
// Expando Mode: start small, then auto-resize on first click + text length
hide( '#comment-form-identity' );
hide( '#comment-form-subscribe' );
hide( '#commentform .form-submit' );
if ( comment ) {
comment.style.height = '10px';
var handler = function () {
comment.style.height = HighlanderComments.initialHeight + 'px';
show( '#comment-form-identity' );
show( '#comment-form-subscribe' );
show( '#commentform .form-submit' );
HighlanderComments.resizeCallback();
comment.removeEventListener( 'focus', handler );
};
comment.addEventListener( 'focus', handler );
}
}
if ( document.readyState !== 'loading' ) {
highlander_expando_javascript();
} else {
if ( typeof window.jQuery === 'function' ) {
// Use jQuery's `ready` if available.
// This solves some scheduling issues between this script and the main highlander script.
jQuery( document ).ready( highlander_expando_javascript );
} else {
// If not available, add a vanilla event listener.
document.addEventListener( 'DOMContentLoaded', highlander_expando_javascript );
}
}
</script>
<div id="comment-form-subscribe">
<p class="comment-subscription-form"><input type="checkbox" name="subscribe" id="subscribe" value="subscribe" style="width: auto;"/> <label class="subscribe-label" id="subscribe-label" for="subscribe" style="display: inline;">Notify me of new comments via email.</label></p><p class="post-subscription-form"><input type="checkbox" name="subscribe_blog" id="subscribe_blog" value="subscribe" style="width: auto;"/> <label class="subscribe-label" id="subscribe-blog-label" for="subscribe_blog" style="display: inline;">Notify me of new posts via email.</label></p></div>
<p class="form-submit"><input name="submit" type="submit" id="comment-submit" class="submit" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='4877' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="91b53ee844" /></p>
<input type="hidden" name="genseq" value="1620153713" />
<input type="hidden" id="ak_js" name="ak_js" value="202"/><textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100" style="display: none !important;"></textarea></form> </div><!-- #respond -->
<div style="clear: both"></div>
</div><!-- #comments -->
</main><!-- #main -->
</div><!-- #primary -->
<div id="secondary" class="widget-area" role="complementary">
<aside id="recent-posts-4" class="widget widget_recent_entries">
<h3 class="widget-title">Recent Posts</h3>
<ul>
<li>
<a href="https://mikethecanuck.wordpress.com/2019/08/06/devops-status-report-hackoregon-2019-season/">DevOps status report: HackOregon 2019 season</a>
</li>
<li>
<a href="https://mikethecanuck.wordpress.com/2018/12/02/mike-what-books-do-you-suggest-for-getting-up-to-speed-on-the-lean-approach/">Mike, what books do you suggest for getting up to speed on the Lean approach?</a>
</li>
<li>
<a href="https://mikethecanuck.wordpress.com/2017/12/18/occupied-neurons-santa-edition-lessons-for-software-engineering/">Occupied Neurons, Santa edition: lessons for software engineering</a>
</li>
<li>
<a href="https://mikethecanuck.wordpress.com/2017/12/06/linus-rants-at-the-security-community-again-bravo/">Linus rants at the security community again – bravo</a>
</li>
<li>
<a href="https://mikethecanuck.wordpress.com/2017/11/20/when-will-devsecops-resemble-devops/">When will DevSecOps resemble DevOps?</a>
</li>
</ul>
</aside><aside id="archives-4" class="widget widget_archive"><h3 class="widget-title">Archives</h3>
<ul>
<li><a href='https://mikethecanuck.wordpress.com/2019/08/'>Aug 2019</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2018/12/'>Dec 2018</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2017/12/'>Dec 2017</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2017/11/'>Nov 2017</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2017/09/'>Sep 2017</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2017/03/'>Mar 2017</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2017/02/'>Feb 2017</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2017/01/'>Jan 2017</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/12/'>Dec 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/11/'>Nov 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/10/'>Oct 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/09/'>Sep 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/08/'>Aug 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/07/'>Jul 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/06/'>Jun 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/05/'>May 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/04/'>Apr 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/03/'>Mar 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/02/'>Feb 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2015/09/'>Sep 2015</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2015/07/'>Jul 2015</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2015/06/'>Jun 2015</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2015/05/'>May 2015</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2015/04/'>Apr 2015</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2015/03/'>Mar 2015</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2015/02/'>Feb 2015</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2015/01/'>Jan 2015</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2014/09/'>Sep 2014</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2014/07/'>Jul 2014</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2014/05/'>May 2014</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2014/04/'>Apr 2014</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2014/03/'>Mar 2014</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2014/02/'>Feb 2014</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2014/01/'>Jan 2014</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2013/12/'>Dec 2013</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2013/11/'>Nov 2013</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2013/10/'>Oct 2013</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2013/09/'>Sep 2013</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2013/08/'>Aug 2013</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2013/07/'>Jul 2013</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2013/05/'>May 2013</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2013/04/'>Apr 2013</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2013/03/'>Mar 2013</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2013/02/'>Feb 2013</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2013/01/'>Jan 2013</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2012/12/'>Dec 2012</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2012/11/'>Nov 2012</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2012/10/'>Oct 2012</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2012/05/'>May 2012</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2012/03/'>Mar 2012</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2012/02/'>Feb 2012</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2012/01/'>Jan 2012</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2011/10/'>Oct 2011</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2011/09/'>Sep 2011</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2011/08/'>Aug 2011</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2011/07/'>Jul 2011</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2010/10/'>Oct 2010</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2010/09/'>Sep 2010</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2010/03/'>Mar 2010</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2010/02/'>Feb 2010</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2009/10/'>Oct 2009</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2009/09/'>Sep 2009</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2009/02/'>Feb 2009</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2008/12/'>Dec 2008</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2008/11/'>Nov 2008</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2008/10/'>Oct 2008</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2008/09/'>Sep 2008</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2008/07/'>Jul 2008</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2008/06/'>Jun 2008</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2008/03/'>Mar 2008</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2008/02/'>Feb 2008</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2008/01/'>Jan 2008</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2007/12/'>Dec 2007</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2007/11/'>Nov 2007</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2007/10/'>Oct 2007</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2007/09/'>Sep 2007</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2007/08/'>Aug 2007</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2007/07/'>Jul 2007</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2007/06/'>Jun 2007</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2007/05/'>May 2007</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2007/04/'>Apr 2007</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2007/03/'>Mar 2007</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2007/01/'>Jan 2007</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2006/09/'>Sep 2006</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2005/12/'>Dec 2005</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2005/11/'>Nov 2005</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2005/10/'>Oct 2005</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2005/09/'>Sep 2005</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2005/08/'>Aug 2005</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2005/07/'>Jul 2005</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2005/06/'>Jun 2005</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2005/05/'>May 2005</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2005/04/'>Apr 2005</a></li>
</ul>
</aside><aside id="categories-4" class="widget widget_categories"><h3 class="widget-title">Categories</h3>
<ul>
<li class="cat-item cat-item-291"><a href="https://mikethecanuck.wordpress.com/category/apple/">Apple</a>
</li>
<li class="cat-item cat-item-44620"><a href="https://mikethecanuck.wordpress.com/category/authentication/">authentication</a>
</li>
<li class="cat-item cat-item-2426"><a href="https://mikethecanuck.wordpress.com/category/c/">C#</a>
</li>
<li class="cat-item cat-item-340183"><a href="https://mikethecanuck.wordpress.com/category/codeplex/">CodePlex</a>
</li>
<li class="cat-item cat-item-332"><a href="https://mikethecanuck.wordpress.com/category/coding/">coding</a>
</li>
<li class="cat-item cat-item-756"><a href="https://mikethecanuck.wordpress.com/category/comics/">comics</a>
</li>
<li class="cat-item cat-item-2528"><a href="https://mikethecanuck.wordpress.com/category/community/" title="Networking and kibitzing with my peers">Community</a>
</li>
<li class="cat-item cat-item-25818"><a href="https://mikethecanuck.wordpress.com/category/cryptography/">cryptography</a>
</li>
<li class="cat-item cat-item-5564"><a href="https://mikethecanuck.wordpress.com/category/data-security/">data security</a>
</li>
<li class="cat-item cat-item-70886"><a href="https://mikethecanuck.wordpress.com/category/debugging/">debugging</a>
</li>
<li class="cat-item cat-item-28070474"><a href="https://mikethecanuck.wordpress.com/category/devops/">devops</a>
</li>
<li class="cat-item cat-item-305"><a href="https://mikethecanuck.wordpress.com/category/dogs/">dogs</a>
</li>
<li class="cat-item cat-item-272"><a href="https://mikethecanuck.wordpress.com/category/fun/">fun</a>
</li>
<li class="cat-item cat-item-81"><a href="https://mikethecanuck.wordpress.com/category/google/">Google</a>
</li>
<li class="cat-item cat-item-71759"><a href="https://mikethecanuck.wordpress.com/category/htpc/">HTPC</a>
</li>
<li class="cat-item cat-item-80962"><a href="https://mikethecanuck.wordpress.com/category/linkedin/">LinkedIn</a>
</li>
<li class="cat-item cat-item-64667"><a href="https://mikethecanuck.wordpress.com/category/meetups/">meetups</a>
</li>
<li class="cat-item cat-item-637"><a href="https://mikethecanuck.wordpress.com/category/microsoft/">Microsoft</a>
</li>
<li class="cat-item cat-item-186071"><a href="https://mikethecanuck.wordpress.com/category/mindmanager/">MindManager</a>
</li>
<li class="cat-item cat-item-25"><a href="https://mikethecanuck.wordpress.com/category/open-source/">open source</a>
</li>
<li class="cat-item cat-item-64"><a href="https://mikethecanuck.wordpress.com/category/personal/">personal</a>
</li>
<li class="cat-item cat-item-317625"><a href="https://mikethecanuck.wordpress.com/category/problems-to-solve/">problems to solve</a>
</li>
<li class="cat-item cat-item-30787"><a href="https://mikethecanuck.wordpress.com/category/product-management/">Product Management</a>
</li>
<li class="cat-item cat-item-1343932"><a href="https://mikethecanuck.wordpress.com/category/product-owner/">Product Owner</a>
</li>
<li class="cat-item cat-item-18956"><a href="https://mikethecanuck.wordpress.com/category/random-rants/">random rants</a>
</li>
<li class="cat-item cat-item-2876327"><a href="https://mikethecanuck.wordpress.com/category/salt-mines/">Salt Mines</a>
</li>
<li class="cat-item cat-item-801"><a href="https://mikethecanuck.wordpress.com/category/security/">security</a>
</li>
<li class="cat-item cat-item-4009294"><a href="https://mikethecanuck.wordpress.com/category/threat-modeling/">Threat Modeling</a>
</li>
<li class="cat-item cat-item-64000"><a href="https://mikethecanuck.wordpress.com/category/tpm/">TPM</a>
</li>
<li class="cat-item cat-item-1"><a href="https://mikethecanuck.wordpress.com/category/uncategorized/">Uncategorized</a>
</li>
<li class="cat-item cat-item-81969"><a href="https://mikethecanuck.wordpress.com/category/ux/">ux</a>
</li>
<li class="cat-item cat-item-176118"><a href="https://mikethecanuck.wordpress.com/category/vb-net/">VB.NET</a>
</li>
<li class="cat-item cat-item-32862"><a href="https://mikethecanuck.wordpress.com/category/vba/">VBA</a>
</li>
<li class="cat-item cat-item-6678"><a href="https://mikethecanuck.wordpress.com/category/visual-studio/">Visual Studio</a>
</li>
<li class="cat-item cat-item-227422"><a href="https://mikethecanuck.wordpress.com/category/vsto/">VSTO</a>
</li>
<li class="cat-item cat-item-2358"><a href="https://mikethecanuck.wordpress.com/category/web-services/">Web Services</a>
</li>
<li class="cat-item cat-item-1359"><a href="https://mikethecanuck.wordpress.com/category/wiki/">Wiki</a>
</li>
<li class="cat-item cat-item-800"><a href="https://mikethecanuck.wordpress.com/category/windows/">Windows</a>
</li>
<li class="cat-item cat-item-6852"><a href="https://mikethecanuck.wordpress.com/category/xml/">XML</a>
</li>
</ul>
</aside><aside id="wp_tag_cloud-2" class="widget wp_widget_tag_cloud"><h3 class="widget-title">Tags</h3><div style="overflow:hidden"><a href="https://mikethecanuck.wordpress.com/tag/agile/" class="tag-cloud-link tag-link-11287 tag-link-position-1" style="font-size: 20.395833333333pt;" aria-label="Agile (13 items)">Agile</a>
<a href="https://mikethecanuck.wordpress.com/tag/ansible/" class="tag-cloud-link tag-link-4011177 tag-link-position-2" style="font-size: 16.75pt;" aria-label="ansible (7 items)">ansible</a>
<a href="https://mikethecanuck.wordpress.com/tag/apis/" class="tag-cloud-link tag-link-40428 tag-link-position-3" style="font-size: 8pt;" aria-label="APIs (1 item)">APIs</a>
<a href="https://mikethecanuck.wordpress.com/tag/architecture/" class="tag-cloud-link tag-link-2290 tag-link-position-4" style="font-size: 8pt;" aria-label="architecture (1 item)">architecture</a>
<a href="https://mikethecanuck.wordpress.com/tag/aws/" class="tag-cloud-link tag-link-144203 tag-link-position-5" style="font-size: 16.020833333333pt;" aria-label="AWS (6 items)">AWS</a>
<a href="https://mikethecanuck.wordpress.com/tag/bash/" class="tag-cloud-link tag-link-2674 tag-link-position-6" style="font-size: 17.479166666667pt;" aria-label="bash (8 items)">bash</a>
<a href="https://mikethecanuck.wordpress.com/tag/breadcrumbs/" class="tag-cloud-link tag-link-24090 tag-link-position-7" style="font-size: 8pt;" aria-label="breadcrumbs (1 item)">breadcrumbs</a>
<a href="https://mikethecanuck.wordpress.com/tag/bugs/" class="tag-cloud-link tag-link-6354 tag-link-position-8" style="font-size: 13.833333333333pt;" aria-label="bugs (4 items)">bugs</a>
<a href="https://mikethecanuck.wordpress.com/tag/cask/" class="tag-cloud-link tag-link-5014873 tag-link-position-9" style="font-size: 8pt;" aria-label="cask (1 item)">cask</a>
<a href="https://mikethecanuck.wordpress.com/tag/creative/" class="tag-cloud-link tag-link-6263 tag-link-position-10" style="font-size: 10.625pt;" aria-label="Creative (2 items)">Creative</a>
<a href="https://mikethecanuck.wordpress.com/tag/data/" class="tag-cloud-link tag-link-22379 tag-link-position-11" style="font-size: 16.75pt;" aria-label="data (7 items)">data</a>
<a href="https://mikethecanuck.wordpress.com/tag/debian/" class="tag-cloud-link tag-link-428 tag-link-position-12" style="font-size: 10.625pt;" aria-label="debian (2 items)">debian</a>
<a href="https://mikethecanuck.wordpress.com/tag/demos/" class="tag-cloud-link tag-link-25994 tag-link-position-13" style="font-size: 8pt;" aria-label="demos (1 item)">demos</a>
<a href="https://mikethecanuck.wordpress.com/tag/design/" class="tag-cloud-link tag-link-148 tag-link-position-14" style="font-size: 20.395833333333pt;" aria-label="design (13 items)">design</a>
<a href="https://mikethecanuck.wordpress.com/tag/django/" class="tag-cloud-link tag-link-15988 tag-link-position-15" style="font-size: 10.625pt;" aria-label="django (2 items)">django</a>
<a href="https://mikethecanuck.wordpress.com/tag/docker/" class="tag-cloud-link tag-link-4504191 tag-link-position-16" style="font-size: 10.625pt;" aria-label="Docker (2 items)">Docker</a>
<a href="https://mikethecanuck.wordpress.com/tag/drawing/" class="tag-cloud-link tag-link-7831 tag-link-position-17" style="font-size: 10.625pt;" aria-label="drawing (2 items)">drawing</a>
<a href="https://mikethecanuck.wordpress.com/tag/efs/" class="tag-cloud-link tag-link-850511 tag-link-position-18" style="font-size: 12.375pt;" aria-label="EFS (3 items)">EFS</a>
<a href="https://mikethecanuck.wordpress.com/tag/es6/" class="tag-cloud-link tag-link-75148521 tag-link-position-19" style="font-size: 8pt;" aria-label="ES6 (1 item)">ES6</a>
<a href="https://mikethecanuck.wordpress.com/tag/failure/" class="tag-cloud-link tag-link-3495 tag-link-position-20" style="font-size: 10.625pt;" aria-label="failure (2 items)">failure</a>
<a href="https://mikethecanuck.wordpress.com/tag/flask/" class="tag-cloud-link tag-link-601345 tag-link-position-21" style="font-size: 8pt;" aria-label="flask (1 item)">flask</a>
<a href="https://mikethecanuck.wordpress.com/tag/funny/" class="tag-cloud-link tag-link-684 tag-link-position-22" style="font-size: 8pt;" aria-label="funny (1 item)">funny</a>
<a href="https://mikethecanuck.wordpress.com/tag/gender/" class="tag-cloud-link tag-link-27915 tag-link-position-23" style="font-size: 10.625pt;" aria-label="gender (2 items)">gender</a>
<a href="https://mikethecanuck.wordpress.com/tag/graphql/" class="tag-cloud-link tag-link-329863755 tag-link-position-24" style="font-size: 8pt;" aria-label="GraphQL (1 item)">GraphQL</a>
<a href="https://mikethecanuck.wordpress.com/tag/hashing/" class="tag-cloud-link tag-link-200933 tag-link-position-25" style="font-size: 8pt;" aria-label="hashing (1 item)">hashing</a>
<a href="https://mikethecanuck.wordpress.com/tag/homebrew/" class="tag-cloud-link tag-link-12303 tag-link-position-26" style="font-size: 8pt;" aria-label="homebrew (1 item)">homebrew</a>
<a href="https://mikethecanuck.wordpress.com/tag/javascript/" class="tag-cloud-link tag-link-457 tag-link-position-27" style="font-size: 12.375pt;" aria-label="javascript (3 items)">javascript</a>
<a href="https://mikethecanuck.wordpress.com/tag/painful/" class="tag-cloud-link tag-link-31519 tag-link-position-28" style="font-size: 10.625pt;" aria-label="painful (2 items)">painful</a>
<a href="https://mikethecanuck.wordpress.com/tag/pdx/" class="tag-cloud-link tag-link-59011 tag-link-position-29" style="font-size: 22pt;" aria-label="PDX (17 items)">PDX</a>
<a href="https://mikethecanuck.wordpress.com/tag/portfolio/" class="tag-cloud-link tag-link-2897 tag-link-position-30" style="font-size: 21.125pt;" aria-label="portfolio (15 items)">portfolio</a>
<a href="https://mikethecanuck.wordpress.com/tag/puppet/" class="tag-cloud-link tag-link-3548 tag-link-position-31" style="font-size: 8pt;" aria-label="puppet (1 item)">puppet</a>
<a href="https://mikethecanuck.wordpress.com/tag/python/" class="tag-cloud-link tag-link-832 tag-link-position-32" style="font-size: 20.833333333333pt;" aria-label="python (14 items)">python</a>
<a href="https://mikethecanuck.wordpress.com/tag/quantified-self/" class="tag-cloud-link tag-link-16560120 tag-link-position-33" style="font-size: 13.833333333333pt;" aria-label="quantified self (4 items)">quantified self</a>
<a href="https://mikethecanuck.wordpress.com/tag/react-js/" class="tag-cloud-link tag-link-235006381 tag-link-position-34" style="font-size: 12.375pt;" aria-label="React.js (3 items)">React.js</a>
<a href="https://mikethecanuck.wordpress.com/tag/representation/" class="tag-cloud-link tag-link-160500 tag-link-position-35" style="font-size: 8pt;" aria-label="representation (1 item)">representation</a>
<a href="https://mikethecanuck.wordpress.com/tag/rest/" class="tag-cloud-link tag-link-15314 tag-link-position-36" style="font-size: 8pt;" aria-label="REST (1 item)">REST</a>
<a href="https://mikethecanuck.wordpress.com/tag/security/" class="tag-cloud-link tag-link-801 tag-link-position-37" style="font-size: 20.395833333333pt;" aria-label="security (13 items)">security</a>
<a href="https://mikethecanuck.wordpress.com/tag/speaking/" class="tag-cloud-link tag-link-39484 tag-link-position-38" style="font-size: 10.625pt;" aria-label="speaking (2 items)">speaking</a>
<a href="https://mikethecanuck.wordpress.com/tag/swift/" class="tag-cloud-link tag-link-596263 tag-link-position-39" style="font-size: 8pt;" aria-label="swift (1 item)">swift</a>
<a href="https://mikethecanuck.wordpress.com/tag/systems/" class="tag-cloud-link tag-link-3384 tag-link-position-40" style="font-size: 15pt;" aria-label="systems (5 items)">systems</a>
<a href="https://mikethecanuck.wordpress.com/tag/ubuntu/" class="tag-cloud-link tag-link-255 tag-link-position-41" style="font-size: 13.833333333333pt;" aria-label="ubuntu (4 items)">ubuntu</a>
<a href="https://mikethecanuck.wordpress.com/tag/usability/" class="tag-cloud-link tag-link-753 tag-link-position-42" style="font-size: 18.208333333333pt;" aria-label="usability (9 items)">usability</a>
<a href="https://mikethecanuck.wordpress.com/tag/vagrant/" class="tag-cloud-link tag-link-666241 tag-link-position-43" style="font-size: 18.208333333333pt;" aria-label="vagrant (9 items)">vagrant</a>
<a href="https://mikethecanuck.wordpress.com/tag/value/" class="tag-cloud-link tag-link-6636 tag-link-position-44" style="font-size: 13.833333333333pt;" aria-label="value (4 items)">value</a>
<a href="https://mikethecanuck.wordpress.com/tag/virtualbox/" class="tag-cloud-link tag-link-989685 tag-link-position-45" style="font-size: 17.479166666667pt;" aria-label="virtualbox (8 items)">virtualbox</a>
<a href="https://mikethecanuck.wordpress.com/tag/win10/" class="tag-cloud-link tag-link-235572062 tag-link-position-46" style="font-size: 18.208333333333pt;" aria-label="Win10 (9 items)">Win10</a>
<a href="https://mikethecanuck.wordpress.com/tag/yaml/" class="tag-cloud-link tag-link-550844 tag-link-position-47" style="font-size: 8pt;" aria-label="YAML (1 item)">YAML</a></div></aside> <div id="atatags-286348-60919571d7f94"></div>
<script>
__ATA.cmd.push(function() {
__ATA.initDynamicSlot({
id: 'atatags-286348-60919571d7f94',
location: 140,
formFactor: '003',
label: {
text: 'Advertisements',
},
creative: {
reportAd: {
text: 'Report this Ad',
},
privacySettings: {
text: 'Privacy',
}
}
});
});
</script></div><!-- #secondary -->
</div><!-- .wrap -->
</div><!-- #content -->
<div id="footer-widgets" class="widgets-four" role="complementary">
<div class="wrap">
<div class="grid-layout">
<aside id="search-3" class="widget widget_search"><form role="search" method="get" class="search-form" action="https://mikethecanuck.wordpress.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></aside>
<aside id="recent-posts-3" class="widget widget_recent_entries">
<h3 class="widget-title">Recent Posts</h3>
<ul>
<li>
<a href="https://mikethecanuck.wordpress.com/2019/08/06/devops-status-report-hackoregon-2019-season/">DevOps status report: HackOregon 2019 season</a>
</li>
<li>
<a href="https://mikethecanuck.wordpress.com/2018/12/02/mike-what-books-do-you-suggest-for-getting-up-to-speed-on-the-lean-approach/">Mike, what books do you suggest for getting up to speed on the Lean approach?</a>
</li>
<li>
<a href="https://mikethecanuck.wordpress.com/2017/12/18/occupied-neurons-santa-edition-lessons-for-software-engineering/">Occupied Neurons, Santa edition: lessons for software engineering</a>
</li>
<li>
<a href="https://mikethecanuck.wordpress.com/2017/12/06/linus-rants-at-the-security-community-again-bravo/">Linus rants at the security community again – bravo</a>
</li>
<li>
<a href="https://mikethecanuck.wordpress.com/2017/11/20/when-will-devsecops-resemble-devops/">When will DevSecOps resemble DevOps?</a>
</li>
</ul>
</aside><aside id="recent-comments-3" class="widget widget_recent_comments"><h3 class="widget-title">Recent Comments</h3> <table class="recentcommentsavatar" cellspacing="0" cellpadding="0" border="0">
<tr><td title="Lewis" class="recentcommentsavatartop" style="height:48px; width:48px;"><span class="avatar-container"><span class="avatar-crop"><img alt='' src='https://1.gravatar.com/avatar/7cc01dff50d01493e758aecf536775c5?s=48&d=retro&r=G' class='avatar avatar-48' height='48' width='48' /></span></span></td><td class="recentcommentstexttop" style="">Lewis on <a href="https://mikethecanuck.wordpress.com/2017/01/06/update-my-contacts-with-python-using-pyobjc-contacts-app-vcards-swift-or-my-own-two-hands/comment-page-1/#comment-15409">Update my Contacts with Python…</a></td></tr><tr><td title="paranoidmike" class="recentcommentsavatarend" style="height:48px; width:48px;"><a href="https://mikethecanuck.wordpress.com" rel="nofollow"><span class="avatar-container"><span class="avatar-crop"><img alt='' src='https://0.gravatar.com/avatar/323285d6d687bb6471ed8554a1f2a037?s=48&d=retro&r=G' class='avatar avatar-48' height='48' width='48' /></span></span></a></td><td class="recentcommentstextend" style=""><a href="https://mikethecanuck.wordpress.com" rel="nofollow">paranoidmike</a> on <a href="https://mikethecanuck.wordpress.com/2016/12/29/parsing-pdfs-using-python/comment-page-1/#comment-942">Parsing PDFs using Python</a></td></tr><tr><td title="Anne Laski" class="recentcommentsavatarend" style="height:48px; width:48px;"><span class="avatar-container"><span class="avatar-crop"><img alt='' src='https://1.gravatar.com/avatar/179480ca57283ff7cb95f16d689a72d5?s=48&d=retro&r=G' class='avatar avatar-48' height='48' width='48' /></span></span></td><td class="recentcommentstextend" style="">Anne Laski on <a href="https://mikethecanuck.wordpress.com/2016/12/29/parsing-pdfs-using-python/comment-page-1/#comment-941">Parsing PDFs using Python</a></td></tr><tr><td title="paranoidmike" class="recentcommentsavatarend" style="height:48px; width:48px;"><a href="https://mikethecanuck.wordpress.com" rel="nofollow"><span class="avatar-container"><span class="avatar-crop"><img alt='' src='https://0.gravatar.com/avatar/323285d6d687bb6471ed8554a1f2a037?s=48&d=retro&r=G' class='avatar avatar-48' height='48' width='48' /></span></span></a></td><td class="recentcommentstextend" style=""><a href="https://mikethecanuck.wordpress.com" rel="nofollow">paranoidmike</a> on <a href="https://mikethecanuck.wordpress.com/2016/07/09/hashicorp-vault-ansible-cd-open-source-infra-option-2/comment-page-1/#comment-800">Hashicorp Vault + Ansible + CD…</a></td></tr><tr><td title="KrzWrd" class="recentcommentsavatarend" style="height:48px; width:48px;"><span class="avatar-container"><span class="avatar-crop"><img alt='' src='https://0.gravatar.com/avatar/c1a9ecf87f85bb708b42dfa69595a2e0?s=48&d=retro&r=G' class='avatar avatar-48' height='48' width='48' /></span></span></td><td class="recentcommentstextend" style="">KrzWrd on <a href="https://mikethecanuck.wordpress.com/2016/07/09/hashicorp-vault-ansible-cd-open-source-infra-option-2/comment-page-1/#comment-799">Hashicorp Vault + Ansible + CD…</a></td></tr> </table>
</aside><aside id="archives-3" class="widget widget_archive"><h3 class="widget-title">Archives</h3>
<ul>
<li><a href='https://mikethecanuck.wordpress.com/2019/08/'>Aug 2019</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2018/12/'>Dec 2018</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2017/12/'>Dec 2017</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2017/11/'>Nov 2017</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2017/09/'>Sep 2017</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2017/03/'>Mar 2017</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2017/02/'>Feb 2017</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2017/01/'>Jan 2017</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/12/'>Dec 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/11/'>Nov 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/10/'>Oct 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/09/'>Sep 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/08/'>Aug 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/07/'>Jul 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/06/'>Jun 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/05/'>May 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/04/'>Apr 2016</a></li>
<li><a href='https://mikethecanuck.wordpress.com/2016/03/'>Mar 2016</a></li>