-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathzet.json
3422 lines (3422 loc) · 172 KB
/
zet.json
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
[
{
"name": "README.md",
"path": "20220424000235",
"sha": "ecff2486607fd1347aa6dd92568f716755172750",
"size": 618,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220424000235/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220424000235/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/ecff2486607fd1347aa6dd92568f716755172750",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220424000235/README.md",
"type": "file",
"content": "How to check Go module versions",
"encoding": "base64",
"date": "2022-04-24T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220424000235/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/ecff2486607fd1347aa6dd92568f716755172750",
"html": "https://github.com/danielmichaels/zet/blob/main/20220424000235/README.md"
}
},
{
"name": "README.md",
"path": "20220425003133",
"sha": "7d3aefd1be18afde8db9b4c167b0133615f17bfc",
"size": 558,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220425003133/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220425003133/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/7d3aefd1be18afde8db9b4c167b0133615f17bfc",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220425003133/README.md",
"type": "file",
"content": "ANZAC Day COVID Bullshit",
"encoding": "base64",
"date": "2022-04-25T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220425003133/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/7d3aefd1be18afde8db9b4c167b0133615f17bfc",
"html": "https://github.com/danielmichaels/zet/blob/main/20220425003133/README.md"
}
},
{
"name": "README.md",
"path": "20220426104050",
"sha": "5ac496aff5c818686db83f23e38a5640bcf66482",
"size": 1199,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220426104050/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220426104050/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/5ac496aff5c818686db83f23e38a5640bcf66482",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220426104050/README.md",
"type": "file",
"content": "Initial Zettelkasten",
"encoding": "base64",
"date": "2022-04-26T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220426104050/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/5ac496aff5c818686db83f23e38a5640bcf66482",
"html": "https://github.com/danielmichaels/zet/blob/main/20220426104050/README.md"
}
},
{
"name": "README.md",
"path": "20220426105644",
"sha": "6ca9e9451fea9ecb555fe1c18c9fade1a4bf3848",
"size": 770,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220426105644/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220426105644/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/6ca9e9451fea9ecb555fe1c18c9fade1a4bf3848",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220426105644/README.md",
"type": "file",
"content": "Vim Filters",
"encoding": "base64",
"date": "2022-04-26T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220426105644/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/6ca9e9451fea9ecb555fe1c18c9fade1a4bf3848",
"html": "https://github.com/danielmichaels/zet/blob/main/20220426105644/README.md"
}
},
{
"name": "README.md",
"path": "20220428093536",
"sha": "81861de4b6fbd2cb3a3df83b13c4c5a3017a0591",
"size": 620,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220428093536/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220428093536/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/81861de4b6fbd2cb3a3df83b13c4c5a3017a0591",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220428093536/README.md",
"type": "file",
"content": "Golang URL Params",
"encoding": "base64",
"date": "2022-04-28T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220428093536/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/81861de4b6fbd2cb3a3df83b13c4c5a3017a0591",
"html": "https://github.com/danielmichaels/zet/blob/main/20220428093536/README.md"
}
},
{
"name": "README.md",
"path": "20220429062920",
"sha": "bff5d6b581f9fb88c6ddf4075b0970147af2723e",
"size": 2376,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220429062920/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220429062920/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/bff5d6b581f9fb88c6ddf4075b0970147af2723e",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220429062920/README.md",
"type": "file",
"content": "WGD Fri 2022-04-29",
"encoding": "base64",
"date": "2022-04-29T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220429062920/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/bff5d6b581f9fb88c6ddf4075b0970147af2723e",
"html": "https://github.com/danielmichaels/zet/blob/main/20220429062920/README.md"
}
},
{
"name": "README.md",
"path": "20220430222602",
"sha": "445425d3132368d23d1c2008c44bb7c1b4dc5b99",
"size": 578,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220430222602/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220430222602/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/445425d3132368d23d1c2008c44bb7c1b4dc5b99",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220430222602/README.md",
"type": "file",
"content": "pfSense-api v1.4.0",
"encoding": "base64",
"date": "2022-04-30T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220430222602/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/445425d3132368d23d1c2008c44bb7c1b4dc5b99",
"html": "https://github.com/danielmichaels/zet/blob/main/20220430222602/README.md"
}
},
{
"name": "README.md",
"path": "20220501002946",
"sha": "64f2205da8dcf78653e40ab47eb2b99ac5833d6e",
"size": 281,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220501002946/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220501002946/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/64f2205da8dcf78653e40ab47eb2b99ac5833d6e",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220501002946/README.md",
"type": "file",
"content": "Go test -race requires CGO_ENABLED=1",
"encoding": "base64",
"date": "2022-05-01T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220501002946/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/64f2205da8dcf78653e40ab47eb2b99ac5833d6e",
"html": "https://github.com/danielmichaels/zet/blob/main/20220501002946/README.md"
}
},
{
"name": "README.md",
"path": "20220502102013",
"sha": "e1a4fae2367adaad606dc8e930e12538039e1d88",
"size": 979,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220502102013/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220502102013/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/e1a4fae2367adaad606dc8e930e12538039e1d88",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220502102013/README.md",
"type": "file",
"content": "Microservice contracts can be coupled",
"encoding": "base64",
"date": "2022-05-02T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220502102013/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/e1a4fae2367adaad606dc8e930e12538039e1d88",
"html": "https://github.com/danielmichaels/zet/blob/main/20220502102013/README.md"
}
},
{
"name": "README.md",
"path": "20220505024039",
"sha": "bd00581861e2c889851d1c8afb5247d0b259578b",
"size": 1489,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220505024039/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220505024039/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/bd00581861e2c889851d1c8afb5247d0b259578b",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220505024039/README.md",
"type": "file",
"content": "Mudmap Org Permissions",
"encoding": "base64",
"date": "2022-05-05T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220505024039/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/bd00581861e2c889851d1c8afb5247d0b259578b",
"html": "https://github.com/danielmichaels/zet/blob/main/20220505024039/README.md"
}
},
{
"name": "README.md",
"path": "20220506061432",
"sha": "240a8412faa5a796eb4cbb65ed466b979cbd0624",
"size": 2376,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220506061432/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220506061432/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/240a8412faa5a796eb4cbb65ed466b979cbd0624",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220506061432/README.md",
"type": "file",
"content": "WGD Fri 2022-05-06",
"encoding": "base64",
"date": "2022-05-06T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220506061432/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/240a8412faa5a796eb4cbb65ed466b979cbd0624",
"html": "https://github.com/danielmichaels/zet/blob/main/20220506061432/README.md"
}
},
{
"name": "README.md",
"path": "20220507035451",
"sha": "0d653e7b40ad39b2a2ccd983d7912ac653c18dd1",
"size": 2980,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220507035451/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220507035451/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/0d653e7b40ad39b2a2ccd983d7912ac653c18dd1",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220507035451/README.md",
"type": "file",
"content": "Mudmap sub-account overview",
"encoding": "base64",
"date": "2022-05-07T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220507035451/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/0d653e7b40ad39b2a2ccd983d7912ac653c18dd1",
"html": "https://github.com/danielmichaels/zet/blob/main/20220507035451/README.md"
}
},
{
"name": "README.md",
"path": "20220507132516",
"sha": "8ee98fe13aa62f511774f6a5149aaa371627f904",
"size": 1005,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220507132516/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220507132516/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/8ee98fe13aa62f511774f6a5149aaa371627f904",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220507132516/README.md",
"type": "file",
"content": "Cheatsheet: psql and pg_dump",
"encoding": "base64",
"date": "2022-05-07T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220507132516/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/8ee98fe13aa62f511774f6a5149aaa371627f904",
"html": "https://github.com/danielmichaels/zet/blob/main/20220507132516/README.md"
}
},
{
"name": "README.md",
"path": "20220509064148",
"sha": "0682c8d4d85dc3cc7cfd7b804ee5e98bd6050893",
"size": 502,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220509064148/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220509064148/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/0682c8d4d85dc3cc7cfd7b804ee5e98bd6050893",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220509064148/README.md",
"type": "file",
"content": "Twitch streams I follow",
"encoding": "base64",
"date": "2022-05-09T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220509064148/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/0682c8d4d85dc3cc7cfd7b804ee5e98bd6050893",
"html": "https://github.com/danielmichaels/zet/blob/main/20220509064148/README.md"
}
},
{
"name": "README.md",
"path": "20220509110329",
"sha": "05577e84199528d62a1a1a113f382d45b54e9165",
"size": 1333,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220509110329/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220509110329/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/05577e84199528d62a1a1a113f382d45b54e9165",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220509110329/README.md",
"type": "file",
"content": "Mudmap Org Register Proposed Flow",
"encoding": "base64",
"date": "2022-05-09T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220509110329/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/05577e84199528d62a1a1a113f382d45b54e9165",
"html": "https://github.com/danielmichaels/zet/blob/main/20220509110329/README.md"
}
},
{
"name": "README.md",
"path": "20220511093050",
"sha": "19461605949bd3c52119ee16acc2ccf9e95a5c81",
"size": 1130,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220511093050/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220511093050/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/19461605949bd3c52119ee16acc2ccf9e95a5c81",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220511093050/README.md",
"type": "file",
"content": "Developer Experience is Everything",
"encoding": "base64",
"date": "2022-05-11T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220511093050/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/19461605949bd3c52119ee16acc2ccf9e95a5c81",
"html": "https://github.com/danielmichaels/zet/blob/main/20220511093050/README.md"
}
},
{
"name": "README.md",
"path": "20220511093929",
"sha": "8673361ac22097c5328e210044a75ecf6ec29ccd",
"size": 829,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220511093929/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220511093929/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/8673361ac22097c5328e210044a75ecf6ec29ccd",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220511093929/README.md",
"type": "file",
"content": "Old skills, new skills",
"encoding": "base64",
"date": "2022-05-11T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220511093929/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/8673361ac22097c5328e210044a75ecf6ec29ccd",
"html": "https://github.com/danielmichaels/zet/blob/main/20220511093929/README.md"
}
},
{
"name": "README.md",
"path": "20220513102324",
"sha": "075dbcfb365416b4e772b515df590105413c4b9d",
"size": 2248,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220513102324/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220513102324/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/075dbcfb365416b4e772b515df590105413c4b9d",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220513102324/README.md",
"type": "file",
"content": "WGD Fri 2022-05-13",
"encoding": "base64",
"date": "2022-05-13T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220513102324/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/075dbcfb365416b4e772b515df590105413c4b9d",
"html": "https://github.com/danielmichaels/zet/blob/main/20220513102324/README.md"
}
},
{
"name": "README.md",
"path": "20220514230701",
"sha": "22a1e98200f222321232454dfb26be4b4e875372",
"size": 612,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220514230701/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220514230701/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/22a1e98200f222321232454dfb26be4b4e875372",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220514230701/README.md",
"type": "file",
"content": "People don't listen and I don't have time for them",
"encoding": "base64",
"date": "2022-05-14T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220514230701/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/22a1e98200f222321232454dfb26be4b4e875372",
"html": "https://github.com/danielmichaels/zet/blob/main/20220514230701/README.md"
}
},
{
"name": "README.md",
"path": "20220518214506",
"sha": "d25c6b796fe0d97e62222a1bc03e18122374e97c",
"size": 2468,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220518214506/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220518214506/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/d25c6b796fe0d97e62222a1bc03e18122374e97c",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220518214506/README.md",
"type": "file",
"content": "Go-resty: A Simple HTTP Client",
"encoding": "base64",
"date": "2022-05-18T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220518214506/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/d25c6b796fe0d97e62222a1bc03e18122374e97c",
"html": "https://github.com/danielmichaels/zet/blob/main/20220518214506/README.md"
}
},
{
"name": "README.md",
"path": "20220519040652",
"sha": "b449d3c3f709bf3f0b36220ef1aa09a0d5fa105a",
"size": 668,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220519040652/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220519040652/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/b449d3c3f709bf3f0b36220ef1aa09a0d5fa105a",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220519040652/README.md",
"type": "file",
"content": "Voyager-1 an engineering feat",
"encoding": "base64",
"date": "2022-05-19T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220519040652/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/b449d3c3f709bf3f0b36220ef1aa09a0d5fa105a",
"html": "https://github.com/danielmichaels/zet/blob/main/20220519040652/README.md"
}
},
{
"name": "README.md",
"path": "20220520045702",
"sha": "ac98764e3b9716752145407c47e36dd6d2a5298a",
"size": 2050,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220520045702/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220520045702/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/ac98764e3b9716752145407c47e36dd6d2a5298a",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220520045702/README.md",
"type": "file",
"content": "WGD 2022-05-20",
"encoding": "base64",
"date": "2022-05-20T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220520045702/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/ac98764e3b9716752145407c47e36dd6d2a5298a",
"html": "https://github.com/danielmichaels/zet/blob/main/20220520045702/README.md"
}
},
{
"name": "README.md",
"path": "20220525004601",
"sha": "9d6fd0f705ab9e4db65e7af581686f7dc050e547",
"size": 567,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220525004601/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220525004601/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/9d6fd0f705ab9e4db65e7af581686f7dc050e547",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220525004601/README.md",
"type": "file",
"content": "Ansible localhost setup",
"encoding": "base64",
"date": "2022-05-25T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220525004601/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/9d6fd0f705ab9e4db65e7af581686f7dc050e547",
"html": "https://github.com/danielmichaels/zet/blob/main/20220525004601/README.md"
}
},
{
"name": "README.md",
"path": "20220525110724",
"sha": "e5d86756f6bc3769c2518168c8c61cf14392fc6b",
"size": 841,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220525110724/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220525110724/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/e5d86756f6bc3769c2518168c8c61cf14392fc6b",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220525110724/README.md",
"type": "file",
"content": "zerolog Objects",
"encoding": "base64",
"date": "2022-05-25T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220525110724/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/e5d86756f6bc3769c2518168c8c61cf14392fc6b",
"html": "https://github.com/danielmichaels/zet/blob/main/20220525110724/README.md"
}
},
{
"name": "README.md",
"path": "20220528032115",
"sha": "81cf3f40550fd8816ee8eb5b2b1f3553ebc57d40",
"size": 1515,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220528032115/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220528032115/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/81cf3f40550fd8816ee8eb5b2b1f3553ebc57d40",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220528032115/README.md",
"type": "file",
"content": "WGD Sat 2022-05-28",
"encoding": "base64",
"date": "2022-05-28T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220528032115/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/81cf3f40550fd8816ee8eb5b2b1f3553ebc57d40",
"html": "https://github.com/danielmichaels/zet/blob/main/20220528032115/README.md"
}
},
{
"name": "README.md",
"path": "20220530225825",
"sha": "0ed4b68edc418af10d051e569cd9d2d2d9eb76c7",
"size": 527,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220530225825/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220530225825/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/0ed4b68edc418af10d051e569cd9d2d2d9eb76c7",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220530225825/README.md",
"type": "file",
"content": "Go features repo for future reference",
"encoding": "base64",
"date": "2022-05-30T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220530225825/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/0ed4b68edc418af10d051e569cd9d2d2d9eb76c7",
"html": "https://github.com/danielmichaels/zet/blob/main/20220530225825/README.md"
}
},
{
"name": "README.md",
"path": "20220603052010",
"sha": "8d3c17253b2e66b15fea5cc83b8037ae5ef71c34",
"size": 1515,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220603052010/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220603052010/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/8d3c17253b2e66b15fea5cc83b8037ae5ef71c34",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220603052010/README.md",
"type": "file",
"content": "WGD Fri 2022-06-03",
"encoding": "base64",
"date": "2022-06-03T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220603052010/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/8d3c17253b2e66b15fea5cc83b8037ae5ef71c34",
"html": "https://github.com/danielmichaels/zet/blob/main/20220603052010/README.md"
}
},
{
"name": "README.md",
"path": "20220607035515",
"sha": "154801e642bf822dd320666ff4997daaffd18c35",
"size": 1545,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220607035515/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220607035515/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/154801e642bf822dd320666ff4997daaffd18c35",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220607035515/README.md",
"type": "file",
"content": "fly.io CNAME setup",
"encoding": "base64",
"date": "2022-06-07T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220607035515/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/154801e642bf822dd320666ff4997daaffd18c35",
"html": "https://github.com/danielmichaels/zet/blob/main/20220607035515/README.md"
}
},
{
"name": "README.md",
"path": "20220607114443",
"sha": "6aa1da8d791c00b691f68342ff1281ff92927664",
"size": 1517,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220607114443/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220607114443/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/6aa1da8d791c00b691f68342ff1281ff92927664",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220607114443/README.md",
"type": "file",
"content": "Breadcrumbs for Go templates",
"encoding": "base64",
"date": "2022-06-07T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220607114443/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/6aa1da8d791c00b691f68342ff1281ff92927664",
"html": "https://github.com/danielmichaels/zet/blob/main/20220607114443/README.md"
}
},
{
"name": "README.md",
"path": "20220608010337",
"sha": "38c73b0d73f3b3f583d959c4c9b8cf4c9e8d00a0",
"size": 2400,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220608010337/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220608010337/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/38c73b0d73f3b3f583d959c4c9b8cf4c9e8d00a0",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220608010337/README.md",
"type": "file",
"content": "WGD Fri 2022-06-10",
"encoding": "base64",
"date": "2022-06-08T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220608010337/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/38c73b0d73f3b3f583d959c4c9b8cf4c9e8d00a0",
"html": "https://github.com/danielmichaels/zet/blob/main/20220608010337/README.md"
}
},
{
"name": "README.md",
"path": "20220610231054",
"sha": "74de5b0e79b5ee0d323f08c8925f7a9d92351e0e",
"size": 785,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220610231054/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220610231054/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/74de5b0e79b5ee0d323f08c8925f7a9d92351e0e",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220610231054/README.md",
"type": "file",
"content": "Go template iterators",
"encoding": "base64",
"date": "2022-06-10T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220610231054/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/74de5b0e79b5ee0d323f08c8925f7a9d92351e0e",
"html": "https://github.com/danielmichaels/zet/blob/main/20220610231054/README.md"
}
},
{
"name": "README.md",
"path": "20220614071133",
"sha": "13f19dc5a422726e82d413e58dfa50531aebbdcb",
"size": 1263,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220614071133/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220614071133/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/13f19dc5a422726e82d413e58dfa50531aebbdcb",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220614071133/README.md",
"type": "file",
"content": "Go database and sql tips",
"encoding": "base64",
"date": "2022-06-14T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220614071133/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/13f19dc5a422726e82d413e58dfa50531aebbdcb",
"html": "https://github.com/danielmichaels/zet/blob/main/20220614071133/README.md"
}
},
{
"name": "README.md",
"path": "20220616100818",
"sha": "d7af77140a395d65885a0e6c196f2bd75afbf0c5",
"size": 1042,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220616100818/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220616100818/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/d7af77140a395d65885a0e6c196f2bd75afbf0c5",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220616100818/README.md",
"type": "file",
"content": "Mudmap org and new user registration",
"encoding": "base64",
"date": "2022-06-16T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220616100818/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/d7af77140a395d65885a0e6c196f2bd75afbf0c5",
"html": "https://github.com/danielmichaels/zet/blob/main/20220616100818/README.md"
}
},
{
"name": "README.md",
"path": "20220618043036",
"sha": "264eff58b4614407f706a34d315a620e340a6a35",
"size": 1411,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220618043036/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220618043036/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/264eff58b4614407f706a34d315a620e340a6a35",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220618043036/README.md",
"type": "file",
"content": "Performance review notes Q1 2022",
"encoding": "base64",
"date": "2022-06-18T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220618043036/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/264eff58b4614407f706a34d315a620e340a6a35",
"html": "https://github.com/danielmichaels/zet/blob/main/20220618043036/README.md"
}
},
{
"name": "README.md",
"path": "20220618043044",
"sha": "083c9bbb540560ba183cdc3b25718b24128e2f09",
"size": 680,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220618043044/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220618043044/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/083c9bbb540560ba183cdc3b25718b24128e2f09",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220618043044/README.md",
"type": "file",
"content": "WGD Fri 2022-06-17",
"encoding": "base64",
"date": "2022-06-18T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220618043044/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/083c9bbb540560ba183cdc3b25718b24128e2f09",
"html": "https://github.com/danielmichaels/zet/blob/main/20220618043044/README.md"
}
},
{
"name": "README.md",
"path": "20220620100552",
"sha": "b14725fdbb986bbdc66f0b21bf416abe8e54eff0",
"size": 1751,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220620100552/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220620100552/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/b14725fdbb986bbdc66f0b21bf416abe8e54eff0",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220620100552/README.md",
"type": "file",
"content": "Ansible check exists with register",
"encoding": "base64",
"date": "2022-06-20T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220620100552/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/b14725fdbb986bbdc66f0b21bf416abe8e54eff0",
"html": "https://github.com/danielmichaels/zet/blob/main/20220620100552/README.md"
}
},
{
"name": "README.md",
"path": "20220620101413",
"sha": "be23bc514df81d6671205c2a27c349c9404a21e0",
"size": 422,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220620101413/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220620101413/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/be23bc514df81d6671205c2a27c349c9404a21e0",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220620101413/README.md",
"type": "file",
"content": "Kubernetes local development musings: work edition",
"encoding": "base64",
"date": "2022-06-20T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220620101413/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/be23bc514df81d6671205c2a27c349c9404a21e0",
"html": "https://github.com/danielmichaels/zet/blob/main/20220620101413/README.md"
}
},
{
"name": "README.md",
"path": "20220703210713",
"sha": "4e1e0ad61789bec33084e6671d72c47c087f63ef",
"size": 478,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220703210713/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220703210713/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/4e1e0ad61789bec33084e6671d72c47c087f63ef",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220703210713/README.md",
"type": "file",
"content": "WGD Mon 2022-07-01",
"encoding": "base64",
"date": "2022-07-03T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220703210713/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/4e1e0ad61789bec33084e6671d72c47c087f63ef",
"html": "https://github.com/danielmichaels/zet/blob/main/20220703210713/README.md"
}
},
{
"name": "README.md",
"path": "20220722101143",
"sha": "9575879b92bbfde61d527b33f2cd9f56ab03288d",
"size": 1361,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220722101143/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220722101143/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/9575879b92bbfde61d527b33f2cd9f56ab03288d",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220722101143/README.md",
"type": "file",
"content": "WGD Fri 2022-07-22",
"encoding": "base64",
"date": "2022-07-22T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220722101143/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/9575879b92bbfde61d527b33f2cd9f56ab03288d",
"html": "https://github.com/danielmichaels/zet/blob/main/20220722101143/README.md"
}
},
{
"name": "README.md",
"path": "20220722105002",
"sha": "bf79068a05b45a3cfc111f731307f9cf3fa281dc",
"size": 791,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220722105002/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220722105002/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/bf79068a05b45a3cfc111f731307f9cf3fa281dc",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220722105002/README.md",
"type": "file",
"content": "wails as a standalone app",
"encoding": "base64",
"date": "2022-07-22T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220722105002/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/bf79068a05b45a3cfc111f731307f9cf3fa281dc",
"html": "https://github.com/danielmichaels/zet/blob/main/20220722105002/README.md"
}
},
{
"name": "README.md",
"path": "20220722110001",
"sha": "2b4afe1a18698f4df0f2814845301d59133f1cf6",
"size": 1358,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220722110001/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220722110001/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/2b4afe1a18698f4df0f2814845301d59133f1cf6",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220722110001/README.md",
"type": "file",
"content": "python Protocols are Go interfaces",
"encoding": "base64",
"date": "2022-07-22T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220722110001/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/2b4afe1a18698f4df0f2814845301d59133f1cf6",
"html": "https://github.com/danielmichaels/zet/blob/main/20220722110001/README.md"
}
},
{
"name": "README.md",
"path": "20220731093411",
"sha": "ce8da153d58e4288f82c8f203da0dd0231a299ad",
"size": 685,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220731093411/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220731093411/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/ce8da153d58e4288f82c8f203da0dd0231a299ad",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220731093411/README.md",
"type": "file",
"content": "WGD Fri 2022-07-29",
"encoding": "base64",
"date": "2022-07-31T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220731093411/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/ce8da153d58e4288f82c8f203da0dd0231a299ad",
"html": "https://github.com/danielmichaels/zet/blob/main/20220731093411/README.md"
}
},
{
"name": "README.md",
"path": "20220731093830",
"sha": "0e7f6e7c12ef2b4c2cee8498e50317bd2a86a501",
"size": 612,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220731093830/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220731093830/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/0e7f6e7c12ef2b4c2cee8498e50317bd2a86a501",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220731093830/README.md",
"type": "file",
"content": "Razors worth remembering",
"encoding": "base64",
"date": "2022-07-31T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220731093830/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/0e7f6e7c12ef2b4c2cee8498e50317bd2a86a501",
"html": "https://github.com/danielmichaels/zet/blob/main/20220731093830/README.md"
}
},
{
"name": "README.md",
"path": "20220803031202",
"sha": "62097efd11a9fddc218e8f20f212bb0377082dd6",
"size": 1178,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220803031202/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220803031202/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/62097efd11a9fddc218e8f20f212bb0377082dd6",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220803031202/README.md",
"type": "file",
"content": "k3s custom resolv.conf",
"encoding": "base64",
"date": "2022-08-03T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220803031202/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/62097efd11a9fddc218e8f20f212bb0377082dd6",
"html": "https://github.com/danielmichaels/zet/blob/main/20220803031202/README.md"
}
},
{
"name": "README.md",
"path": "20220803031953",
"sha": "5a5dff3f2da7efc2c81729029bacdfa68cc9ef2e",
"size": 330,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220803031953/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220803031953/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/5a5dff3f2da7efc2c81729029bacdfa68cc9ef2e",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220803031953/README.md",
"type": "file",
"content": "thisisunsafe Chrome ssl bypass",
"encoding": "base64",
"date": "2022-08-03T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220803031953/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/5a5dff3f2da7efc2c81729029bacdfa68cc9ef2e",
"html": "https://github.com/danielmichaels/zet/blob/main/20220803031953/README.md"
}
},
{
"name": "README.md",
"path": "20220816021205",
"sha": "7d0938c6e134c45877f22b08c4225936a8b24710",
"size": 512,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220816021205/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220816021205/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/7d0938c6e134c45877f22b08c4225936a8b24710",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220816021205/README.md",
"type": "file",
"content": "Getting into the back country",
"encoding": "base64",
"date": "2022-08-16T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220816021205/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/7d0938c6e134c45877f22b08c4225936a8b24710",
"html": "https://github.com/danielmichaels/zet/blob/main/20220816021205/README.md"
}
},
{
"name": "README.md",
"path": "20220822025508",
"sha": "823689b32a97655298b4aa058af96e1027627e13",
"size": 373,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220822025508/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220822025508/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/823689b32a97655298b4aa058af96e1027627e13",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220822025508/README.md",
"type": "file",
"content": "kubernetes tips",
"encoding": "base64",
"date": "2022-08-22T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220822025508/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/823689b32a97655298b4aa058af96e1027627e13",
"html": "https://github.com/danielmichaels/zet/blob/main/20220822025508/README.md"
}
},
{
"name": "README.md",
"path": "20220823010624",
"sha": "1421e1ac6f9f1c8b1d56439ccfc93e7ea8c86cd7",
"size": 327,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220823010624/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220823010624/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/1421e1ac6f9f1c8b1d56439ccfc93e7ea8c86cd7",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220823010624/README.md",
"type": "file",
"content": "k3s nginx ingress over traefik",
"encoding": "base64",
"date": "2022-08-23T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220823010624/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/1421e1ac6f9f1c8b1d56439ccfc93e7ea8c86cd7",
"html": "https://github.com/danielmichaels/zet/blob/main/20220823010624/README.md"
}
},
{
"name": "README.md",
"path": "20220826040451",
"sha": "8d597b1c1b9bb6938eafebb7cb8211a6234fb3bb",
"size": 1505,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220826040451/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220826040451/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/8d597b1c1b9bb6938eafebb7cb8211a6234fb3bb",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220826040451/README.md",
"type": "file",
"content": "TIL: bash flags",
"encoding": "base64",
"date": "2022-08-26T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220826040451/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/8d597b1c1b9bb6938eafebb7cb8211a6234fb3bb",
"html": "https://github.com/danielmichaels/zet/blob/main/20220826040451/README.md"
}
},
{
"name": "README.md",
"path": "20220826040905",
"sha": "daaa9e9561104e34da8f5f5bc2baf8d2c8b209b4",
"size": 909,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220826040905/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220826040905/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/daaa9e9561104e34da8f5f5bc2baf8d2c8b209b4",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220826040905/README.md",
"type": "file",
"content": "microservice learning task",
"encoding": "base64",
"date": "2022-08-26T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220826040905/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/daaa9e9561104e34da8f5f5bc2baf8d2c8b209b4",
"html": "https://github.com/danielmichaels/zet/blob/main/20220826040905/README.md"
}
},
{
"name": "README.md",
"path": "20220829021309",
"sha": "4944ed9216fe6d75afa2e64f12b8d656cf25f669",
"size": 368,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220829021309/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220829021309/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/4944ed9216fe6d75afa2e64f12b8d656cf25f669",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220829021309/README.md",
"type": "file",
"content": "get private ssl cert",
"encoding": "base64",
"date": "2022-08-29T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220829021309/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/4944ed9216fe6d75afa2e64f12b8d656cf25f669",
"html": "https://github.com/danielmichaels/zet/blob/main/20220829021309/README.md"
}
},
{
"name": "README.md",
"path": "20220901015349",
"sha": "8e324d3050dce6ad03e5eee7cd3b04d667d44f40",
"size": 1143,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220901015349/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220901015349/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/8e324d3050dce6ad03e5eee7cd3b04d667d44f40",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220901015349/README.md",
"type": "file",
"content": "kubernetes ingress and metallb",
"encoding": "base64",
"date": "2022-09-01T00:00:00Z",
"_links": {
"self": "https://api.github.com/repos/danielmichaels/zet/contents/20220901015349/README.md?ref=main",
"git": "https://api.github.com/repos/danielmichaels/zet/git/blobs/8e324d3050dce6ad03e5eee7cd3b04d667d44f40",
"html": "https://github.com/danielmichaels/zet/blob/main/20220901015349/README.md"
}
},
{
"name": "README.md",
"path": "20220904010925",
"sha": "eae4f795ef6f96bd963b099892e12af157518028",
"size": 279,
"url": "https://api.github.com/repos/danielmichaels/zet/contents/20220904010925/README.md?ref=main",
"html_url": "https://github.com/danielmichaels/zet/blob/main/20220904010925/README.md",
"git_url": "https://api.github.com/repos/danielmichaels/zet/git/blobs/eae4f795ef6f96bd963b099892e12af157518028",
"download_url": "https://raw.githubusercontent.com/danielmichaels/zet/main/20220904010925/README.md",
"type": "file",
"content": "programmer quote of the day",