-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepos.html
More file actions
1904 lines (1879 loc) · 146 KB
/
repos.html
File metadata and controls
1904 lines (1879 loc) · 146 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html >
<head >
<script src="https://cdn.tailwindcss.com">
</script>
<style >
a.collaborator:link,
a.collaborator:hover,
a.collaborator:visited,
a.collaborator:focus,
a.collaborator:active,
span.topic {
border: 1px solid black;
padding: 0rem .5rem;
border-radius: 10px;
margin: 0 .1rem;
}
td.owner {
text-align: right;
}
td.description {
max-width: 25rem;
}
tr.repo-row td a:link,
tr.repo-row td a:hover,
tr.repo-row td a:visited,
tr.repo-row td a:focus,
tr.repo-row td a:active {
color: black;
}
body {
overflow-x: auto;
width: 100%;
}
table {
width: max-content;
}
tr.even {
background-color: #f0f0f0;
}
tr.odd {
background-color: #ffffff;
}
tr.repo-row.private {
font-weight: 350;
}
tr.repo-row.public {
font-weight: 500;
}
tr.repo-row.archived td {
background-color: rgba(255, 0, 0, 0.04);
}
#controls {
width: max-content;
}
</style>
</head>
<body >
<div style="margin-bottom: 1rem;" class="mx-auto" id="controls">
<label >
<input type="checkbox" id="toggle-public" checked="true"/>
Show Public
</label>
<label >
<input type="checkbox" id="toggle-private" checked="true" style="margin-left:1rem;"/>
Show Private
</label>
<label >
<input type="checkbox" id="toggle-archive" checked="true" style="margin-left:1rem;"/>
Show Archived
</label>
<br />
<label >
Owner
<input type="text" id="owner-filter" name="owner-filter" placeholder="Owner" class="rounded shadow-sm sm:text-sm p-1"/>
</label>
<label >
Repo
<input type="text" id="repo-filter" name="repo-filter" placeholder="Repo" class="rounded shadow-sm sm:text-sm p-1"/>
</label>
</div>
<table class="mx-auto">
<tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/.github" target="_blank">.github</a></td>
<td class="text-center"><span >heads/main</span></td>
<td ><span ></span></td>
<td class="description"><span ></span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/.github/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/.github" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/brewkeeper" target="_blank">brewkeeper</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span ></span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/brewkeeper/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/brewkeeper" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span >📌</span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/contate" target="_blank">contate</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >A **very** simple static website manager</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/contate/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/contate" target="_blank">🔧</a><span class="topic cms">cms</span><span class="topic cms-static">cms-static</span><span class="topic static-site">static-site</span><span class="topic static-site-generator">static-site-generator</span></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/dmenu" target="_blank">dmenu</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >Fork of dmenu from suckless</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/dmenu/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/dmenu" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/dmenu-git" target="_blank">dmenu-git</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >For of aur pkgbuild</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/dmenu-git/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/dmenu-git" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/gitstatus" target="_blank">gitstatus</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >a go module for sysclient|boss that reports on git repository status</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/gitstatus/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/gitstatus" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/i3" target="_blank">i3</a></td>
<td class="text-center"><span >heads/next</span></td>
<td ><span >⑂</span></td>
<td class="description"><span >A tiling window manager for X11</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/i3/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/i3" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/i3-git" target="_blank">i3-git</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >Fork of aur packagebuild</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/i3-git/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/i3-git" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/i3blocks-config" target="_blank">i3blocks-config</a></td>
<td class="text-center"><span >heads/main</span></td>
<td ><span ></span></td>
<td class="description"><span >fork+ of i3blocks-contrib, which is unmaintained</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/i3blocks-config/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/i3blocks-config" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span >📌</span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/ilog" target="_blank">ilog</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >a stupid minimal go logging interface</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/ilog/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/ilog" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/public_keys" target="_blank">public_keys</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >Oliver and my public keys</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/public_keys/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/public_keys" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/server_template" target="_blank">server_template</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >Basic server setup</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/server_template/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/server_template" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span >📌</span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/static_template" target="_blank">static_template</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >static templates is a basic directory structure and helper scripts to compile a static website</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/static_template/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/static_template" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span >📌</span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/sutils" target="_blank">sutils</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >Server Utilities!</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/sutils/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/sutils" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/sysboss" target="_blank">sysboss</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >Collects machine status from clients</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/sysboss/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/sysboss" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/sysclient" target="_blank">sysclient</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >Is a client for sysboss</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/sysclient/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/sysclient" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span >📌</span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/user_bootstrap" target="_blank">user_bootstrap</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >dotfiles and some more</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/user_bootstrap/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/user_bootstrap" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span >📌</span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/uwho" target="_blank">uwho</a></td>
<td class="text-center"><span >heads/alpha</span></td>
<td ><span ></span></td>
<td class="description"><span >User authentication framework in go</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/uwho/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/uwho" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/wsssh" target="_blank">wsssh</a></td>
<td class="text-center"><span >v1.0-42-g00ee570</span></td>
<td ><span ></span></td>
<td class="description"><span >AccessTunnel is the start of ssh over websockets</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/wsssh/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/wsssh" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/ajpikul.com_server" target="_blank">ajpikul.com_server</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >my website</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/ajpikul.com_server/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/ajpikul.com_server" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/ajpikul.com_static2" target="_blank">ajpikul.com_static2</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >The static portion of my website</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/ajpikul.com_static2/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/ajpikul.com_static2" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/ajpikul.com_system" target="_blank">ajpikul.com_system</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >system description of ajpikul server</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/ajpikul.com_system/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/ajpikul.com_system" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ajpikul-com" target="_blank">ajpikul-com</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ajpikul-com/lenovo_config" target="_blank">lenovo_config</a></td>
<td class="text-center"><span >heads/main</span></td>
<td ><span ></span></td>
<td class="description"><span >This is a system description for the lenovo laptop</span></td>
<td class="collaborators"><a href="https://www.github.com/ajpikul-com/lenovo_config/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Full access to the repository, including settings and collaborators.">ayjayt<sup class="badge">4</sup></a></td>
<td class="topics"><a href="https://www.github.com/ajpikul-com/lenovo_config" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/aliwelchoo" target="_blank">aliwelchoo</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/aliwelchoo/plotly.js" target="_blank">plotly.js</a></td>
<td class="text-center"><span >heads/chart2music</span></td>
<td ><span >⑂</span></td>
<td class="description"><span >Open-source JavaScript charting library behind Plotly and Dash</span></td>
<td class="collaborators"><a href="https://www.github.com/aliwelchoo/plotly.js/settings/access" target="_blank">🔧</a><a href="https://www.github.com/ayjayt" class="collaborator" target="_blank" title="Can read, clone, and push to this repository">ayjayt<sup class="badge">2</sup></a></td>
<td class="topics"><a href="https://www.github.com/aliwelchoo/plotly.js" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/BeagleBoneBlackHack" target="_blank">BeagleBoneBlackHack</a></td>
<td class="text-center"><span >heads/main</span></td>
<td ><span ></span></td>
<td class="description"><span ></span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/BeagleBoneBlackHack/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/BeagleBoneBlackHack" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/auditmatic" target="_blank">auditmatic</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >auditmatic is a set of bashscripts used to facilitate system maintenance </span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/auditmatic/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/auditmatic" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/authdoor" target="_blank">authdoor</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >authdoor is a wrapper for go stdlib http funcs allowing dynamic (runtime) config and auth</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/authdoor/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/authdoor" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/ayjayt.github.io" target="_blank">ayjayt.github.io</a></td>
<td class="text-center"><span >heads/backupMaster</span></td>
<td ><span ></span></td>
<td class="description"><span >just for whatever i'm playing with</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/ayjayt.github.io/settings/access" target="_blank">🔧</a><a href="https://www.github.com/oliverchubet" class="collaborator" target="_blank" title="Can read, clone, and push to this repository">oliverchubet<sup class="badge">2</sup></a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/ayjayt.github.io" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/bikemelter" target="_blank">bikemelter</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >bikemelter is a proof of concept, web interface, oled peristaltic pump</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/bikemelter/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/bikemelter" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/common-lisp-jupyter" target="_blank">common-lisp-jupyter</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span >⑂</span></td>
<td class="description"><span >A Common Lisp kernel for Jupyter along with a library for building Jupyter kernels.</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/common-lisp-jupyter/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/common-lisp-jupyter" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/cowyo" target="_blank">cowyo</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >This is a fork (duplicate) of schollz/cowyo</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/cowyo/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/cowyo" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/domanager" target="_blank">domanager</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >domain manager combines namecheap and letsencrypt</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/domanager/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/domanager" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/gifBox" target="_blank">gifBox</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >Linux: Make an mp4 of a box on your screen</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/gifBox/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/gifBox" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/injection" target="_blank">injection</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span ></span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/injection/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/injection" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/issuebot" target="_blank">issuebot</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >issuebot is a github slackbot</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/issuebot/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/issuebot" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/jupyterhub" target="_blank">jupyterhub</a></td>
<td class="text-center"><span >4.0.1-173-ge52700e</span></td>
<td ><span >⑂</span></td>
<td class="description"><span >Multi-user server for Jupyter notebooks</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/jupyterhub/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/jupyterhub" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/jupyterlab-translate" target="_blank">jupyterlab-translate</a></td>
<td class="text-center"><span >v1.3.3</span></td>
<td ><span >⑂</span></td>
<td class="description"><span >JupyterLab Language pack helper</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/jupyterlab-translate/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/jupyterlab-translate" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/justClaims" target="_blank">justClaims</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >You can now access JWT claims easily. You're welcome.</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/justClaims/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/justClaims" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/justEmail" target="_blank">justEmail</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >this is a library to make it easier to send emails from your server</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/justEmail/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/justEmail" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/justRedis" target="_blank">justRedis</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >redis, as efficient as I can</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/justRedis/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/justRedis" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/justSQL" target="_blank">justSQL</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >this library encourages us to use SQL well</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/justSQL/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/justSQL" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/markdown" target="_blank">markdown</a></td>
<td class="text-center"><span >3.7-8-g4260e7b</span></td>
<td ><span >⑂</span></td>
<td class="description"><span >A Python implementation of John Gruber’s Markdown with Extension support.</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/markdown/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/markdown" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/plotly-image-export-alpine" target="_blank">plotly-image-export-alpine</a></td>
<td class="text-center"><span >heads/main</span></td>
<td ><span >⑂</span></td>
<td class="description"><span ></span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/plotly-image-export-alpine/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/plotly-image-export-alpine" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/protoc-gen-doc" target="_blank">protoc-gen-doc</a></td>
<td class="text-center"><span >v1.2.0-47-g8fcf976</span></td>
<td ><span >⑂</span></td>
<td class="description"><span >Documentation generator plugin for Google Protocol Buffers</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/protoc-gen-doc/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/protoc-gen-doc" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/spellbot" target="_blank">spellbot</a></td>
<td class="text-center"><span >heads/main</span></td>
<td ><span ></span></td>
<td class="description"><span >the spell bot</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/spellbot/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/spellbot" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/sslchk" target="_blank">sslchk</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >sslchk is a go package that verifies the ssl certificate chain https, tls</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/sslchk/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/sslchk" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/uxmux" target="_blank">uxmux</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >This is a framebuffer implementation of liteHTML. It probably won't use hardware acceleration.</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/uxmux/settings/access" target="_blank">🔧</a><a href="https://www.github.com/keelimeguy" class="collaborator" target="_blank" title="Can read, clone, and push to this repository">keelimeguy<sup class="badge">2</sup></a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/uxmux" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/vocab" target="_blank">vocab</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >this is where i make my vocab csv's for lexilize</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/vocab/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/vocab" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/welly" target="_blank">welly</a></td>
<td class="text-center"><span >heads/announcement</span></td>
<td ><span >⑂</span></td>
<td class="description"><span >Welly helps with well loading, wireline logs, log quality, data science</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/welly/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/welly" target="_blank">🔧</a></td>
</tr><tr class="repo-row public ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/xarray" target="_blank">xarray</a></td>
<td class="text-center"><span >v2023.04.2-23-g964d350</span></td>
<td ><span >⑂</span></td>
<td class="description"><span >N-D labeled arrays and datasets in Python</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/xarray/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/xarray" target="_blank">🔧</a></td>
</tr><tr class="repo-row public archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/ChameleonMini" target="_blank">ChameleonMini</a></td>
<td class="text-center"><span >RevE-DirectFlashWriteThru-118-ged39bcd</span></td>
<td ><span >⑂</span></td>
<td class="description"><span >The ChameleonMini is a versatile contactless smartcard emulator compliant to NFC. For further information see the Getting Started Page or the GitHub-Wiki-Tab above.</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/ChameleonMini/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/ChameleonMini" target="_blank">🔧</a></td>
</tr><tr class="repo-row public archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/GoServerSkeleton" target="_blank">GoServerSkeleton</a></td>
<td class="text-center"><span >v1.1-7-gddacc75</span></td>
<td ><span >⑂</span></td>
<td class="description"><span >A skeleton for making website servers in Go</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/GoServerSkeleton/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/GoServerSkeleton" target="_blank">🔧</a></td>
</tr><tr class="repo-row public archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/justLogging" target="_blank">justLogging</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >a logging library Keelin built for the go server</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/justLogging/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/justLogging" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/ajpikul.com_books" target="_blank">ajpikul.com_books</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >this is the dev environment for my bookkeeping setup</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/ajpikul.com_books/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/ajpikul.com_books" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/ajpikul.com_static" target="_blank">ajpikul.com_static</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >My static website</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/ajpikul.com_static/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/ajpikul.com_static" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/alpha" target="_blank">alpha</a></td>
<td class="text-center"><span >heads/main</span></td>
<td ><span ></span></td>
<td class="description"><span >alpha is our first separate library of tools</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/alpha/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/alpha" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/autopogo.com_lua" target="_blank">autopogo.com_lua</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span ></span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/autopogo.com_lua/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/autopogo.com_lua" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/autopogo.com_restserver" target="_blank">autopogo.com_restserver</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span ></span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/autopogo.com_restserver/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/autopogo.com_restserver" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/autopogo.com_static" target="_blank">autopogo.com_static</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span ></span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/autopogo.com_static/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/autopogo.com_static" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/bantermix.com_static" target="_blank">bantermix.com_static</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >the static website</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/bantermix.com_static/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/bantermix.com_static" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/board_notes" target="_blank">board_notes</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span ></span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/board_notes/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/board_notes" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/books" target="_blank">books</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >my finances</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/books/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/books" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/boost_patch" target="_blank">boost_patch</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span ></span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/boost_patch/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/boost_patch" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/business_studies" target="_blank">business_studies</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >this is a collection of writings on running my business</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/business_studies/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/business_studies" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/clFFT" target="_blank">clFFT</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span ></span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/clFFT/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/clFFT" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/coral_dev_system" target="_blank">coral_dev_system</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span ></span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/coral_dev_system/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/coral_dev_system" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/dev_server" target="_blank">dev_server</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span ></span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/dev_server/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/dev_server" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/label" target="_blank">label</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >script and instructions for label printing</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/label/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/label" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/parakeet" target="_blank">parakeet</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span ></span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/parakeet/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/parakeet" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/parakeet-extension" target="_blank">parakeet-extension</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >the extension for parakeet</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/parakeet-extension/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/parakeet-extension" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/server" target="_blank">server</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >the golang server</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/server/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/server" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/test" target="_blank">test</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >This is a test repository</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/test/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/test" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/todo" target="_blank">todo</a></td>
<td class="text-center"><span >heads/main</span></td>
<td ><span ></span></td>
<td class="description"><span >private todo list</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/todo/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/todo" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/webproxy" target="_blank">webproxy</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >webproxy is/was a basic proxy for osoximeter/microscope stuff</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/webproxy/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/webproxy" target="_blank">🔧</a></td>
</tr><tr class="repo-row private ">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/writing-private" target="_blank">writing-private</a></td>
<td class="text-center"><span >heads/main</span></td>
<td ><span ></span></td>
<td class="description"><span >writing</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/writing-private/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/writing-private" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/AngryMango" target="_blank">AngryMango</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >The original LED controller for MangoDX</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/AngryMango/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/AngryMango" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/BBB_devicetree" target="_blank">BBB_devicetree</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >A group of kernel configurations for SPI and custom LCD implementations.</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/BBB_devicetree/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/BBB_devicetree" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/ChamNewBoard" target="_blank">ChamNewBoard</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >Chameleon Modifications</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/ChamNewBoard/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/ChamNewBoard" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/ChameleonKL82_CBC_VCOM" target="_blank">ChameleonKL82_CBC_VCOM</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >CBC Layer for VCOM (unsure)</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/ChameleonKL82_CBC_VCOM/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/ChameleonKL82_CBC_VCOM" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/ChameleonRTC" target="_blank">ChameleonRTC</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >Chameleon RTC</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/ChameleonRTC/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/ChameleonRTC" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/GoldenAlgorithm" target="_blank">GoldenAlgorithm</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >from mangodx</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/GoldenAlgorithm/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/GoldenAlgorithm" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/KL82_PollOS_USB" target="_blank">KL82_PollOS_USB</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >A polling operating system for the kl83 security hardware based on a USB Full Speed driver w/ encryption</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/KL82_PollOS_USB/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/KL82_PollOS_USB" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/Phonon2016" target="_blank">Phonon2016</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >This was some work I did for senior design.</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/Phonon2016/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/Phonon2016" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/ShinyMango" target="_blank">ShinyMango</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >the lightboard for mangodx</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/ShinyMango/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/ShinyMango" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/Testing_Client_Portal" target="_blank">Testing_Client_Portal</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >Several concepts for a testing-portal for online access/remote control of engineering hardware</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/Testing_Client_Portal/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/Testing_Client_Portal" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/Testing_SBC_Gate" target="_blank">Testing_SBC_Gate</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >SBC driver/testing side, complimentary to Testing_Client_Portal</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/Testing_SBC_Gate/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/Testing_SBC_Gate" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/cc1310" target="_blank">cc1310</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >cc1310 hardware</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/cc1310/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/cc1310" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/crashtest" target="_blank">crashtest</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >a helper library to test for exit codes in golang tests</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/crashtest/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/crashtest" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/directory" target="_blank">directory</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >directory app- objects and tags w/ flexible querying</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/directory/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/directory" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/electrocham" target="_blank">electrocham</a></td>
<td class="text-center"><span >heads/master</span></td>
<td ><span ></span></td>
<td class="description"><span >A electron-based client interface to control a USB security device</span></td>
<td class="collaborators"><a href="https://www.github.com/ayjayt/electrocham/settings/access" target="_blank">🔧</a></td>
<td class="topics"><a href="https://www.github.com/ayjayt/electrocham" target="_blank">🔧</a></td>
</tr><tr class="repo-row private archived">
<td ><span ></span></td>
<td class="owner"><a href="https://www.github.com/ayjayt" target="_blank">ayjayt</a></td>
<td ><span >/</span></td>
<td class="repo"><a href="https://www.github.com/ayjayt/flexybox" target="_blank">flexybox</a></td>
<td class="text-center"><span >heads/master</span></td>