-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
2244 lines (1870 loc) · 36.7 KB
/
CHANGELOG
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
Commit: 55a1b6c
Author: GitHub
Sat Jun 3 16:57:10 2023
Commit subject:
Delete new-post.sh
Commit: e4004a6
Author: GitHub
Sat Jun 3 16:56:06 2023
Commit subject:
Delete .idea/.idea.crimsontome-blog.dir/.idea directory
Commit: f0572d2
Author: Rowan Clark
Thu Jun 1 20:12:52 2023
Commit subject:
chore: update stack
Commit: 0ddee8c
Author: Rowan Clark
Thu Jun 1 20:10:51 2023
Commit subject:
chore: bump cv
Commit: b726482
Author: Rowan Clark
Tue May 2 11:31:18 2023
Commit subject:
chore: name
Commit: e9df7d4
Author: Rowan Clark
Sat Apr 8 18:23:14 2023
Commit subject:
chore: fix error in cv
Commit: 4fd0f7c
Author: Rowan Clark
Sat Apr 8 17:50:44 2023
Commit subject:
chore: update path for cv in about
Commit: 11489f9
Author: Rowan Clark
Sat Apr 8 17:48:22 2023
Commit subject:
chore: update cv
Commit: 7b2c851
Author: Rowan Clark
Sun Mar 5 22:21:35 2023
Commit subject:
mv fedora post out of drafts
Commit: 43327db
Author: Rowan Clark
Fri Mar 3 15:50:57 2023
Commit subject:
chore: update fedora post
Commit: df4504e
Author: Rowan Clark
Fri Mar 3 15:48:45 2023
Commit subject:
chore: update script
Commit: a458d40
Author: Rowan Clark
Fri Mar 3 15:31:59 2023
Commit subject:
add update script
Commit: 78716bb
Author: Rowan Clark
Fri Mar 3 15:29:06 2023
Commit subject:
chore: update stack page
Commit: bda1438
Author: GitHub
Thu Mar 2 16:27:17 2023
Commit subject:
Delete FUNDING.yml
Commit: 801383b
Author: Rowan Clark
Wed Mar 1 16:33:57 2023
Commit subject:
chore: complete fedora post
Commit: 30844bc
Author: Rowan Clark
Sat Feb 25 02:29:20 2023
Commit subject:
remove: prettier style
Commit: 31ff358
Author: Rowan Clark
Sat Feb 25 02:18:19 2023
Commit subject:
chore: update badge urls
Commit: 540da28
Author: Rowan Clark
Tue Feb 21 02:50:08 2023
Commit subject:
chore: move out dir to /_site
Commit: 5364581
Author: Rowan Clark
Tue Feb 21 02:18:24 2023
Commit subject:
chore: update readme with new repo info
Commit: 68950d0
Author: Rowan Clark
Tue Feb 21 02:12:36 2023
Commit subject:
chore: update license
Commit: 1525680
Author: Rowan Clark
Tue Feb 21 02:02:27 2023
Commit subject:
show only the first post in blog at once
Commit: 8f732ff
Author: Rowan Clark
Tue Feb 21 01:59:28 2023
Commit subject:
fix: syntax highlighting in posts and favicon
Commit: bcf72fc
Author: Rowan Clark
Mon Feb 20 15:04:56 2023
Commit subject:
fix: add title to blog page
Commit: 2901fa1
Author: Rowan Clark
Mon Feb 20 15:03:10 2023
Commit subject:
fix: case fix on menu
Commit: 7ae3f23
Author: Rowan Clark
Sun Feb 19 15:11:50 2023
Commit subject:
chore: minor updates to stack
Commit: 3165022
Author: Rowan Clark
Sun Feb 19 15:08:23 2023
Commit subject:
chore: update stack for future build
Commit: ad5f8e0
Author: Rowan Clark
Fri Feb 17 03:57:41 2023
Commit subject:
docs: add theme
Commit: 6613bae
Author: Rowan Clark
Fri Feb 17 03:53:23 2023
Commit subject:
docs: update readme with zola info
Commit: 698d5be
Author: Rowan Clark
Fri Feb 17 03:47:37 2023
Commit subject:
remove workflows and add stack to main page
Commit: f00406a
Author: Rowan Clark
Fri Feb 17 03:39:27 2023
Commit subject:
chore: re add theme
Commit: 307c3f6
Author: Rowan Clark
Fri Feb 17 03:25:54 2023
Commit subject:
chore: can build on server now, but no docker
Commit: 775675c
Author: Rowan Clark
Fri Feb 17 03:09:40 2023
Commit subject:
chore: moveover so i can deploy maybe
Commit: a5f4062
Author: Rowan Clark
Fri Feb 17 02:13:35 2023
Commit subject:
fix: potential fix for zola theme not pushing
Commit: 3787d8b
Author: Rowan Clark
Fri Feb 17 01:08:20 2023
Commit subject:
feat: add zola dockerfile
Commit: 36dfd92
Author: Rowan Clark
Fri Feb 17 00:44:51 2023
Commit subject:
remove: rm 11ty files
Commit: 9d9cf6e
Author: Rowan Clark
Fri Feb 17 00:36:12 2023
Commit subject:
feat: transfer imgs
Commit: 37c9e42
Author: Rowan Clark
Fri Feb 17 00:29:15 2023
Commit subject:
feat: add stack
Commit: 6e7f632
Author: Rowan Clark
Fri Feb 17 00:22:12 2023
Commit subject:
chore: remove tag support for now
Commit: 952391a
Author: Rowan Clark
Fri Feb 17 00:18:22 2023
Commit subject:
fix: fix zola, start adding blog archive
Commit: a910301
Author: Rowan Clark
Thu Feb 16 23:00:04 2023
Commit subject:
feat: enable full unicode support
Commit: 1025744
Author: Rowan Clark
Thu Feb 16 22:55:14 2023
Commit subject:
feat: add home menu and enable tags
Commit: cd8ab71
Author: Rowan Clark
Thu Feb 16 22:53:07 2023
Commit subject:
feat: add terminal theme and begin config
Commit: 2212d49
Author: Rowan Clark
Thu Feb 16 22:42:32 2023
Commit subject:
chore: init zola
Commit: 8208d94
Author: Rowan Clark
Tue Feb 14 02:25:14 2023
Commit subject:
chore: switch non-template files from njk to html
Commit: 4d94b0f
Author: Rowan Clark
Tue Feb 14 01:12:55 2023
Commit subject:
feat: fix link colour, begin draft of march's post
Commit: 83c100f
Author: Rowan Clark
Mon Feb 13 23:24:37 2023
Commit subject:
chore: update changelog
Commit: f6c6c7f
Author: Rowan Clark
Mon Feb 13 19:29:12 2023
Commit subject:
build: update nodejs ver and use nginx-stable
Commit: 1148206
Author: Rowan Clark
Mon Feb 6 23:30:23 2023
Commit subject:
chore: update cv
Commit: 9983d9d
Author: Rowan Clark
Wed Feb 1 11:02:02 2023
Commit subject:
chore: add helix to text editors
Commit: 62030e0
Author: Rowan Clark
Wed Feb 1 11:00:45 2023
Commit subject:
chore: mv new post out of drafts
Commit: c1eabf5
Author: Rowan Clark
Mon Jan 30 09:25:54 2023
Commit subject:
chore: prettier-formatting
Commit: 91dd99b
Author: Rowan Clark
Mon Jan 30 09:23:59 2023
Commit subject:
chore: revert css changes
Commit: 310a59e
Author: Rowan Clark
Mon Jan 30 05:39:00 2023
Commit subject:
chore: add nginx post to drafts - release in Feb
Commit: 3c9fa7f
Author: Rowan Clark
Mon Jan 30 01:48:20 2023
Commit subject:
chore: add test script for new post scaffolding
Commit: 8b8fbfe
Author: Rowan Clark
Thu Jan 5 11:12:52 2023
Commit subject:
chore: prettier formatting
Commit: 633dbcd
Author: Rowan Clark
Wed Jan 4 19:41:38 2023
Commit subject:
chore: update stack
Commit: 3c8b34f
Author: Rowan Clark
Sun Jan 1 17:13:16 2023
Commit subject:
chore: update date on pwm post
Commit: bac16f5
Author: Rowan Clark
Sun Jan 1 16:14:48 2023
Commit subject:
chore: mv pwm draft to posts
Commit: 1291b00
Author: Rowan Clark
Mon Dec 26 13:38:41 2022
Commit subject:
chore: make text more visible by dimming bg
Commit: 58e46af
Author: Rowan Clark
Mon Dec 26 11:03:16 2022
Commit subject:
chore: fill in password-managers post
Commit: 1409cfe
Author: Rowan Clark
Sat Dec 24 12:52:16 2022
Commit subject:
style: prettierformatting
Commit: d21a0ca
Author: Rowan Clark
Sat Dec 24 12:45:33 2022
Commit subject:
chore: add update post, init draft pw manager post
Commit: f0a5905
Author: Rowan Clark
Mon Nov 28 15:45:33 2022
Commit subject:
add mastadon
Commit: 128a9d3
Author: Rowan Clark
Sun Nov 27 13:41:10 2022
Commit subject:
chore: update stack page
Commit: f8b985d
Author: Rowan Clark
Mon Nov 7 00:23:49 2022
Commit subject:
style: prettier formatting
Commit: 7c716c1
Author: Rowan Clark
Mon Nov 7 00:08:41 2022
Commit subject:
chore: add Cl and ToC to readme
Commit: a74e53f
Author: Rowan Clark
Mon Nov 7 00:04:48 2022
Commit subject:
chore: add changelog
Commit: 31c5023
Author: Rowan Clark
Mon Nov 7 00:02:51 2022
Commit subject:
chore: update stack
Commit: 443b7ce
Author: Rowan Clark
Sun Oct 30 13:45:27 2022
Commit subject:
fix(index.css): code block wrap
Commit: 0fbd2d0
Author: Rowan Clark
Sun Oct 30 12:59:14 2022
Commit subject:
style: prettier formatting
Commit: 965029d
Author: Rowan Clark
Sun Oct 30 12:46:22 2022
Commit subject:
chore: switch to updated ouroboros fork
Commit: 78807c0
Author: GitHub
Sat Oct 29 11:03:52 2022
Commit subject:
fix metadata
Commit: 8c89652
Author: Rowan Clark
Sat Oct 29 10:47:21 2022
Commit subject:
fix: fix hullblogs integration?
Commit: c95c179
Author: Rowan Clark
Wed Oct 26 22:21:06 2022
Commit subject:
feat: add stack page data
Commit: 94cfb4f
Author: Rowan Clark
Wed Oct 26 21:27:38 2022
Commit subject:
feat: lil blog intro
Commit: 70aa3e1
Author: Rowan Clark
Wed Oct 26 21:22:56 2022
Commit subject:
feat: init stack page
Commit: 320367b
Author: Rowan Clark
Mon Oct 24 20:03:58 2022
Commit subject:
Revert "chore: add test post for cohost bot"
Commit: 01536ac
Author: Rowan Clark
Mon Oct 24 20:03:42 2022
Commit subject:
Revert "style: prettier formatting"
Commit: 606ecb2
Author: Rowan Clark
Mon Oct 24 19:36:35 2022
Commit subject:
style: prettier formatting
Commit: 73636e0
Author: Rowan Clark
Mon Oct 24 19:34:04 2022
Commit subject:
chore: add test post for cohost bot
Commit: 3198212
Author: Rowan Clark
Mon Oct 24 18:45:16 2022
Commit subject:
Revert "chore: add description field to atom feed"
Commit: c6fe39e
Author: Rowan Clark
Mon Oct 24 18:34:56 2022
Commit subject:
chore: add description field to atom feed
Commit: 7ccbc98
Author: Rowan Clark
Mon Oct 24 18:31:50 2022
Commit subject:
chore: update feed metadata
Commit: 8957f40
Author: Rowan Clark
Thu Oct 20 21:53:37 2022
Commit subject:
chore: update about page with cv
Commit: cef1098
Author: Matt Clark
Thu Oct 20 21:17:26 2022
Commit subject:
empty drafts
Commit: 505cdf4
Author: Rowan Clark
Fri Sep 30 00:15:50 2022
Commit subject:
prettier formatting
Commit: 313e6d5
Author: Rowan Clark
Fri Sep 30 00:09:09 2022
Commit subject:
add draft post and new favicon
Commit: 56f2b14
Author: Rowan Clark
Wed Sep 28 19:06:23 2022
Commit subject:
fix css
Commit: 32f60a9
Author: Rowan Clark
Wed Sep 28 17:53:39 2022
Commit subject:
fix underline
Commit: 0084ee2
Author: Rowan Clark
Wed Sep 28 10:22:32 2022
Commit subject:
upscaled OG image
Commit: fc3110f
Author: Rowan Clark
Wed Sep 28 00:43:36 2022
Commit subject:
new link hover animation
Commit: 686f785
Author: Rowan Clark
Wed Sep 28 00:18:20 2022
Commit subject:
add test opengraph image
Commit: 1d19f85
Author: Rowan Clark
Wed Sep 28 00:04:19 2022
Commit subject:
add more to hacktoberfest post
Commit: 3610b29
Author: Rowan Clark
Sun Sep 25 21:03:19 2022
Commit subject:
init hacktoberfest post
Commit: 48b4797
Author: Rowan Clark
Fri Sep 23 22:41:52 2022
Commit subject:
remove footer messups
Commit: 7eb4fe5
Author: Rowan Clark
Fri Sep 23 22:37:12 2022
Commit subject:
add new gradient
Commit: ab86371
Author: Rowan Clark
Fri Sep 23 22:24:50 2022
Commit subject:
Revert "Revert "fix code formatting in readme""
Commit: c1e2b57
Author: Rowan Clark
Fri Sep 23 22:22:13 2022
Commit subject:
Revert "fix code formatting in readme"
Commit: 237f60b
Author: Rowan Clark
Fri Sep 23 22:21:57 2022
Commit subject:
Revert "move source files to src/"
Commit: 81f6e80
Author: Matt Clark
Wed Sep 21 22:06:33 2022
Commit subject:
fix code formatting in readme
Commit: 9e3ecf4
Author: Rowan Clark
Mon Sep 19 02:01:18 2022
Commit subject:
what is going on here
Commit: 45aafba
Author: Rowan Clark
Mon Sep 19 01:36:53 2022
Commit subject:
attempt at adding src paths
Commit: 0bc06ce
Author: Rowan Clark
Mon Sep 19 01:28:28 2022
Commit subject:
move source files to src/
Commit: ab2744b
Author: Rowan Clark
Sat Sep 17 14:19:16 2022
Commit subject:
add prettier formatting
Commit: c4a2228
Author: Rowan Clark
Sat Sep 17 14:17:38 2022
Commit subject:
add stick to bottom but it doesnt work
Commit: 8cdb463
Author: Rowan Clark
Sat Sep 17 02:36:06 2022
Commit subject:
add prettier readme badge
Commit: 83c3b51
Author: Rowan Clark
Sat Sep 17 02:28:32 2022
Commit subject:
update prettierignore
Commit: 8d9dce3
Author: Rowan Clark
Sat Sep 17 02:27:11 2022
Commit subject:
prettier formatting
Commit: bed09aa
Author: Rowan Clark
Sat Sep 17 02:25:51 2022
Commit subject:
prettier node scripts and fix CI workflow
Commit: 08eb33e
Author: Rowan Clark
Sat Sep 17 02:18:52 2022
Commit subject:
fix merge conflicts
Commit: f890176
Author: Rowan Clark
Sat Sep 17 02:03:22 2022
Commit subject:
format all with prettier
Commit: 06c52cb
Author: GitHub
Sat Sep 17 02:06:12 2022
Commit subject:
add prettier to CI
Commit: 2d8a122
Author: Rowan Clark
Sat Sep 17 01:54:48 2022
Commit subject:
reformat css with prettier
Commit: 3b78a10
Author: Rowan Clark
Sat Sep 17 01:44:23 2022
Commit subject:
add minor touchups
Commit: 9bd0b59
Author: Rowan Clark
Sat Sep 17 01:33:35 2022
Commit subject:
add padding to footer
Commit: 771b57b
Author: Rowan Clark
Sat Sep 17 01:31:07 2022
Commit subject:
center the footer
Commit: 3d17dc6
Author: Rowan Clark
Sat Sep 17 01:08:00 2022
Commit subject:
add footer
Commit: 73a3cd7
Author: Rowan Clark
Sat Sep 17 00:43:35 2022
Commit subject:
add fontawesome script
Commit: fa3dc09
Author: GitHub
Tue Sep 6 17:54:37 2022
Commit subject:
Merge pull request #4 from sbrl/main
Commit: 58263b6
Author: Starbeamrainbowlabs
Tue Sep 6 17:49:56 2022
Commit subject:
css: make mobile friendly
Commit: 858238f
Author: Starbeamrainbowlabs
Tue Sep 6 17:17:56 2022
Commit subject:
format code
Commit: 25448fd
Author: Matt Clark
Tue Sep 6 01:44:31 2022
Commit subject:
rm header underline
Commit: 86d2b9a
Author: Matt Clark
Sun Sep 4 22:19:46 2022
Commit subject:
refix image width
Commit: ba09b9f
Author: Matt Clark
Sun Sep 4 22:17:31 2022
Commit subject:
fix css grid
Commit: af1bdb2
Author: Matt Clark
Sun Sep 4 20:52:12 2022
Commit subject:
fix image alignment
Commit: dcbabaf
Author: Matt Clark
Sun Sep 4 20:41:19 2022
Commit subject:
more centering tests
Commit: 2e6e74f
Author: Matt Clark
Sun Sep 4 19:49:13 2022
Commit subject:
attempt at css grid
Commit: 028b535
Author: Matt Clark
Sun Sep 4 17:46:13 2022
Commit subject:
cleanup more css
Commit: 297ccac
Author: Matt Clark
Sun Sep 4 16:41:59 2022
Commit subject:
cleanup css
Commit: 32a31d2
Author: Matt Clark
Sun Sep 4 16:18:35 2022
Commit subject:
raise post count on hopepage
Commit: 3e797fa
Author: Matt Clark
Sun Sep 4 15:31:01 2022
Commit subject:
update dockerfile in readme
Commit: 77475ec
Author: Matt Clark
Sun Sep 4 15:24:37 2022
Commit subject:
bump node version in dockerfile to allow 11ty to run
Commit: e04dfa2
Author: Matt Clark
Sun Sep 4 15:11:59 2022
Commit subject:
bump 11ty version from 0.12.1 to 1.0.2
Commit: c20948f
Author: Matt Clark
Sun Sep 4 14:57:08 2022
Commit subject:
update .gitignore
Commit: 56b8aff
Author: Matt Clark
Sun Sep 4 14:48:22 2022
Commit subject:
rm unused files
Commit: 8be171a
Author: Matt Clark
Sun Sep 4 14:41:13 2022
Commit subject:
rm redundant packages and fix code blocks in previous posts
Commit: adc208a
Author: Matt Clark
Sun Sep 4 14:29:25 2022
Commit subject:
cleanup some css
Commit: fce85ca
Author: Matt Clark
Sun Sep 4 13:19:52 2022
Commit subject:
fix code blocks
Commit: d8c4fa9
Author: Matt Clark
Sun Sep 4 12:55:16 2022
Commit subject:
fixup css need to fix code blocks
Commit: 6a23858
Author: Matt Clark
Sun Sep 4 03:12:58 2022
Commit subject:
finish vps update post
Commit: c6f3ef8
Author: Matt Clark
Sun Sep 4 01:45:59 2022
Commit subject:
add intro and why I switched
Commit: 042bd71
Author: Matt Clark
Sun Sep 4 01:22:26 2022
Commit subject:
init vps update post
Commit: f7775e2
Author: GitHub
Sun Sep 4 00:59:48 2022
Commit subject:
add all the badges
Commit: 9302290
Author: GitHub
Sun Sep 4 00:50:26 2022
Commit subject:
fix codeblock typo
Commit: 7e951ad
Author: GitHub
Sun Sep 4 00:48:36 2022
Commit subject:
readme overhaul
Commit: c47dd11
Author: GitHub
Sun Sep 4 00:41:34 2022
Commit subject:
rm port from dockerfile
Commit: 25f6984
Author: GitHub
Sun Sep 4 00:29:10 2022
Commit subject:
add ouroboros image
Commit: 1499284
Author: GitHub
Sun Aug 28 19:36:36 2022
Commit subject:
Create docker-publish.yml
Commit: ac75159
Author: GitHub
Sun Aug 28 19:32:57 2022
Commit subject:
Create node CI.yml
Commit: fa964c7
Author: Matt Clark
Thu Aug 25 15:16:49 2022
Commit subject:
complete ouroboros post
Commit: a186dcb
Author: Matt Clark
Thu Aug 25 12:59:50 2022
Commit subject:
init ouroboros post
Commit: 3ff921b
Author: Matt Clark
Sun Jul 17 20:57:49 2022
Commit subject:
update about
Commit: 399986c
Author: Matt Clark
Sat Jul 2 11:22:28 2022
Commit subject:
update feed
Commit: d65bf07
Author: Matt Clark
Wed Jun 22 09:57:37 2022
Commit subject:
rm netlify status
Commit: 55c1d0f
Author: Matt Clark
Thu Jun 9 17:00:24 2022
Commit subject:
move post out of drafts
Commit: e46f087
Author: GitHub
Thu Jun 9 16:59:29 2022
Commit subject:
finish vps post
Commit: 4d7cc09
Author: Matt Clark
Thu Jun 9 16:15:43 2022
Commit subject:
add draft vps post
Commit: fadf1b0
Author: Matt Clark
Thu Jun 9 15:56:18 2022
Commit subject:
fixes
Commit: 0c9a376
Author: Matt Clark
Thu Jun 9 15:50:06 2022
Commit subject:
fixes
Commit: 72bf688
Author: Matt Clark
Thu Jun 9 15:14:55 2022
Commit subject:
locking with NPM post
Commit: 24ae6d8
Author: Matt Clark
Sun Jun 5 15:09:06 2022
Commit subject:
update package.json
Commit: 82285dc
Author: Matt Clark
Sun Jun 5 14:45:35 2022
Commit subject:
edit readme
Commit: e7d8243
Author: Matt Clark
Sun Jun 5 14:43:31 2022
Commit subject:
added dockerfile
Commit: 4c904aa
Author: Matt Clark
Thu May 12 03:33:06 2022
Commit subject:
new bg
Commit: 92a3ff1
Author: CrimsonTome
Wed Apr 20 14:27:17 2022
Commit subject:
test
Commit: 6a8c4ad
Author: GitHub
Sat Apr 16 00:34:30 2022
Commit subject:
Update robots.txt
Commit: a4b5152
Author: GitHub
Sat Apr 16 00:33:28 2022
Commit subject: