-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchives.html
1357 lines (1078 loc) · 43.7 KB
/
archives.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="" />
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,400;0,700;1,400&family=Source+Sans+Pro:ital,wght@0,300;0,400;0,700;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./theme/stylesheet/style.min.css">
<link id="pygments-light-theme" rel="stylesheet" type="text/css"
href="./theme/pygments/github.min.css">
<link rel="stylesheet" type="text/css" href="./theme/font-awesome/css/fontawesome.css">
<link rel="stylesheet" type="text/css" href="./theme/font-awesome/css/brands.css">
<link rel="stylesheet" type="text/css" href="./theme/font-awesome/css/solid.css">
<link href="https://shanedowling.com/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Shane Dowling Atom">
<link href="https://shanedowling.com/feeds/all.rss.xml" type="application/rss+xml" rel="alternate" title="Shane Dowling RSS">
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'G-Z9P3V6D0SV', 'auto');
ga('send', 'pageview');
</script>
<meta name="author" content="Shane Dowling" />
<meta name="description" content="" />
<meta property="og:site_name" content="Shane Dowling"/>
<meta property="og:type" content="blog"/>
<meta property="og:title" content="Shane Dowling"/>
<meta property="og:description" content=""/>
<meta property="og:locale" content="en_US"/>
<meta property="og:url" content="."/>
<meta property="og:image" content="/images/logo.png">
<title>Shane Dowling – Archives</title>
</head>
<body class="light-theme">
<aside>
<div>
<a href="./">
<img src="/images/logo.png" alt="Shane Dowling" title="Shane Dowling">
</a>
<h1>
<a href="./">Shane Dowling</a>
</h1>
<p>Platform Engineering Manager</p>
<nav>
<ul class="list">
<li>
<a target="_self"
href="./pages/contact.html#contact">
Contact
</a>
</li>
<li>
<a target="_self"
href="./pages/now-page.html#now-page">
Now Page
</a>
</li>
<li>
<a target="_self"
href="./pages/statuslog.html#statuslog">
Statuslog
</a>
</li>
<li>
<a target="_self" href="https://hybridcloudshow.com/" >podcast</a>
</li>
<li>
<a target="_self" href="https://pemonthly.com/" >newsletter</a>
</li>
</ul>
</nav>
<ul class="social">
<li>
<a class="sc-github"
href="http://github.com/shano"
target="_blank">
<i class="fa-brands fa-github"></i>
</a>
</li>
<li>
<a class="sc-mastodon"
rel="me" href="http://social.lol/@sed"
target="_blank">
<i class="fa-brands fa-mastodon"></i>
</a>
</li>
<li>
<a class="sc-linkedin"
href="https://www.linkedin.com/in/shanedow/"
target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</aside>
<main>
<article class="single">
<header>
<h1 id="archives">Archives</h1>
</header>
<div>
<dl>
<dt>Sat 10 August 2024</dt>
<dd>
<a href="./2024-08-10-82alkjsdasd.html">2024-08-10 82alkjsdasd</a>
</dd>
<dt>Mon 15 April 2024</dt>
<dd>
<a href="./2024-04-15-661d947d9e82d.html">2024-04-15 661d947d9e82d</a>
</dd>
<dt>Sun 14 April 2024</dt>
<dd>
<a href="./2024-04-14-661c38e7036fe.html">2024-04-14 661c38e7036fe</a>
</dd>
<dt>Fri 05 April 2024</dt>
<dd>
<a href="./the-hybrid-cloud-show-is-live.html">The Hybrid Cloud Show is Live!</a>
</dd>
<dt>Fri 05 April 2024</dt>
<dd>
<a href="./2024-04-05-66102b7617fb0.html">2024-04-05 66102b7617fb0</a>
</dd>
<dt>Thu 04 April 2024</dt>
<dd>
<a href="./2024-04-04-660f1455f1df6.html">2024-04-04 660f1455f1df6</a>
</dd>
<dt>Sun 04 February 2024</dt>
<dd>
<a href="./2024-02-04-65bff0507d240.html">2024-02-04 65bff0507d240</a>
</dd>
<dt>Tue 30 January 2024</dt>
<dd>
<a href="./2024-01-30-65b959bb77c61.html">2024-01-30 65b959bb77c61</a>
</dd>
<dt>Tue 02 January 2024</dt>
<dd>
<a href="./im-launching-a-platform-engineering-newsletter.html">I'm launching a Platform Engineering Newsletter</a>
</dd>
<dt>Tue 02 January 2024</dt>
<dd>
<a href="./2024-01-02-6593e77fba663.html">2024-01-02 6593e77fba663</a>
</dd>
<dt>Mon 01 January 2024</dt>
<dd>
<a href="./kindle-scribe-to-mastodon.html">Kindle Scribe to Mastodon</a>
</dd>
<dt>Tue 26 December 2023</dt>
<dd>
<a href="./2023-12-26-658ae95aaac96.html">2023-12-26 658ae95aaac96</a>
</dd>
<dt>Mon 25 December 2023</dt>
<dd>
<a href="./2023-12-25-6588cf0da1bdb.html">2023-12-25 6588cf0da1bdb</a>
</dd>
<dt>Mon 25 December 2023</dt>
<dd>
<a href="./2023-12-25-6589b402cab71.html">2023-12-25 6589b402cab71</a>
</dd>
<dt>Mon 25 December 2023</dt>
<dd>
<a href="./2023-12-25-6589b451c3df4.html">2023-12-25 6589b451c3df4</a>
</dd>
<dt>Sun 24 December 2023</dt>
<dd>
<a href="./2023-12-24-658889ba34adf.html">2023-12-24 658889ba34adf</a>
</dd>
<dt>Sun 24 December 2023</dt>
<dd>
<a href="./2023-12-24-65888a22018f3.html">2023-12-24 65888a22018f3</a>
</dd>
<dt>Sun 24 December 2023</dt>
<dd>
<a href="./2023-12-24-65888b9139127.html">2023-12-24 65888b9139127</a>
</dd>
<dt>Sun 24 December 2023</dt>
<dd>
<a href="./2023-12-24-65889a5463da6.html">2023-12-24 65889a5463da6</a>
</dd>
<dt>Fri 01 September 2023</dt>
<dd>
<a href="./make-your-smartphone-a-little-dumber.html">Make your smartphone a little dumber</a>
</dd>
<dt>Wed 30 August 2023</dt>
<dd>
<a href="./2023-08-30-64eefced12538.html">2023-08-30 64eefced12538</a>
</dd>
<dt>Mon 24 July 2023</dt>
<dd>
<a href="./2023-07-24-64bee966d10cc.html">2023-07-24 64bee966d10cc</a>
</dd>
<dt>Fri 30 June 2023</dt>
<dd>
<a href="./2023-06-30-649f4c3054525.html">2023-06-30 649f4c3054525</a>
</dd>
<dt>Mon 05 June 2023</dt>
<dd>
<a href="./streamlining-os-development-pipelines-for-the-beepberry.html">Streamlining OS Development Pipelines for the Beepberry - A Fun Challenge</a>
</dd>
<dt>Mon 05 June 2023</dt>
<dd>
<a href="./2023-06-05-647d85200829e.html">2023-06-05 647d85200829e</a>
</dd>
<dt>Sat 20 May 2023</dt>
<dd>
<a href="./2023-05-20-6468a5c876513.html">2023-05-20 6468a5c876513</a>
</dd>
<dt>Sun 30 April 2023</dt>
<dd>
<a href="./2023-04-30-644e85952a913.html">2023-04-30 644e85952a913</a>
</dd>
<dt>Wed 12 April 2023</dt>
<dd>
<a href="./2023-04-12-6436e25246bb1.html">2023-04-12 6436e25246bb1</a>
</dd>
<dt>Sun 09 April 2023</dt>
<dd>
<a href="./2023-04-09-6431f5ebcc2c8.html">2023-04-09 6431f5ebcc2c8</a>
</dd>
<dt>Fri 07 April 2023</dt>
<dd>
<a href="./2023-04-07-643015ef0bfa2.html">2023-04-07 643015ef0bfa2</a>
</dd>
<dt>Fri 07 April 2023</dt>
<dd>
<a href="./2023-04-07-64301828b7731.html">2023-04-07 64301828b7731</a>
</dd>
<dt>Wed 05 April 2023</dt>
<dd>
<a href="./2023-04-05-642dbfb0d2918.html">2023-04-05 642dbfb0d2918</a>
</dd>
<dt>Sun 02 April 2023</dt>
<dd>
<a href="./2023-04-02-64294284ae307.html">2023-04-02 64294284ae307</a>
</dd>
<dt>Sun 02 April 2023</dt>
<dd>
<a href="./2023-04-02-6429582ab25dc.html">2023-04-02 6429582ab25dc</a>
</dd>
<dt>Sun 19 March 2023</dt>
<dd>
<a href="./harnessing-the-power-of-nixos-for-platform-engineering.html">Harnessing the Power of NixOS for Platform Engineering</a>
</dd>
<dt>Sat 11 March 2023</dt>
<dd>
<a href="./de-risk-early-when-engineering-platforms.html">De-risk early when engineering platforms</a>
</dd>
<dt>Sat 11 March 2023</dt>
<dd>
<a href="./reduce-developer-cognitive-load-with-nix.html">Reduce developer cognitive load with nix</a>
</dd>
<dt>Wed 01 March 2023</dt>
<dd>
<a href="./2023-03-01-63ff18c4a9628.html">2023-03-01 63ff18c4a9628</a>
</dd>
<dt>Thu 02 February 2023</dt>
<dd>
<a href="./2023-02-02-63dc46c730ecd.html">2023-02-02 63dc46c730ecd</a>
</dd>
<dt>Wed 01 February 2023</dt>
<dd>
<a href="./2023-02-01-63dace4d9cbd3.html">2023-02-01 63dace4d9cbd3</a>
</dd>
<dt>Mon 30 January 2023</dt>
<dd>
<a href="./2023-01-30-63d7b9c04aed6.html">2023-01-30 63d7b9c04aed6</a>
</dd>
<dt>Tue 24 January 2023</dt>
<dd>
<a href="./2023-01-24-63d064b785440.html">2023-01-24 63d064b785440</a>
</dd>
<dt>Sun 22 January 2023</dt>
<dd>
<a href="./2023-01-22-63cd50f5c5dbc.html">2023-01-22 63cd50f5c5dbc</a>
</dd>
<dt>Sat 21 January 2023</dt>
<dd>
<a href="./2023-01-21-63cc2d5a24141.html">2023-01-21 63cc2d5a24141</a>
</dd>
<dt>Fri 20 January 2023</dt>
<dd>
<a href="./2023-01-20-63cab3105306a.html">2023-01-20 63cab3105306a</a>
</dd>
<dt>Fri 20 January 2023</dt>
<dd>
<a href="./2023-01-20-63cab34906481.html">2023-01-20 63cab34906481</a>
</dd>
<dt>Wed 18 January 2023</dt>
<dd>
<a href="./2023-01-18-63c86b80c031a.html">2023-01-18 63c86b80c031a</a>
</dd>
<dt>Sun 15 January 2023</dt>
<dd>
<a href="./2023-01-15-63c41ecd19915.html">2023-01-15 63c41ecd19915</a>
</dd>
<dt>Sun 08 January 2023</dt>
<dd>
<a href="./2023-01-08-63bb2bd2a2052.html">2023-01-08 63bb2bd2a2052</a>
</dd>
<dt>Sun 08 January 2023</dt>
<dd>
<a href="./2023-01-08-63bb2c96136a6.html">2023-01-08 63bb2c96136a6</a>
</dd>
<dt>Fri 06 January 2023</dt>
<dd>
<a href="./2023-01-06-63b7ff4c46b04.html">2023-01-06 63b7ff4c46b04</a>
</dd>
<dt>Fri 06 January 2023</dt>
<dd>
<a href="./2023-01-06-63b8286bad531.html">2023-01-06 63b8286bad531</a>
</dd>
<dt>Fri 06 January 2023</dt>
<dd>
<a href="./2023-01-06-63b8a7842b637.html">2023-01-06 63b8a7842b637</a>
</dd>
<dt>Wed 06 July 2022</dt>
<dd>
<a href="./physical-vs-logical-resources.html">Physical vs Logical resources</a>
</dd>
<dt>Sat 26 February 2022</dt>
<dd>
<a href="./how-to-manage-podcasts-on-an-ipod-classic-on-linux.html">How to manage Podcasts on an iPod Classic on Linux</a>
</dd>
<dt>Sun 06 February 2022</dt>
<dd>
<a href="./consuming-content-like-its-the-90s.html">Consuming Content Like it's the 90s</a>
</dd>
<dt>Tue 04 January 2022</dt>
<dd>
<a href="./til-updating-zsh.html">TIL Updating ZSH</a>
</dd>
<dt>Mon 03 January 2022</dt>
<dd>
<a href="./activity-nag.html">Activity Nag</a>
</dd>
<dt>Fri 27 August 2021</dt>
<dd>
<a href="./nonviolent-communication-a7bddf8d0805.html">Nonviolent Communication</a>
</dd>
<dt>Fri 26 March 2021</dt>
<dd>
<a href="./wrangle-your-personal-development-plan-pdp-into-actionable-objectives-e448649b5db0.html">5 Steps to a better Personal Development Plan(PDP)</a>
</dd>
<dt>Fri 01 January 2021</dt>
<dd>
<a href="./learning-python-as-a-platform-engineer-first-steps-911e59dd4af8.html">Learning Python as a Platform Engineer-First Steps</a>
</dd>
<dt>Sat 07 November 2020</dt>
<dd>
<a href="./the-vagueness-of-secular-buddhism.html">The vagueness of Secular Buddhism</a>
</dd>
<dt>Thu 05 November 2020</dt>
<dd>
<a href="./make-the-smartphone-dumb-again.html">Make the smartphone dumb again</a>
</dd>
<dt>Thu 05 November 2020</dt>
<dd>
<a href="./til-aws-lambda-environment-vars.html">TIL - AWS Lambda Environment Vars</a>
</dd>
<dt>Mon 02 November 2020</dt>
<dd>
<a href="./please-please-make-a-domain-for-your-own-email-address.html">Please, PLEASE make a domain for your own email address.</a>
</dd>
<dt>Mon 28 September 2020</dt>
<dd>
<a href="./quick-review-long-gone-days.html">Quick Review - Long Gone Days</a>
</dd>
<dt>Mon 28 September 2020</dt>
<dd>
<a href="./til-aws-summit-ecr.html">TIL - AWS Summit - ECR</a>
</dd>
<dt>Mon 28 September 2020</dt>
<dd>
<a href="./til-aws-summit-eventbridge.html">TIL - AWS Summit - Eventbridge</a>
</dd>
<dt>Mon 28 September 2020</dt>
<dd>
<a href="./til-aws-summit-fargate-autoscaling.html">TIL - AWS Summit - Fargate Autoscaling</a>
</dd>
<dt>Mon 28 September 2020</dt>
<dd>
<a href="./til-aws-summit-latency.html">TIL - AWS Summit - Latency</a>
</dd>
<dt>Mon 28 September 2020</dt>
<dd>
<a href="./til-aws-summit-spot-instances.html">TIL - AWS Summit - Spot Instances</a>
</dd>
<dt>Mon 28 September 2020</dt>
<dd>
<a href="./til-bash-shift.html">TIL - Bash Shift</a>
</dd>
<dt>Mon 28 September 2020</dt>
<dd>
<a href="./til-git-rebase.html">TIL - Git Rebase</a>
</dd>
<dt>Mon 28 September 2020</dt>
<dd>
<a href="./til-how-to-match-python-regex-postgis.html">TIL - How to match python regex postgis</a>
</dd>
<dt>Thu 03 September 2020</dt>
<dd>
<a href="./populate-ansible-from-amazon-secrets-manager-8eac77127e37.html">Populate Ansible from Amazon secrets manager</a>
</dd>
<dt>Mon 11 February 2019</dt>
<dd>
<a href="./better-local-development-for-serverless-functions-b96b5a4cfa8f.html">Better local development for Serverless Functions</a>
</dd>
<dt>Mon 20 August 2018</dt>
<dd>
<a href="./easy-maintenance-mode-with-nginx-2d4d510a0980.html">Easy maintenance mode with nginx</a>
</dd>
<dt>Sat 02 June 2018</dt>
<dd>
<a href="./please-dont-do-it-github-5890eb72d12c.html">Please don't do it Github</a>
</dd>
<dt>Mon 02 April 2018</dt>
<dd>
<a href="./beware-the-todo-list-7faac97dae4a.html">Beware the todo list</a>
</dd>
<dt>Thu 29 March 2018</dt>
<dd>
<a href="./wild-wild-country-the-soundtrack-bbe397fc1cf4.html">Wild Wild Country – The Soundtrack</a>
</dd>
<dt>Mon 26 March 2018</dt>
<dd>
<a href="./four-years-without-facebook-7d5285a25913.html">Four years without Facebook</a>
</dd>
<dt>Mon 19 March 2018</dt>
<dd>
<a href="./leaving-no-trace-6ca31ffc0b9.html">Leaving no Trace</a>
</dd>
<dt>Wed 14 March 2018</dt>
<dd>
<a href="./10-lessons-from-150-days-of-meditation-b4976d062a20.html">10 lessons from 150 days of meditation</a>
</dd>
<dt>Sun 18 February 2018</dt>
<dd>
<a href="./for-the-past-few-years-as-a-freelancer-ive-done-many-forms-of-remote-work-19b58de3bc90.html">Lessons from Remote Working</a>
</dd>
<dt>Sun 21 January 2018</dt>
<dd>
<a href="./supplementing-an-ipad-pro-57a809a06d7f.html">Supplementing an iPad Pro with Linux</a>
</dd>
<dt>Sat 20 January 2018</dt>
<dd>
<a href="./how-am-i-using-my-ipad-pro-as-a-development-machine-e4912a31744e.html">The iPad Pro as a focused, simple coding machine</a>
</dd>
<dt>Mon 08 January 2018</dt>
<dd>
<a href="./why-im-using-an-ipad-as-my-at-home-machine-2fe3e8949bb2.html">Why an iPad for a backend developer</a>
</dd>
<dt>Sat 06 January 2018</dt>
<dd>
<a href="./freelancer-lessons-part-3-7015dc89b6fb.html">Freelancer Lessons – Part 3</a>
</dd>
<dt>Mon 01 January 2018</dt>
<dd>
<a href="./freelancer-lessons-part-2-e5700002d8b.html">Freelancer Lessons – Part 2</a>
</dd>
<dt>Sun 31 December 2017</dt>
<dd>
<a href="./developer-lessons-from-2017-part-1-14c31f45307c.html">Freelancer lessons – Part 1</a>
</dd>
<dt>Fri 13 October 2017</dt>
<dd>
<a href="./a-short-review-of-freedom-from-the-known-d22f52f8cdd3.html">A Short Review of 'Freedom from the Known'</a>
</dd>
<dt>Sun 30 April 2017</dt>
<dd>
<a href="./faster-sugarcrm-development-with-phpstorm-8f59b4860885.html">Faster SugarCRM Development with PHPStorm</a>
</dd>
<dt>Thu 20 April 2017</dt>
<dd>
<a href="./pomot-command-line-pomotodo-client-d3447f55056e.html">Pomot — command line pomotodo client</a>
</dd>
<dt>Tue 04 April 2017</dt>
<dd>
<a href="./command-line-calendars-with-khal-and-fastmail-57214af20b8f.html">Command line calendars with Khal and fastmail</a>
</dd>
<dt>Sat 06 February 2016</dt>
<dd>
<a href="./sugarcrm-7-conditional-read-only-fields-7fbf971f0592.html">SugarCRM 7 — Conditional Read Only Fields</a>
</dd>
<dt>Wed 04 November 2015</dt>
<dd>
<a href="./networkx-get-all-paths-from-all-sources-to-sinks-825e3787b458.html">NetworkX — Get all Paths from all sources to sinks</a>
</dd>
<dt>Tue 27 October 2015</dt>
<dd>
<a href="./generate-binary-tree-from-string-fcb1a0c662e7.html">Generate Binary Tree From String</a>
</dd>
<dt>Thu 15 October 2015</dt>
<dd>
<a href="./sugarcrm-conditional-actions-9c19e52c50.html">SugarCRM — Conditional Actions</a>
</dd>
<dt>Sun 27 September 2015</dt>
<dd>
<a href="./bioinformatics-rosalind-skeleton-generator-5229517d32fa.html">Bioinformatics/Rosalind — Skeleton Generator</a>
</dd>
<dt>Mon 31 August 2015</dt>
<dd>
<a href="./tiddlywiki-to-org-mode-c83bd3cd7323.html">Tiddlywiki to Org-Mode</a>
</dd>
<dt>Mon 27 July 2015</dt>
<dd>
<a href="./osqa-to-tiddlywiki-ccdb598d226b.html">OSQA to Tiddlywiki</a>
</dd>
<dt>Sun 26 July 2015</dt>
<dd>
<a href="./verify-youre-hidden-with-conky-b59f1e36001b.html">Verify you're hidden with conky</a>
</dd>
<dt>Sat 25 July 2015</dt>
<dd>
<a href="./sugarcrm-7-adding-an-action-to-the-listview-headerpanel-cdfff560e7b3.html">SugarCRM 7 — Adding an action to the listview headerpanel</a>
</dd>
<dt>Thu 16 April 2015</dt>
<dd>
<a href="./sugarcrm-prevent-currencies-getting-overridden-7944af907da9.html">SugarCRM — Prevent currencies getting overridden</a>
</dd>
<dt>Tue 07 April 2015</dt>
<dd>
<a href="./sugarcrm-7-roll-sugarcrm-with-docker-f4449e2ca7a.html">SugarCRM 7 — Roll SugarCRM with Docker</a>
</dd>
<dt>Sun 15 February 2015</dt>
<dd>
<a href="./setting-up-git-with-rescuetime-highlights-aa6d13128bb6.html">Setting up git with Rescuetime highlights</a>
</dd>
<dt>Sat 14 February 2015</dt>
<dd>
<a href="./bulletproof-productivity-c95958f3bbf9.html">Bulletproof productivity</a>
</dd>
<dt>Sat 07 February 2015</dt>
<dd>
<a href="./solving-boot2dockers-fail-to-start-error-acec8ba7802c.html">Solving boot2docker's fail to start error</a>
</dd>
<dt>Thu 05 February 2015</dt>
<dd>
<a href="./r-cleaning-merging-excel-files-e742fbb33c71.html">R — Cleaning/Merging Excel files</a>
</dd>
<dt>Mon 10 November 2014</dt>
<dd>
<a href="./sugarcrm-git-version-control-strategy-20997a85b1c0.html">SugarCRM — Git Version Control Strategy</a>
</dd>
<dt>Thu 02 October 2014</dt>
<dd>
<a href="./better-php-debugging-with-emacs-1c2f71c947fe.html">Better PHP Debugging with Emacs</a>
</dd>
<dt>Thu 25 September 2014</dt>
<dd>
<a href="./shellshock-am-i-vulnerable-and-what-do-i-do-4368762a4c94.html">Shellshock — Am I vulnerable and what do I do?</a>
</dd>
<dt>Thu 18 September 2014</dt>
<dd>
<a href="./sugarcrm-7-fix-to-re-enable-elasticsearch-on-custom-modules-f669c97ca480.html">SugarCRM 7 — Fix to re-enable ElasticSearch on custom modules</a>
</dd>
<dt>Thu 11 September 2014</dt>
<dd>
<a href="./sugarcrm-7-enable-importing-on-custom-modules-eabf29774f3b.html">SugarCRM 7 — Enable Importing on Custom Modules</a>
</dd>
<dt>Thu 21 August 2014</dt>
<dd>
<a href="./dompdf-failing-to-render-certain-accented-characters-9be35f0c13a6.html">DOMpdf failing to render certain accented characters</a>
</dd>
<dt>Thu 21 August 2014</dt>
<dd>
<a href="./yii-convert-database-to-migrations-998a6277c968.html">Yii — Convert database to migrations</a>
</dd>
<dt>Wed 13 August 2014</dt>
<dd>
<a href="./sugarcrm-7-custom-subpanels-a75e66374a5b.html">SugarCRM 7 — Custom subpanels</a>
</dd>
<dt>Sat 09 August 2014</dt>
<dd>
<a href="./sugarcrm-7-making-ajax-requests-7bf1bd0c71a5.html">SugarCRM 7 — Making Ajax Requests</a>
</dd>
<dt>Thu 07 August 2014</dt>
<dd>
<a href="./sugarcrm-7-add-a-new-action-to-a-record-d020dafdc883.html">SugarCRM 7 — Add a new action to a record</a>
</dd>
<dt>Sat 02 August 2014</dt>
<dd>
<a href="./sugarcrm-sugar-powered-by-salt-2d2af530f829.html">SugarCRM — Sugar powered by Salt!</a>
</dd>
<dt>Fri 25 July 2014</dt>
<dd>
<a href="./friday-fun-offline-8tracks-playlists-using-grooveshark-34b2512270df.html">Friday Fun — Offline 8tracks playlists using Grooveshark</a>
</dd>
<dt>Sat 19 July 2014</dt>
<dd>
<a href="./log-queries-with-mysql-proxy-714ae139cc00.html">Log Queries with MySQL Proxy</a>
</dd>
<dt>Wed 16 July 2014</dt>
<dd>
<a href="./sugarcrm-versioning-your-database-cdcee943048b.html">SugarCRM — Versioning Your Database</a>
</dd>
<dt>Sat 12 July 2014</dt>
<dd>
<a href="./sugarcrm-7-set-recordlist-row-colours-based-on-row-data-6ff3072c08a9.html">SugarCRM 7 — Set recordlist row colours based on row data</a>
</dd>
<dt>Thu 10 July 2014</dt>
<dd>
<a href="./minimalist-mysql-reporting-ecc27a71d97.html">Minimalist MySQL Reporting</a>
</dd>
<dt>Thu 10 July 2014</dt>
<dd>
<a href="./sugarcrm-7-colour-code-rows-based-on-data-values-a238bc54525c.html">SugarCRM 7 — Colour Code Rows based on data values</a>
</dd>
<dt>Thu 10 July 2014</dt>
<dd>
<a href="./your-brain-on-stoicism-783d1cd1995c.html">Your brain on stoicism</a>
</dd>
<dt>Thu 03 July 2014</dt>
<dd>
<a href="./manage-background-tasks-with-php-resque-and-supervisor-93d14234b703.html">Manage background tasks with PHP-Resque and Supervisor</a>
</dd>
<dt>Thu 26 June 2014</dt>
<dd>
<a href="./simple-api-mocking-with-guzzle-and-charles-e5fdabe8b9fd.html">Simple API Mocking with Guzzle and Charles</a>
</dd>
<dt>Sat 21 June 2014</dt>
<dd>
<a href="./sugarcrm-permissions-script-6b7031eb0eef.html">SugarCRM — Permissions Script</a>
</dd>
<dt>Sun 15 June 2014</dt>
<dd>
<a href="./engineers-log-69525c451538.html">Engineers Log</a>
</dd>
<dt>Thu 12 June 2014</dt>
<dd>
<a href="./quick-salt-minion-setup-354516c0ff63.html">Quick Salt Minion Setup</a>
</dd>
<dt>Thu 12 June 2014</dt>
<dd>
<a href="./sugarcrm-7-hiding-subpanels-based-on-specific-criteria-eee6aacb95e1.html">SugarCRM 7 — Hiding subpanels based on specific criteria</a>
</dd>
<dt>Fri 06 June 2014</dt>
<dd>
<a href="./super-simple-folder-backup-one-liner-de43a969cb0d.html">Super simple folder backup one-liner</a>
</dd>
<dt>Thu 22 May 2014</dt>
<dd>
<a href="./sugarcrm-7-adding-a-custom-column-to-a-list-1370ce1fbdb2.html">SugarCRM 7 — Adding a custom column to a list</a>
</dd>
<dt>Sun 18 May 2014</dt>
<dd>
<a href="./sugarcrm-7-adding-an-action-to-the-listview-436f18c039e6.html">SugarCRM 7 — Adding an action to the listview</a>
</dd>
<dt>Sat 17 May 2014</dt>
<dd>
<a href="./find-my-run-my-first-iphone-app-4e1ec62b32b3.html">Find My Run — My first iPhone app</a>
</dd>
<dt>Thu 24 April 2014</dt>
<dd>
<a href="./owning-your-data-replacing-dropbox-fdaa13df41ad.html">Owning Your Data — Replacing Dropbox</a>
</dd>
<dt>Sun 20 April 2014</dt>
<dd>
<a href="./philosophy-as-an-extension-of-mindfulness-8295b123c977.html">Philosophy as an extension of mindfulness</a>
</dd>
<dt>Sun 20 April 2014</dt>
<dd>
<a href="./sugarcrm-search-for-records-related-to-the-current-record-4c0086341c14.html">SugarCRM — Search for records related to the current record</a>
</dd>
<dt>Thu 17 April 2014</dt>
<dd>
<a href="./sugarcrm-searches-with-data-from-indirectly-related-modules-ec204005f7b3.html">SugarCRM — Searches with data from indirectly related modules</a>
</dd>
<dt>Tue 08 April 2014</dt>
<dd>
<a href="./build-yii-1-with-composer-d8ee634e3f3e.html">Build Yii 1.* with composer</a>
</dd>
<dt>Sat 05 April 2014</dt>
<dd>
<a href="./sugarcrm-add-a-code-driven-column-to-a-list-4e9f4eb672b1.html">SugarCRM — Add a code-driven column to a list</a>
</dd>
<dt>Fri 04 April 2014</dt>
<dd>
<a href="./yii-issues-with-homebrew-php-5-3-8d759e748a92.html">Yii issues with Homebrew PHP 5.3</a>
</dd>
<dt>Sat 29 March 2014</dt>
<dd>
<a href="./owning-your-data-replacing-gmail-20e9e2259fa2.html">Owning Your Data — Replacing Gmail</a>
</dd>
<dt>Thu 27 March 2014</dt>
<dd>
<a href="./useful-bit-of-sql-to-update-many-records-in-sugarcrm-3fae0ab47a4d.html">Useful bit of SQL to update many records in SugarCRM</a>
</dd>
<dt>Thu 06 March 2014</dt>
<dd>
<a href="./owning-your-data-initial-server-setup-afa33394b94.html">Owning Your Data — Initial Server Setup</a>
</dd>
<dt>Sat 01 March 2014</dt>
<dd>
<a href="./perfomance-enhancing-breakfast-4a14f17ee20a.html">Perfomance Enhancing Breakfast</a>
</dd>
<dt>Thu 27 February 2014</dt>
<dd>
<a href="./owning-your-data-296ed1534643.html">Owning Your Data</a>
</dd>
<dt>Sat 22 February 2014</dt>
<dd>
<a href="./the-counterfeited-blog-post-9d8f32f5d4b4.html">The Counterfeited Blog Post</a>
</dd>
<dt>Thu 20 February 2014</dt>
<dd>
<a href="./cutting-caffeine-20012941744d.html">Cutting caffeine</a>
</dd>
<dt>Sun 16 February 2014</dt>
<dd>
<a href="./rolling-your-own-mail-server-with-salt-159de9bec794.html">Rolling your own mail server with Salt</a>
</dd>
<dt>Sat 15 February 2014</dt>
<dd>
<a href="./keep-up-to-date-b90ee98640d4.html">Keep up to date</a>
</dd>
<dt>Thu 13 February 2014</dt>
<dd>
<a href="./a-tip-for-introducing-new-habits-79186124433a.html">A tip for introducing new habits</a>
</dd>
<dt>Sat 08 February 2014</dt>
<dd>
<a href="./offlineimap-to-thunderbird-152bb02286f.html">OfflineImap to Thunderbird</a>
</dd>
<dt>Sat 08 February 2014</dt>
<dd>
<a href="./on-wanting-8c4ca2f2d314.html">On wanting</a>
</dd>
<dt>Thu 06 February 2014</dt>
<dd>
<a href="./precision-nutrition-trail-fast-88a4c01976d5.html">Precision Nutrition Trail Fast</a>
</dd>
<dt>Sat 01 February 2014</dt>
<dd>
<a href="./de-activating-facebook-for-a-month-f91b49da00a4.html">De-activating facebook for a month</a>
</dd>
<dt>Thu 30 January 2014</dt>
<dd>
<a href="./numbers-to-replace-that-smartphone-london-edition-b121face9106.html">Numbers to replace that smartphone(London Edition)</a>
</dd>
<dt>Sat 25 January 2014</dt>
<dd>
<a href="./internet-predictions-for-2014-that-didnt-make-it-ac552337f3a0.html">Internet Predictions for 2014 that didn't make it</a>
</dd>
<dt>Thu 23 January 2014</dt>
<dd>
<a href="./review-of-the-woman-who-walked-into-doors-7aec5acb710c.html">Review of The Woman Who Walked Into Doors</a>
</dd>
<dt>Sat 18 January 2014</dt>
<dd>
<a href="./switching-to-a-dumbphone-3b090f8ad709.html">Switching to a dumbphone</a>
</dd>
<dt>Thu 16 January 2014</dt>
<dd>
<a href="./promoting-mindfulness-through-the-day-e294cbc78843.html">Promoting mindfulness through the day</a>
</dd>
<dt>Sat 11 January 2014</dt>
<dd>
<a href="./legitimate-ways-to-support-good-movies-2fb11e565d2d.html">Legitimate ways to support good movies</a>
</dd>
<dt>Thu 09 January 2014</dt>
<dd>
<a href="./sleep-as-the-fundamental-habit-f9590f13c013.html">Sleep as the fundamental habit</a>
</dd>
<dt>Sat 04 January 2014</dt>
<dd>
<a href="./make-money-mining-a-cryptocurrency-618d8f4727bf.html">Make money mining a cryptocurrency</a>
</dd>
<dt>Fri 03 January 2014</dt>
<dd>
<a href="./fasting-636565d35b97.html">Fasting</a>
</dd>
<dt>Thu 02 January 2014</dt>
<dd>
<a href="./avoid-anxiety-with-gratitude-65eb140928a5.html">Avoid anxiety with gratitude</a>
</dd>
<dt>Wed 01 January 2014</dt>
<dd>
<a href="./gypyss-and-unrealistic-expectations-f67a4927d9d6.html">GYPYSs and unrealistic expectations</a>
</dd>
<dt>Mon 30 December 2013</dt>
<dd>
<a href="./performance-gains-by-altering-your-routine-f44365b8972b.html">Performance gains by altering your routine</a>
</dd>
<dt>Fri 27 December 2013</dt>
<dd>
<a href="./gsd-2-retaining-focus-98ffdabf2a75.html">GSD 2 — Retaining Focus</a>
</dd>