-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.xml
More file actions
1204 lines (1032 loc) · 111 KB
/
index.xml
File metadata and controls
1204 lines (1032 loc) · 111 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
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>A Fistful of Links</title>
<link>https://afistfuloflinks.github.io/</link>
<description>Recent content on afistfuloflinks.github.io</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Mon, 02 Aug 2021 00:00:01 +0000</lastBuildDate>
<atom:link href="https://afistfuloflinks.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>A Fistful of Links - August 02, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-08-02/</link>
<pubDate>Mon, 02 Aug 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-08-02/</guid>
<description><ol><li>Classic Testing Mistakes</li><li>Testers Need to Read Code</li><li>CSRF, CORS, and HTTP Security headers Demystified</li><li>Challenge to scientists: does your ten-year-old code still run?</li><li>What is the right question to ask?</li></ol></description>
</item><item>
<title>A Fistful of Links - July 26, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-07-26/</link>
<pubDate>Mon, 26 Jul 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-07-26/</guid>
<description><ol><li>Python behind the scenes: how the Python import system works</li><li>Python Concurrency: The Tricky Bits</li><li>A 5-Point Framework For Python Performance Management</li><li>How Performance Became the Nemesis of the Secure Python Code</li><li>Five Common Django Mistakes</li></ol></description>
</item><item>
<title>A Fistful of Links - July 19, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-07-19/</link>
<pubDate>Mon, 19 Jul 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-07-19/</guid>
<description><ol><li>Are Automated Test Retries Good or Bad?</li><li>7 ways to implement DTOs in Python and what to keep in mind</li><li>Why asynchronous Rust doesn't work</li><li>Are You Stuck On Vision, Strategy, or Tactics?</li><li>One of the fathers of modern computing used this 6-step process to solve any problem</li></ol></description>
</item><item>
<title>A Fistful of Links - July 12, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-07-12/</link>
<pubDate>Mon, 12 Jul 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-07-12/</guid>
<description><ol><li>How to Know Your Test Automation Project Is Doomed</li><li>Software Tester or Lazy Developer?</li><li>Developer tools can be magic. Instead, they collect dust.</li><li>Abstract Syntax Trees in Python</li><li>Modern Javascript: Everything you missed over the last 10 years</li></ol></description>
</item><item>
<title>A Fistful of Links - July 05, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-07-05/</link>
<pubDate>Mon, 05 Jul 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-07-05/</guid>
<description><ol><li>An Introduction to Reactive Programming in Python</li><li>Make tests a part of your app</li><li>Testing and the Path to Quality</li><li>Bharani Asks About Daily Practice</li><li>How I read books: setting up a new system</li></ol></description>
</item><item>
<title>A Fistful of Links - June 28, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-06-28/</link>
<pubDate>Mon, 28 Jun 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-06-28/</guid>
<description><ol><li>Leading without managing</li><li>The COMPOSE Framework for Writing</li><li>3 Ways to Hack Your Brain to Conquer Your Nerves, According to a Stanford Neuroscientist</li><li>How We Introduced Levels to Our Engineering Organisation without Losing People or Hurting Our Productivity</li><li>How to Write Successful Queries for Any Genre of Writing</li></ol></description>
</item><item>
<title>A Fistful of Links - June 21, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-06-21/</link>
<pubDate>Mon, 21 Jun 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-06-21/</guid>
<description><ol><li>Assess Quality, Don’t Measure It</li><li>Ditching Excel for Python – Lessons Learned from a Legacy Industry</li><li>Did you break your code today?</li><li>Deactivating the “Somebody Else’s Problem” Field</li><li>Classifying Communities with the 3Ps: Product, Practice, and Play</li></ol></description>
</item><item>
<title>A Fistful of Links - June 14, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-06-14/</link>
<pubDate>Mon, 14 Jun 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-06-14/</guid>
<description><ol><li>Tools for effective delegation in engineering management</li><li>Open Source Communities Need More Safe Spaces and Codes of Conducts. Now.</li><li>To the brain, reading computer code is not the same as reading language</li><li>Your engineering team is (probably) too big</li><li>When Executives Break</li></ol></description>
</item><item>
<title>A Fistful of Links - June 07, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-06-07/</link>
<pubDate>Mon, 07 Jun 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-06-07/</guid>
<description><ol><li>737 Max 8</li><li>The worst so-called “best practice” for Docker</li><li>Meet python-mockito and leave built-in mock & patch behind</li><li>The Tester as Engineer?</li><li>What I've Learned From 10+ Years of Personal Projects</li></ol></description>
</item><item>
<title>A Fistful of Links - May 31, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-05-31/</link>
<pubDate>Mon, 31 May 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-05-31/</guid>
<description><ol><li>Want to Learn How Things Really Work at Your New Job? Talk to the People at the Bottom</li><li>Systems design explains the world: volume 1</li><li>Build tools around workflows, not workflows around tools</li><li>Engineering Productivity Can Be Measured - Just Not How You'd Expect</li><li>Scaling Product Delivery: The "Dirty" Secret of High Performing Product Teams</li></ol></description>
</item><item>
<title>A Fistful of Links - May 24, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-05-24/</link>
<pubDate>Mon, 24 May 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-05-24/</guid>
<description><ol><li>When Do I Stop Testing?</li><li>Improve your software product delivery process performance using metrics (two-part series)</li><li>How well do you know “this”?</li><li>First Aid for the Mission Statement</li><li>The Testing Mindset Myth</li></ol></description>
</item><item>
<title>A Fistful of Links - May 17, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-05-17/</link>
<pubDate>Mon, 17 May 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-05-17/</guid>
<description><ol><li>IT leadership: How to spot a collaboration superstar in interviews</li><li>Closing the stress cycle</li><li>Awesome CTO</li><li>ARE WE REALLY ENGINEERS?</li><li>[Part 2] The problems with MVPs in legacy replacement</li></ol></description>
</item><item>
<title>A Fistful of Links - May 10, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-05-10/</link>
<pubDate>Mon, 10 May 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-05-10/</guid>
<description><ol><li>Quality Engineer Learning Roadmap</li><li>Dying, fast and slow: out-of-memory crashes in Python</li><li>An interesting issue around using is with a literal in Python</li><li>Embrace the Grind</li><li>Remote work tips: availability heat map</li></ol></description>
</item><item>
<title>A Fistful of Links - May 03, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-05-03/</link>
<pubDate>Mon, 03 May 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-05-03/</guid>
<description><ol><li>How to build organizational resilience</li><li>The Career Story Interview</li><li>Billionaires Build</li><li>shifting leadership focus in the post covid-19 era from kpi’s to cpi’s</li><li>[Part 1] The problems with MVPs in legacy replacement</li></ol></description>
</item><item>
<title>A Fistful of Links - April 26, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-04-26/</link>
<pubDate>Mon, 26 Apr 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-04-26/</guid>
<description><ol><li>Unclogging the Bug Pipeline</li><li>Python strings are immutable, but only sometimes</li><li>Write code that is easy to delete, not easy to extend</li><li>Performance comparison: counting words in Python, Go, C++, C, AWK, Forth, and Rust</li><li>Recovering Our Lost Free Will Online: Tools and Techniques That Are Available Now</li></ol></description>
</item><item>
<title>A Fistful of Links - April 19, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-04-19/</link>
<pubDate>Mon, 19 Apr 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-04-19/</guid>
<description><ol><li>6 Essential Steps to Building a Great Data Culture</li><li>MANAGERING IN TERRIBLE TIMES</li><li>TDD changed my relationship with Software Testing</li><li>DO OKRS WORK WITH JOBS TO BE DONE?</li><li>5 Signs of an Immature Software Developer</li></ol></description>
</item><item>
<title>A Fistful of Links - April 12, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-04-12/</link>
<pubDate>Mon, 12 Apr 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-04-12/</guid>
<description><ol><li>A Visual Guide To React Mental Models (two-part series)</li><li>User-defined Order in SQL</li><li>Three routes to fixing problems test cases hide</li><li>How to Develop Your Talent Stack</li><li>Observability, continuous delivery, DevOps & related resources</li></ol></description>
</item><item>
<title>A Fistful of Links - April 05, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-04-05/</link>
<pubDate>Mon, 05 Apr 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-04-05/</guid>
<description><ol><li>Software Engineering Culture Metrics</li><li>The ABCs of Organizational Improvement</li><li>Things your manager might not know</li><li>How I cut GTA Online loading times by 70%</li><li>Know Your “One Job” And Do It First</li></ol></description>
</item><item>
<title>A Fistful of Links - March 29, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-03-29/</link>
<pubDate>Mon, 29 Mar 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-03-29/</guid>
<description><ol><li>The problem with ‘5 whys’</li><li>Developers mentoring other developers: practices I've seen work well</li><li>Definition of Done</li><li>Are we Done? Really Done?</li><li>Faking testing and getting caught</li></ol></description>
</item><item>
<title>A Fistful of Links - March 22, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-03-22/</link>
<pubDate>Mon, 22 Mar 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-03-22/</guid>
<description><ol><li>Top lessons learned from working with a 10x developer</li><li>Your confusion is the litmus test</li><li>How to be a more collaborative leader: 4 key competencies</li><li>Should engineering managers be technical?</li><li>Career ladders aren't enough – you need a thoughtful promotion process, too</li></ol></description>
</item><item>
<title>A Fistful of Links - March 15, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-03-15/</link>
<pubDate>Mon, 15 Mar 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-03-15/</guid>
<description><ol><li>Why Most Unit Testing is Waste</li><li>Unit Testing is Overrated</li><li>Should You Hunt for That Bug?</li><li>Python & the Clean Architecture in 2021</li><li>Why are video calls so tiring? You might have opposing cultural styles</li></ol></description>
</item><item>
<title>A Fistful of Links - March 08, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-03-08/</link>
<pubDate>Mon, 08 Mar 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-03-08/</guid>
<description><ol><li>Interview advice that got me offers from Google, Microsoft, and Stripe</li><li>Getting The Most Out Of Git</li><li>Three crucial skills that leaders must develop to become executives</li><li>Driving engineering culture change at Microsoft: An experimental journey</li><li>Mistakes I’ve Made as an Engineering Manager</li></ol></description>
</item><item>
<title>A Fistful of Links - March 01, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-03-01/</link>
<pubDate>Mon, 01 Mar 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-03-01/</guid>
<description><ol><li>A zero bug policy (ongoing series)</li><li>The Cold Hard Truth About Zero-Defect Software</li><li>Python Versions Management With pyenv</li><li>Web Authentication Methods Compared</li><li>My Testing Manifesto</li></ol></description>
</item><item>
<title>A Fistful of Links - February 22, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-02-22/</link>
<pubDate>Mon, 22 Feb 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-02-22/</guid>
<description><ol><li>Stop Making Excuses for Toxic Bosses</li><li>Fulfilling the promise of CI/CD</li><li>2 Simple Techniques to Help You Get Out of Your Own Head</li><li>Do less and do it better</li><li>Use This Time to Let Go of Your Pseudo-Self</li></ol></description>
</item><item>
<title>A Fistful of Links - February 15, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-02-15/</link>
<pubDate>Mon, 15 Feb 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-02-15/</guid>
<description><ol><li>Excellent Software Testing</li><li>How to Make Your Code Reviewer Fall in Love with You</li><li>25 IPython Tips for Your Next Advent of Code</li><li>So you want to work in security</li><li>The Agile Manifesto at 20: What's still relevant — and what's not</li></ol></description>
</item><item>
<title>A Fistful of Links - February 08, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-02-08/</link>
<pubDate>Mon, 08 Feb 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-02-08/</guid>
<description><ol><li>Feedback</li><li>My Engineering Axioms</li><li>How to present to executives</li><li>The Highest Good: An Introduction To The 4 Stoic Virtues</li><li>You’re Never Going to Be “Caught Up” at Work. Stop Feeling Guilty About It</li></ol></description>
</item><item>
<title>A Fistful of Links - February 01, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-02-01/</link>
<pubDate>Mon, 01 Feb 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-02-01/</guid>
<description><ol><li>Bad Test Strategies and How You Can Avoid Them</li><li>Command Line Interface Guidelines</li><li>Don't write command-line interfaces (generate them)</li><li>How to Join a Team and Learn a Codebase</li><li>If you lose your cellphone, don’t blame Wayne Dobson</li></ol></description>
</item><item>
<title>A Fistful of Links - January 25, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-01-25/</link>
<pubDate>Mon, 25 Jan 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-01-25/</guid>
<description><ol><li>No Meetings, No Deadlines, No Full-Time Employees</li><li>Quality Engineering Vs. Quality Assurance: Everything You Need To Know</li><li>My Learning Curve at the GNOME Foundation</li><li>How a DevOps culture can make the hybrid cloud work</li><li>14 Signs you’re working in a Scrum Feature Factory</li></ol></description>
</item><item>
<title>A Fistful of Links - January 18, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-01-18/</link>
<pubDate>Mon, 18 Jan 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-01-18/</guid>
<description><ol><li>Puppeteer vs Selenium vs Playwright, a speed comparison</li><li>node.example.com Is An IP Address</li><li>Some Economics of software</li><li>The Third Age of JavaScript</li><li>Tips to stay focused and finish your hobby project</li></ol></description>
</item><item>
<title>A Fistful of Links - January 11, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-01-11/</link>
<pubDate>Mon, 11 Jan 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-01-11/</guid>
<description><ol><li>Scrum sucks without solid Product Management</li><li>Why Intelligent Minds Like Elon Musk and Steve Jobs Embrace the "No Silo Rule"</li><li>2020 Learnings, 2021 Expectations</li><li>“WHY ARE MY TESTS SO SLOW?” A LIST OF LIKELY SUSPECTS, ANTI-PATTERNS, AND UNRESOLVED PERSONAL TRAUMA.</li><li>Manager OKRs, Maker OKRs: How Early Stage Startups Should Think About Goal-Setting</li></ol></description>
</item><item>
<title>A Fistful of Links - January 04, 2021</title>
<link>https://afistfuloflinks.github.io/posts/2021-01-04/</link>
<pubDate>Mon, 04 Jan 2021 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2021-01-04/</guid>
<description><ol><li>Practical Web Cache Poisoning</li><li>Strategies & Tips For Improving Your Testing Reputation</li><li>Hunting for Malicious Packages on PyPI</li><li>Scale your thinking for better testing</li><li>“I've had to relearn coding to get through the new interviews”</li></ol></description>
</item><item>
<title>A Fistful of Links - December 28, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-12-28/</link>
<pubDate>Mon, 28 Dec 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-12-28/</guid>
<description><ol><li>Tests that help you find defects faster</li><li>How does Quality fit in CALMS?</li><li>Working With Cross Functional Teams: Master Effective Collaboration In The Workplace</li><li>The Last (Engineering) Dance</li><li>How to say no</li></ol></description>
</item><item>
<title>A Fistful of Links - December 21, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-12-21/</link>
<pubDate>Mon, 21 Dec 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-12-21/</guid>
<description><ol><li>When You Import a Python Package and It Is Empty</li><li>How to measure exploratory tests?</li><li>Desk check</li><li>Navigating A Career Path In Software Testing</li><li>The Baseline</li></ol></description>
</item><item>
<title>A Fistful of Links - December 14, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-12-14/</link>
<pubDate>Mon, 14 Dec 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-12-14/</guid>
<description><ol><li>Flight rules for Git</li><li>IPython for Web Devs</li><li>If you want to go far, together is faster (two-part series)</li><li>Fake video threatens to rewrite history. Here’s how to protect it</li><li>Blockchain, the amazing solution for almost nothing</li></ol></description>
</item><item>
<title>A Fistful of Links - December 07, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-12-07/</link>
<pubDate>Mon, 07 Dec 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-12-07/</guid>
<description><ol><li>73 Examples to Help You Master Python's f-strings</li><li>Don't Start Your Automation Strategy With Tools</li><li>Things I Learned to Become a Senior Software Engineer</li><li>Fix by symptoms, fix by causes</li><li>5 most annoying website features I face as a blind person every single day</li></ol></description>
</item><item>
<title>A Fistful of Links - November 30, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-11-30/</link>
<pubDate>Mon, 30 Nov 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-11-30/</guid>
<description><ol><li>THINGS TO KNOW ABOUT ENGINEERING LEVELS</li><li>Think Empathy Is A Soft Skill? Think Again. Why You Need Empathy For Success</li><li>KPIs vs. OKRs: How They Compare and Why You Need Both to be Successful</li><li>4 Clues to Identify a Destructive Leader</li><li>Options, Not Roadmaps</li></ol></description>
</item><item>
<title>A Fistful of Links - November 23, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-11-23/</link>
<pubDate>Mon, 23 Nov 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-11-23/</guid>
<description><ol><li>Not all attacks are equal: understanding and preventing DoS in web applications</li><li>What are the benefits of automation?</li><li>Failing over without falling over</li><li>Everything is an X</li><li>Deciding What Not To Learn</li></ol></description>
</item><item>
<title>A Fistful of Links - November 16, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-11-16/</link>
<pubDate>Mon, 16 Nov 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-11-16/</guid>
<description><ol><li>How I Got 4 Data Science Offers and Doubled my Income 2 Months after being Laid Off</li><li>Book Review: Software Engineering At Google</li><li>Building Relationship Currency in an Isolated Environment</li><li>Linux-based Windows makes perfect sense</li><li>These are the 7 surprising things I’ve learned from working with powerful women</li></ol></description>
</item><item>
<title>A Fistful of Links - November 09, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-11-09/</link>
<pubDate>Mon, 09 Nov 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-11-09/</guid>
<description><ol><li>The Magic of Python Context Managers</li><li>Code reviews: from nitpicking to cooperation</li><li>Lessons Learned from a Little Bug</li><li>Staying with Problems Longer</li><li>Python For Feature Film</li></ol></description>
</item><item>
<title>A Fistful of Links - November 02, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-11-02/</link>
<pubDate>Mon, 02 Nov 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-11-02/</guid>
<description><ol><li>The Thing About Burnout</li><li>Scaling Sparta</li><li>Learn by doing: CUBE CSS</li><li>How a handful of tech companies control billions of minds every day</li><li>Hacking Your Memory - With Sleep</li></ol></description>
</item><item>
<title>A Fistful of Links - October 26, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-10-26/</link>
<pubDate>Mon, 26 Oct 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-10-26/</guid>
<description><ol><li>TDD in Python with pytest - Part 3</li><li>Code Coverage Best Practices</li><li>You built a talented QA team. Here's how to keep them</li><li>Do we need testers?</li><li>Cognitive bias cheat sheet</li></ol></description>
</item><item>
<title>A Fistful of Links - October 19, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-10-19/</link>
<pubDate>Mon, 19 Oct 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-10-19/</guid>
<description><ol><li>Technical Lead Management 101 or How to Try Out Management</li><li>Introduction to Cypress</li><li>10 Books That Will Blow Your Mind</li><li>How to use your DSLR Camera as a Webcam In Linux</li><li>11 of the Latest Trends in Software Engineering</li></ol></description>
</item><item>
<title>A Fistful of Links - October 12, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-10-12/</link>
<pubDate>Mon, 12 Oct 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-10-12/</guid>
<description><ol><li>Breaking the Test Case Addiction (Part 11)</li><li>Delegation: composition and inheritance in object-oriented programming</li><li>Never Run ‘python’ In Your Downloads Folder</li><li>Subscription or no subscription? That is not the question</li><li>I Love MDN, or the cult of the free in action</li></ol></description>
</item><item>
<title>A Fistful of Links - October 05, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-10-05/</link>
<pubDate>Mon, 05 Oct 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-10-05/</guid>
<description><ol><li>CODE REVIEW – FROM GOOD TO GREAT</li><li>The golden rule of software quality</li><li>Tactical Challenges In Hiring Junior Engineers</li><li>Tales of the Autistic Developer - Senior Developer</li><li>Go vs Rust: Writing a CLI tool</li></ol></description>
</item><item>
<title>A Fistful of Links - September 28, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-09-28/</link>
<pubDate>Mon, 28 Sep 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-09-28/</guid>
<description><ol><li>6 Ways to Do Automated UI Testing in Parallel With Selenium</li><li>Testing Python code that makes HTTP requests</li><li>Make Issue Types Great Again</li><li>Surviving Django (if you care about databases)</li><li>My favourite line of CSS</li></ol></description>
</item><item>
<title>A Fistful of Links - September 21, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-09-21/</link>
<pubDate>Mon, 21 Sep 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-09-21/</guid>
<description><ol><li>Ten Years of Flask: Conversation With Creator Armin Ronacher</li><li>20 books that all leaders should read in 2020</li><li>My favorite product management templates – Issue 37</li><li>5 Tips for Managing an Underperformer — Remotely</li><li>Uses This: Charlotte Dann</li></ol></description>
</item><item>
<title>A Fistful of Links - September 14, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-09-14/</link>
<pubDate>Mon, 14 Sep 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-09-14/</guid>
<description><ol><li>Designing with types (eight-part series)</li><li>Common Python Packaging Mistakes</li><li>NetSPI SQL Injection Wiki</li><li>Let’s Focus More on Quality and Less on Testing</li><li>“Why Didn’t We Catch This in QA?”</li></ol></description>
</item><item>
<title>A Fistful of Links - September 07, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-09-07/</link>
<pubDate>Mon, 07 Sep 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-09-07/</guid>
<description><ol><li>25 Ways to avoid living your life on someone else's terms</li><li>How to get a Harvard-level education in 15 minutes per day (or less)</li><li>These 3 Practices by Bill Gates Will Change How You Read</li><li>How to Brainstorm - Remotely</li><li>When your coworker does great work, tell their manager</li></ol></description>
</item><item>
<title>A Fistful of Links - August 31, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-08-31/</link>
<pubDate>Mon, 31 Aug 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-08-31/</guid>
<description><ol><li>How to Test Anything</li><li>How to investigate technical solutions</li><li>An Overview of Profiling Tools for Python</li><li>3 Technical Testing Books to improve your test tech skills</li><li>Unicode In Five Minutes ⌚</li></ol></description>
</item><item>
<title>A Fistful of Links - August 24, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-08-24/</link>
<pubDate>Mon, 24 Aug 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-08-24/</guid>
<description><ol><li>Everyperson's strategy - Being upstaged</li><li>The Cadence: How to operate a SaaS startup</li><li>How We Gave Superpowers to Our macOS CI</li><li>If you see everything, you'll get nothing</li><li>The Most Important Way to Measure Your Day</li></ol></description>
</item><item>
<title>A Fistful of Links - August 17, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-08-17/</link>
<pubDate>Mon, 17 Aug 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-08-17/</guid>
<description><ol><li>What Matters More in Decisions: Analysis or Process?</li><li>Creating a Test Strategy</li><li>Type Checking in Python</li><li>It’s time to retire our test case management tools</li><li>Wish-List Ideas for Software Testing Research</li></ol></description>
</item><item>
<title>A Fistful of Links - August 10, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-08-10/</link>
<pubDate>Mon, 10 Aug 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-08-10/</guid>
<description><ol><li>Brown M&Ms, or Why No One's Reading the Manual</li><li>'The Canvas Strategy' is the fastest way to become indispensable at work</li><li>If you learn to write, you can change your life</li><li>Stepping Stones not Milestones</li><li>Independence, autonomy, and too many small teams</li></ol></description>
</item><item>
<title>A Fistful of Links - August 03, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-08-03/</link>
<pubDate>Mon, 03 Aug 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-08-03/</guid>
<description><ol><li>Building a QA team (three-part series)</li><li>What the heck is pyproject.toml?</li><li>Beginner’s Guide To Abstraction</li><li>The unspoken rules of visualisation</li><li>Stammering Accessibility and Testing for Voice Assistants & Devices</li></ol></description>
</item><item>
<title>A Fistful of Links - July 27, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-07-27/</link>
<pubDate>Mon, 27 Jul 2020 12:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-07-27/</guid>
<description><ol><li>How Tech Can Build</li><li>Written communication is remote work super power</li><li>Can Engineering Productivity Be Measured?</li><li>A Guide to Making Better Decisions</li><li>How To Overcome Dread Tasks</li></ol></description>
</item><item>
<title>A Fistful of Links - July 20, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-07-20/</link>
<pubDate>Mon, 20 Jul 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-07-20/</guid>
<description><ol><li>A Pythonic Guide to SOLID Design Principles</li><li>Multiple inheritance and mixin classes in Python</li><li>When to use metaclasses in Python: 5 interesting use cases</li><li>Data-Oriented Architecture</li><li>DevOps with Docker (three-part course)</li></ol></description>
</item><item>
<title>A Fistful of Links - July 13, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-07-13/</link>
<pubDate>Mon, 13 Jul 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-07-13/</guid>
<description><ol><li>Seek the Challengers</li><li>Kite Launches AI-Powered JavaScript Completions — Code Faster with Kite</li><li>Marc Andreessen</li><li>Making Effective Decisions and Fewer Errors</li><li>From 1 to 10,000 test cases in under an hour: A beginner's guide to property-based testing</li></ol></description>
</item><item>
<title>A Fistful of Links - July 06, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-07-06/</link>
<pubDate>Mon, 06 Jul 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-07-06/</guid>
<description><ol><li>Amazon launches cloud service to help non-coders build apps</li><li>Introducing the PyCharm Guide</li><li>Junk Charts Trifecta Checkup: The Definitive Guide</li><li>The End of Manual Testing</li><li>The Ethics of Counting</li></ol></description>
</item><item>
<title>A Fistful of Links - June 29, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-06-29/</link>
<pubDate>Mon, 29 Jun 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-06-29/</guid>
<description><ol><li>The Certainty of Failure</li><li>Benefits of Pranayama Based on Scientific Research</li><li>Every Index based Operation you’ll ever need in Pytorch</li><li>Lessons learned managing the GitLab Data team</li><li>How To Break The “Senior Engineer” Career Ceiling</li></ol></description>
</item><item>
<title>A Fistful of Links - June 22, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-06-22/</link>
<pubDate>Mon, 22 Jun 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-06-22/</guid>
<description><ol><li>Hypermodern Python (six-part series)</li><li>Beware of chicken testing! (or mocks overuse)</li><li>14 Mistakes I Did That You Should Avoid As A Newbie Automation Tester</li><li>Goodbye Microservices: From 100s of problem children to 1 superstar</li><li>Passwords Evolved: Authentication Guidance for the Modern Era</li></ol></description>
</item><item>
<title>A Fistful of Links - June 15, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-06-15/</link>
<pubDate>Mon, 15 Jun 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-06-15/</guid>
<description><ol><li>The Role of Humility at Work (and Why the Best Leaders Embrace It)</li><li>Best Practices for Using Functional Programming in Python</li><li>The Ego Is Not the Enemy</li><li>Building trust — with people and software</li><li>Building Bridges as a Technical Leader</li></ol></description>
</item><item>
<title>A Fistful of Links - June 08, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-06-08/</link>
<pubDate>Mon, 08 Jun 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-06-08/</guid>
<description><ol><li>Practical Python Programming</li><li>A Gentle Introduction to Mutation Testing with PITest and Kotlin</li><li>Demystifying Burnout in Tech</li><li>When to use the Clean Architecture?</li><li>Testing is…</li></ol></description>
</item><item>
<title>A Fistful of Links - June 01, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-06-01/</link>
<pubDate>Mon, 01 Jun 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-06-01/</guid>
<description><ol><li>Asynchronous Communication: The Real Reason Remote Workers Are More Productive</li><li>A Guide to Better Meetings</li><li>Give 40, Take 0</li><li>Radical Candor: How to Challenge People without Being a Jerk</li><li>Introduction to Data Visualization in Python</li></ol></description>
</item><item>
<title>A Fistful of Links - May 25, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-05-25/</link>
<pubDate>Mon, 25 May 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-05-25/</guid>
<description><ol><li>How to mock in Python? – (almost) definitive guide</li><li>The Scout Rule on Tickets</li><li>Sota so Good</li><li>How To Get Buy–In From Management</li><li>Your Employees Are Not Your Friends</li></ol></description>
</item><item>
<title>A Fistful of Links - May 18, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-05-18/</link>
<pubDate>Mon, 18 May 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-05-18/</guid>
<description><ol><li>Why Rubyists Should Consider Learning Go</li><li>Docker and Kubernetes with Kelsey Hightower</li><li>Build a Twitter clone in 10 minutes with Rails, CableReady, and StimulusReflex</li><li>Ruby adds experimental support for end-less method definition</li><li>Building a Ruby CLI with Thor</li></ol></description>
</item><item>
<title>A Fistful of Links - May 11, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-05-11/</link>
<pubDate>Mon, 11 May 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-05-11/</guid>
<description><ol><li>Asking the Right Questions About AI</li><li>How Humans and Bots Can Work Together to Test Software</li><li>Quality Assurance for Artificial Intelligence (three-part series)</li><li>Robots aren’t taking our jobs — they’re becoming our bosses</li><li>From Behaviorist to Constructivist AI</li></ol></description>
</item><item>
<title>A Fistful of Links - May 04, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-05-04/</link>
<pubDate>Mon, 04 May 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-05-04/</guid>
<description><ol><li>Build Your Own Star Wars Game</li><li>Technology in Star Wars</li><li>Have a Ball Making Your Own Star Wars Roll Out Characters</li><li>Visualizing Star Wars Movie Scripts</li><li>Star Asciimation Wars</li></ol></description>
</item><item>
<title>A Fistful of Links - April 27, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-04-27/</link>
<pubDate>Mon, 27 Apr 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-04-27/</guid>
<description><ol><li>The Hidden Costs of Automation</li><li>Why You Need To Start Using A Decision Journal</li><li>Documentation as a way to build Community</li><li>Seven Kinds of Testers</li><li>How and why to properly write copyright statements in your code</li></ol></description>
</item><item>
<title>A Fistful of Links - April 20, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-04-20/</link>
<pubDate>Mon, 20 Apr 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-04-20/</guid>
<description><ol><li>The Paradox of Scale</li><li>Enabling Environment</li><li>How I learned about burnout the hard way</li><li>Production Oriented Development</li><li>A Code-Obsessed Novelist Builds a Writing Bot. The Plot Thickens</li></ol></description>
</item><item>
<title>A Fistful of Links - April 13, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-04-13/</link>
<pubDate>Mon, 13 Apr 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-04-13/</guid>
<description><ol><li>How to build a rock-star QA team using test coverage methodology</li><li>Unlearning toxic behaviors in a code review culture</li><li>Agile testing activity checklist</li><li>How to Write Usefully</li><li>Breaking the Test Case Addiction (Part 8)</li></ol></description>
</item><item>
<title>A Fistful of Links - April 06, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-04-06/</link>
<pubDate>Mon, 06 Apr 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-04-06/</guid>
<description><ol><li>Amazon Shares 6 Ways It Creates a Culture of Innovation and How You Can Too</li><li>Creating a Culture of Innovation</li><li>How to Foster Innovative Thinking</li><li>7 Ways Leaders Can Foster Innovation</li><li>How to Have Corrective Conversations with Your Team</li></ol></description>
</item><item>
<title>A Fistful of Links - March 30, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-03-30/</link>
<pubDate>Mon, 30 Mar 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-03-30/</guid>
<description><ol><li>Buster Benson on the art of productive disagreement</li><li>Using C and C++ for data science</li><li>Introducing TextBlob</li><li>How Corporate Cultures Differ Around the World</li><li>Deploying a Jekyll Site to Netlify with Docker and GitLab CI</li></ol></description>
</item><item>
<title>A Fistful of Links - March 23, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-03-23/</link>
<pubDate>Mon, 23 Mar 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-03-23/</guid>
<description><ol><li>Introducing Dispatch</li><li>6 Habits of Super Learners</li><li>The edge is open: Why scale-out computing doesn’t exist without open hybrid cloud</li><li>3 Traits That Differentiate Highly Likable Leaders From The Rest</li><li>Try the GNOME Nightly VM images with GNOME Boxes</li></ol></description>
</item><item>
<title>A Fistful of Links - March 16, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-03-16/</link>
<pubDate>Mon, 16 Mar 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-03-16/</guid>
<description><ol><li>High Output Management for (Non-managing) Tech Leads</li><li>How to Calculate and Communicate Your Desired Total Compensation</li><li>Use comments to unit test your code</li><li>Leadership Principles</li><li>On Drafting an Engineering Strategy</li></ol></description>
</item><item>
<title>A Fistful of Links - March 09, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-03-09/</link>
<pubDate>Mon, 09 Mar 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-03-09/</guid>
<description><ol><li>3 Ways to Help People Understand What Your Data Means</li><li>A new implant for blind people jacks directly into the brain</li><li>The periodic table is an icon. But chemists still can’t agree on how to arrange it</li><li>Load, comfort, and happiness</li><li>Agile Without Dedicated QA</li></ol></description>
</item><item>
<title>A Fistful of Links - March 02, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-03-02/</link>
<pubDate>Mon, 02 Mar 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-03-02/</guid>
<description><ol><li>Finding the metrics that matter for your product</li><li>The Definite 100 Most Useful Excel Tips</li><li>The Art of Journaling: How To Start Journaling, Benefits of Journaling, and More</li><li>How to use parallel ssh (PSSH) for executing commands in parallel on a number of Linux/Unix/BSD servers</li><li>Why innovation can't happen without standardization</li></ol></description>
</item><item>
<title>A Fistful of Links - February 24, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-02-24/</link>
<pubDate>Mon, 24 Feb 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-02-24/</guid>
<description><ol><li>Why You Should Explore More Test Automation Models</li><li>I need a tool... no, you don't</li><li>Advanced Python Testing</li><li>Testing – Not Just Bugs</li><li>Rapid Testing: Dev/Test handovers reinvented</li></ol></description>
</item><item>
<title>A Fistful of Links - February 17, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-02-17/</link>
<pubDate>Mon, 17 Feb 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-02-17/</guid>
<description><ol><li>Why API responses should be signed</li><li>On Pair Programming</li><li>You should write an ebook</li><li>Delivering on an architecture strategy</li><li>Habits vs. Goals: A Look at the Benefits of a Systematic Approach to Life</li></ol></description>
</item><item>
<title>A Fistful of Links - February 10, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-02-10/</link>
<pubDate>Mon, 10 Feb 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-02-10/</guid>
<description><ol><li>Rate-of-learning: the most valuable startup compensation</li><li>Streams for reactive programming</li><li>Startups & Miracles</li><li>Be A Lover, Not A Fighter</li><li>Running an All-hands</li></ol></description>
</item><item>
<title>A Fistful of Links - February 03, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-02-03/</link>
<pubDate>Mon, 03 Feb 2020 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-02-03/</guid>
<description><ol><li>Good Businesses Have Margin</li><li>This is What Most People Get Wrong About Willpower</li><li>Bram Moolenaar (Vim creator) Uses This</li><li>In search of reciprocity</li><li>5 SaaS Features For Big Enterprises</li></ol></description>
</item><item>
<title>A Fistful of Links - January 27, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-01-27/</link>
<pubDate>Mon, 27 Jan 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-01-27/</guid>
<description><ol><li>The Mind at Work: Guido van Rossum on how Python makes thinking in code easier</li><li>Tech Books I Will Read Again</li><li>Goodbye, Clean Code</li><li>Debugging Failed Travis build with Docker on your local machine</li><li>Burning Out and Finding Stability</li></ol></description>
</item><item>
<title>A Fistful of Links - January 20, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-01-20/</link>
<pubDate>Mon, 20 Jan 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-01-20/</guid>
<description><ol><li>PatternFly and the Open UI Automation specification</li><li>Motivational Quotes About "You Can Do It"</li><li>The Unspoken Truth About Leadership</li><li>The epistemology of software quality</li><li>The Mind at Work: Ted Chiang on making stories that change our minds</li></ol></description>
</item><item>
<title>A Fistful of Links - January 13, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-01-13/</link>
<pubDate>Mon, 13 Jan 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-01-13/</guid>
<description><ol><li>How classroom technology is holding students back</li><li>Improving Coding Standards and Quality</li><li>The Language Agnostic, All-Purpose, Incredible, Makefile</li><li>The Value in Go's Simplicity</li><li>Yes! and... How to be effective in the theatre of work</li></ol></description>
</item><item>
<title>A Fistful of Links - January 06, 2020</title>
<link>https://afistfuloflinks.github.io/posts/2020-01-06/</link>
<pubDate>Mon, 06 Jan 2020 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2020-01-06/</guid>
<description><ol><li>The Lesson to Unlearn</li><li>8 must-read DevOps articles for success in 2020</li><li>Neal Agarwal: Creative Coder</li><li>Single Page Application + REST as an Abstraction: The Benefits of Decoupling Your Front & Back Ends</li><li>12 Science Books You Should Read Right Now</li></ol></description>
</item><item>
<title>A Fistful of Links - December 30, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-12-30/</link>
<pubDate>Mon, 30 Dec 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-12-30/</guid>
<description><ol><li>Don't Work Alone When You're a New or Junior Engineer</li><li>When your teammate wants your job and other things</li><li>2010-2019: A Decade of Change in Science Fiction & Fantasy</li><li>How to offer challenges to your teammates</li><li>The Danger of “Simplicity”</li></ol></description>
</item><item>
<title>A Fistful of Links - December 23, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-12-23/</link>
<pubDate>Mon, 23 Dec 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-12-23/</guid>
<description><ol><li>Everything is Amazing, But Nothing is Ours</li><li>SLOs Are the API for Your Engineering Team</li><li>Moving towards a faster web</li><li>Top 10 Python libraries of 2019</li><li>How GitHub’s CTO Architects Engineering Teams That Scale</li></ol></description>
</item><item>
<title>A Fistful of Links - December 16, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-12-16/</link>
<pubDate>Mon, 16 Dec 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-12-16/</guid>
<description><ol><li>As the internet turns 50, we must protect it as a force for good</li><li>Efficient Software Project Management at its Roots</li><li>My Python Development Environment, 2020 Edition</li><li>WDR on team composition</li><li>Starting an Engineering Management Book Club</li></ol></description>
</item><item>
<title>A Fistful of Links - December 09, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-12-09/</link>
<pubDate>Mon, 09 Dec 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-12-09/</guid>
<description><ol><li>It's the end of Python 2. Are we prepared?</li><li>Yes, You Should Estimate Software Projects</li><li>Generating castles for Minecraft™ using Haskell</li><li>How Will You Measure Your Life?</li><li>Dockerizing Flask with Postgres, Gunicorn, and Nginx</li></ol></description>
</item><item>
<title>A Fistful of Links - December 02, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-12-02/</link>
<pubDate>Mon, 02 Dec 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-12-02/</guid>
<description><ol><li>Josh Waitzkin on How to Structure Your Day for Peak Performance</li><li>The Lines of Code That Changed Everything</li><li>Psychological Safety: Models and Experiences</li><li>A theorem of software engineering</li><li>Margaret Hamilton</li></ol></description>
</item><item>
<title>A Fistful of Links - November 25, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-11-25/</link>
<pubDate>Mon, 25 Nov 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-11-25/</guid>
<description><ol><li>Could your team be managing itself?</li><li>What is a quantum computer?</li><li>THE (REAL) 11 REASONS I DON’T HIRE YOU</li><li>Dear Startup: You have no idea how much that costs</li><li>Cracking the Code of Sustained Collaboration</li></ol></description>
</item><item>
<title>A Fistful of Links - November 18, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-11-18/</link>
<pubDate>Mon, 18 Nov 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-11-18/</guid>
<description><ol><li>Hash tables</li><li>100 Best Programming Books of All Time</li><li>Puppet’s New Cloud Native Continuous Delivery Tool Builds on the CDF’s Tekton</li><li>The Bel Language</li><li>Salesforce: Why we ditched Python for Google's Go language in Einstein Analytics</li></ol></description>
</item><item>
<title>A Fistful of Links - November 11, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-11-11/</link>
<pubDate>Mon, 11 Nov 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-11-11/</guid>
<description><ol><li>How to land a Data Scientist job at your dream company — My journey to Airbnb</li><li>Study: Remote Workers Are Happier, Stay in Their Jobs Longer, and Work More Hours Than On-Site Employees</li><li>Deep Work in the Age of Distraction</li><li>Intro to Ansible Tower</li><li>Why you should have a side project</li></ol></description>
</item><item>
<title>A Fistful of Links - November 04, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-11-04/</link>
<pubDate>Mon, 04 Nov 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-11-04/</guid>
<description><ol><li>How to run an efficient and effective All Hands meeting</li><li>Must-Have Qualities for Effective Leadership</li><li>An A-Z of useful Python tricks</li><li>Earning, spending, saving: The currency of influence in open source</li><li>The Single Most Important Internal Email in the History of Amazon</li></ol></description>
</item><item>
<title>A Fistful of Links - October 28, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-10-28/</link>
<pubDate>Mon, 28 Oct 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-10-28/</guid>
<description><ol><li>Publish your Cloud Run App with GitHub Actions</li><li>How to Be a Good Senior Developer</li><li>Use the Little-Known Classmethod Decorator to Add Constructors to Your Classes</li><li>Linux capacity planning: 5 things you need to do</li><li>Candor, Bluntness, Impedance Matching</li></ol></description>
</item><item>
<title>A Fistful of Links - October 21, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-10-21/</link>
<pubDate>Mon, 21 Oct 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-10-21/</guid>
<description><ol><li>Install Docker CE on CentOS and RHEL 7</li><li>A Comprehensive Guide to Pandas’ Advanced Features in 20 Minutes</li><li>GitLab is Overtaking GitHub</li><li>One-on-ones are my most valuable meetings; here’s how I run them</li><li>How to Be Great? Just Be Good, Repeatably</li></ol></description>
</item><item>
<title>A Fistful of Links - October 14, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-10-14/</link>
<pubDate>Mon, 14 Oct 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-10-14/</guid>
<description><ol><li>Goodbye Virtual Environments?</li><li>How to use Ansible Galaxy</li><li>Java 13 Features: Switch Enhancements and Text Blocks</li><li>How to master Python’s main data analysis library in 20 Minutes</li><li>Conducting Effective Code Reviews</li></ol></description>
</item><item>
<title>A Fistful of Links - October 07, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-10-07/</link>
<pubDate>Mon, 07 Oct 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-10-07/</guid>
<description><ol><li>Digital transformation: 4 kinds of people crucial to success</li><li>Kubernetes and Virtual Kubelet in a nutshell</li><li>Django on Docker - A Simple Introduction</li><li>How to Design Your Office for Improved Productivity and Purpose</li><li>Learn Functional Python in 10 Minutes</li></ol></description>
</item><item>
<title>A Fistful of Links - September 30, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-09-30/</link>
<pubDate>Mon, 30 Sep 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-09-30/</guid>
<description><ol><li>How Self-Made Billionaires Prioritize for Better Focus and Productivity</li><li>How Can I Avoid Turning Talented Workers Into Crappy Managers?</li><li>6 Steps Leaders Can Take to Get the Most Out of Feedback</li><li>The Product-Minded Software Engineer</li><li>How to Contribute to an Open Source Project</li></ol></description>
</item><item>
<title>A Fistful of Links - September 23, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-09-23/</link>
<pubDate>Mon, 23 Sep 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-09-23/</guid>
<description><ol><li>10 Python File System Methods You Should Know</li><li>What Mentors Wish Their Mentees Knew</li><li>How to Recruit in a Highly Competitive Job Market</li><li>Could Your Team Be Managing Itself?</li><li>The different types of software testing</li></ol></description>
</item><item>
<title>A Fistful of Links - September 16, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-09-16/</link>
<pubDate>Mon, 16 Sep 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-09-16/</guid>
<description><ol><li>Building CI/CD pipelines with Jenkins</li><li>Project Managers or Program Managers?</li><li>Learn a new pandas trick every day!</li><li>Towards a UX Strategy for GNOME (Part 1)</li><li>Our journey to type checking 4 million lines of Python</li></ol></description>
</item><item>
<title>A Fistful of Links - September 09, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-09-09/</link>
<pubDate>Mon, 09 Sep 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-09-09/</guid>
<description><ol><li>One of the greatest science fiction magazines is now available for free online</li><li>The Anthropologist of Artificial Intelligence</li><li>Modern applications at AWS</li><li>Podman and Buildah for Docker users</li><li>The Ultimate Guide to Successful Meetings</li></ol></description>
</item><item>
<title>A Fistful of Links - September 02, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-09-02/</link>
<pubDate>Mon, 02 Sep 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-09-02/</guid>
<description><ol><li>The 100 stories that shaped the world</li><li>A new experience for Learning Lab authors</li><li>33 Things Successful Leaders Have Given Up</li><li>Introduction to Receptor Concepts</li><li>Get your work recognized: write a brag document</li></ol></description>
</item><item>
<title>A Fistful of Links - August 26, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-08-26/</link>
<pubDate>Mon, 26 Aug 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-08-26/</guid>
<description><ol><li>Avoid Your Own Blind Spot</li><li>Lessons from Leading a Remote Engineering Team</li><li>The Singleton Pattern</li><li>Continuous Improvement: How It Works and How to Master It</li><li>Take your Linux development experience in Windows to the next level with WSL and Visual Studio Code Remote</li></ol></description>
</item><item>
<title>A Fistful of Links - August 19, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-08-19/</link>
<pubDate>Mon, 19 Aug 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-08-19/</guid>
<description><ol><li>Empowerment can be tricky!</li><li>Fall 2019 preview: Most anticipated fiction</li><li>My 7 rules for remote-work sanity</li><li>Who Is Marcus Aurelius? Getting To Know The Roman Emperor</li><li>Why your mock doesn’t work</li></ol></description>
</item><item>
<title>A Fistful of Links - August 12, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-08-12/</link>
<pubDate>Mon, 12 Aug 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-08-12/</guid>
<description><ol><li>Selenium on Windows: Docker Revolution</li><li>Defect Prevention rather than Detection</li><li>Taking on Google, with Gabriel Weinberg, Founder of Privacy Browser DuckDuckGo</li><li>7 Tips to Help You Succeed at Online and Remote Courses</li><li>THOUGHTS ON RESTRUCTURING THE ANSIBLE PROJECT</li></ol></description>
</item><item>
<title>A Fistful of Links - August 05, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-08-05/</link>
<pubDate>Mon, 05 Aug 2019 00:00:01 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-08-05/</guid>
<description><ol><li>7 Things You Need To Stop Doing To Be More Productive, Backed By Science</li><li>20 Books TED Speakers Think Everyone Should Read This Summer</li><li>Fun With Flags</li><li>Repodiff: A savior for comparing repositories</li><li>At Work, Are You an Integrator or a Segmenter?</li></ol></description>
</item><item>
<title>A Fistful of Links - July 29, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-07-29/</link>
<pubDate>Mon, 29 Jul 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-07-29/</guid>
<description><ol><li>The History of PC Hardware, in Pictures</li><li>The Truth about Boundaries, Curiosity, and Requests (Part 2 of 2)</li><li>Deploying Django to Heroku With Docker</li><li>This simple trick helped me find time to write a book while running a company</li><li>Deploying Django to Heroku With Docker</li></ol></description>
</item><item>
<title>A Fistful of Links - July 22, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-07-22/</link>
<pubDate>Mon, 22 Jul 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-07-22/</guid>
<description><ol><li>A Beginner’s Guide to Using CDNs</li><li>The Best of the Best: 10 Must-Read Works by Harlan Ellison</li><li>Side Quest Completed Podcast</li><li>The Day the Music Burned</li><li>The Truth about Boundaries, Curiosity, and Requests (Part 1 of 2)</li></ol></description>
</item><item>
<title>A Fistful of Links - July 15, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-07-15/</link>
<pubDate>Mon, 15 Jul 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-07-15/</guid>
<description><ol><li>What I Gave My Kid Instead of a Smartphone</li><li>You Don’t Need To Go To College To Become a Software Engineer</li><li>From Engineer to Manager and Back Again</li><li>Getting started with Buildah</li><li>A Visual Intro to NumPy and Data Representation</li></ol></description>
</item><item>
<title>A Fistful of Links - July 08, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-07-08/</link>
<pubDate>Mon, 08 Jul 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-07-08/</guid>
<description><ol><li>8 powerful phrases of emotionally intelligent leaders</li><li>Working the Weekly 1:1</li><li>No “yes.” Either “HELL YEAH!” or “no.”</li><li>Leaders don't create more followers. They create more leaders</li><li>Jenkins CI Pipeline with Python</li></ol></description>
</item><item>
<title>A Fistful of Links - July 01, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-07-01/</link>
<pubDate>Mon, 01 Jul 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-07-01/</guid>
<description><ol><li>Google Tried to Prove Managers Don't Matter. Instead, It Discovered 10 Traits of the Very Best Ones</li><li>Azure Functions vs. AWS Lambdas</li><li>Types and Tests</li><li>Change management will make or break key technology rollouts</li><li>There's no speed limit</li></ol></description>
</item><item>
<title>A Fistful of Links - June 24, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-06-24/</link>
<pubDate>Mon, 24 Jun 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-06-24/</guid>
<description><ol><li>Create a CentOS homelab in an hour</li><li>Lessons from 7 highly successful software engineering cultures</li><li>The oc Command for Newbies</li><li>Agile “Defects” Explained</li><li>What great managers do: Prune</li></ol></description>
</item><item>
<title>A Fistful of Links - June 17, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-06-17/</link>
<pubDate>Mon, 17 Jun 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-06-17/</guid>
<description><ol><li>"Blameless" postmortems don't work. Here's what does.</li><li>How To Quickly Blow-Past The Top 1–3% Of Your Industry</li><li>Four Magic Numbers for Measuring Software Delivery</li><li>7 absolute truths I unlearned as junior developer</li><li>How to Get Regression Defects Under Control</li></ol></description>
</item><item>
<title>A Fistful of Links - June 10, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-06-10/</link>
<pubDate>Mon, 10 Jun 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-06-10/</guid>
<description><ol><li>Tests that sometimes fail</li><li>The best leaders are expendable</li><li>Automation is not automagic: Why better software automation matters</li><li>The Game of Life (in Ruby)</li><li>Fiction: The science in Sherlock Holmes</li></ol></description>
</item><item>
<title>A Fistful of Links - June 03, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-06-03/</link>
<pubDate>Mon, 03 Jun 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-06-03/</guid>
<description><ol><li>From a python project to an open source package: an A to Z guide</li><li>Make a Kubernetes Operator in 15 minutes with Helm</li><li>Looking inside the box</li><li>How to create a searchable log with Gatsby</li><li>GitHub’s Top 100 Most Valuable Repositories Out of 96 Million</li></ol></description>
</item><item>
<title>A Fistful of Links - May 27, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-05-27/</link>
<pubDate>Mon, 27 May 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-05-27/</guid>
<description><ol><li>A Lesson in Resilience, from Anita, My Uber Driver!</li><li>Kubernetes: Core Concepts</li><li>Has the Python GIL been slain?</li><li>5 Simple Things You Should Do Every Sunday Night to Prepare for the Week Ahead</li><li>How Writing Changed My Life</li></ol></description>
</item><item>
<title>A Fistful of Links - May 20, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-05-20/</link>
<pubDate>Mon, 20 May 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-05-20/</guid>
<description><ol><li>9 Pieces of Career Advice that Led to My Dream Job</li><li>f-string debugging in Python 3.8</li><li>How to write a super fast link shortener with Elixir, Phoenix, and Mnesia</li><li>Remote Python Development in Visual Studio Code</li><li>The Secrets of the Prague Astronomical Clock</li></ol></description>
</item><item>
<title>A Fistful of Links - May 13, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-05-13/</link>
<pubDate>Mon, 13 May 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-05-13/</guid>
<description><ol><li>Sleep Is the Most Productive Part of the Day</li><li>How to Hold Your Team Accountable</li><li>Don’t solve problems if you want to be a great manager</li><li>Meet the People Coding Our World</li><li>Trick Yourself Into Creating a Fresh Start</li></ol></description>
</item><item>
<title>A Fistful of Links - May 06, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-05-06/</link>
<pubDate>Mon, 06 May 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-05-06/</guid>
<description><ol><li>The compass and the map</li><li>Why individual OKRs don’t work for us</li><li>The Complete Guide to Effective Reading</li><li>Big List Of Red Hat Tools, Services, Servers, Systems, Etc</li><li>How to write like the great entrepreneurs</li></ol></description>
</item><item>
<title>A Fistful of Links - April 29, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-04-29/</link>
<pubDate>Mon, 29 Apr 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-04-29/</guid>
<description><ol><li>This is how you keep your most ambitious employees from leaving</li><li>Comparing Linux hosted to Windows hosted ASP.NET Core applications in Azure Application Service Plan</li><li>An Introduction to Modern Agile</li><li>Setting up iSCSI Export on Red Hat Enterprise Linux 7</li><li>Researchers Are Translating Brain Activity Into Speech</li></ol></description>
</item><item>
<title>A Fistful of Links - April 22, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-04-22/</link>
<pubDate>Mon, 22 Apr 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-04-22/</guid>
<description><ol><li>How to communicate effectively as a leader</li><li>What is GraphQL?</li><li>How To Be A Mentor</li><li>Multiply your time by asking 4 questions about the stuff on your to-do list</li><li>Bit by Bit</li></ol></description>
</item><item>
<title>A Fistful of Links - April 15, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-04-15/</link>
<pubDate>Mon, 15 Apr 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-04-15/</guid>
<description><ol><li>Goodbye, Object Oriented Programming</li><li>THREE QUICK WAYS TO MOVE YOUR ANSIBLE INVENTORY INTO RED HAT ANSIBLE TOWER</li><li>Floating cities could ease the world’s housing crunch, the UN says</li><li>How to Get Into SRE</li><li>AHAB’S ARITHMETIC; OR, THE MATHEMATICS OF MOBY-DICK</li></ol></description>
</item><item>
<title>A Fistful of Links - April 08, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-04-08/</link>
<pubDate>Mon, 08 Apr 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-04-08/</guid>
<description><ol><li>Ask a Candid Boss: How Do I Play Nice With the Other Managers at Work?</li><li>Your Productivity Hinges on How You Arrange Your Desk</li><li>Google asked 5,600 employees about remote work. This is what they learned</li><li>There’s probably another planet in our solar system</li><li>Meet the employees transforming LinkedIn's Top Companies</li></ol></description>
</item><item>
<title>A Fistful of Links - April 01, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-04-01/</link>
<pubDate>Mon, 01 Apr 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-04-01/</guid>
<description><ol><li>My Unexpected Journey to Becoming a Software Tester (From Entry-level to a Manager)</li><li>In Defense of YAML</li><li>The history of cold-brew coffee is fascinating. (An 1840s Algerian fortress is involved.)</li><li>PyDev of the Week: Bruno Rocha</li><li>13 Things Mentally Strong People Won't Do</li></ol></description>
</item><item>
<title>A Fistful of Links - March 25, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-03-25/</link>
<pubDate>Mon, 25 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-03-25/</guid>
<description><ol><li>Effective Feedback - Is it Possible?</li><li>Serverless Golang apps in 60 seconds</li><li>Application-Driven API Design</li><li>How we set goals for Goals</li><li>The Forgotten Woman Who Discovered the Greenhouse Effect</li></ol></description>
</item><item>
<title>A Fistful of Links - March 18, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-03-18/</link>
<pubDate>Mon, 18 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-03-18/</guid>
<description><ol><li>Why Visionary Leadership Fails</li><li>Managing Performance When It’s Hard to Measure</li><li>Weak Supervision: A New Programming Paradigm for Machine Learning</li><li>Why feedback, not metrics, is critical to DevOps</li><li>What you need to know to get started with AWS</li></ol></description>
</item><item>
<title>A Fistful of Links - March 11, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-03-11/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-03-11/</guid>
<description><ol><li>The Feedback Fallacy</li><li>Why the way you accept praise at work matters</li><li>How to make your organization attractive to engineering talent</li><li>Unit Testing React Components</li><li>Ctrl-Alt-Delete: The Planned Obsolescence of Old Coders</li></ol></description>
</item><item>
<title>A Fistful of Links - March 04, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-03-04/</link>
<pubDate>Mon, 04 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-03-04/</guid>
<description><ol><li>Breaking the Test Case Addiction (Part 6)</li><li>On Being a Principal Engineer</li><li>8 powerful phrases of emotionally intelligent leaders</li><li>API/REST testing like Chuck Norris with pytest play using YAML</li><li>From Software Engineer to Engineering Manager</li></ol></description>
</item><item>
<title>A Fistful of Links - February 25, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-02-25/</link>
<pubDate>Mon, 25 Feb 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-02-25/</guid>
<description><ol><li>Breaking the Test Case Addiction (Part 5)</li><li>The state of Python Packaging</li><li>The Art of Active Listening</li><li>I’ve Interviewed 300 High Achievers About Their Morning Routines. Here’s What I’ve Learned</li><li>Explainer: What is quantum communication?</li></ol></description>
</item><item>
<title>A Fistful of Links - February 18, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-02-18/</link>
<pubDate>Mon, 18 Feb 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-02-18/</guid>
<description><ol><li>Breaking the Test Case Addiction (Part 4)</li><li>A Plan For (Angular) Version 8.0 and Ivy</li><li>What I love about SRE</li><li>asyncio: We Did It Wrong</li><li>Speed up your Python using Rust</li></ol></description>
</item><item>
<title>A Fistful of Links - February 11, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-02-11/</link>
<pubDate>Mon, 11 Feb 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-02-11/</guid>
<description><ol><li>Breaking the Test Case Addiction (Part 3)</li><li>Artificial Intelligence Finds Ancient ‘Ghosts’ in Modern DNA</li><li>Building a Custom IDE with Tmux</li><li>Top 10 things to know about Chinese New Year</li><li>Monkeypatching with pytest</li></ol></description>
</item><item>
<title>A Fistful of Links - February 04, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-02-04/</link>
<pubDate>Mon, 04 Feb 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-02-04/</guid>
<description><ol><li>Breaking the Test Case Addiction (Part 2)</li><li>A Wall Calendar Will Change Your Life</li><li>Satellite 6 QE Upstream First - Some Lessons Learned</li><li>Demystifying @decorators in Python</li><li>Google Takes Its First Steps Toward Killing The URL</li></ol></description>
</item><item>
<title>A Fistful of Links - January 28, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-01-28/</link>
<pubDate>Mon, 28 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-01-28/</guid>
<description><ol><li>Breaking the Test Case Addiction (Part 1)</li><li>My life as a Digital Nomad: A story about Cryptocurrencies, Javascript and Affiliate Marketing</li><li>Asynchronous Tasks with Falcon and Celery</li><li>Where to Start with Edgar Allan Poe</li><li>Trouble hiring senior engineers? It's probably you</li></ol></description>
</item><item>
<title>A Fistful of Links - January 21, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-01-21/</link>
<pubDate>Mon, 21 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-01-21/</guid>
<description><ol><li>How To Be A Leader That Inspires People To Change</li><li>Using the iPad Pro as my development machine</li><li>Life lessons for the aspiring software engineer</li><li>Collection Pipeline</li><li>Podman: Managing pods and containers in a local container runtime</li></ol></description>
</item><item>
<title>A Fistful of Links - January 14, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-01-14/</link>
<pubDate>Mon, 14 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-01-14/</guid>
<description><ol><li>Attracting people to work for you</li><li>How to use spaced repetition with Anki to learn to code faster</li><li>How to command the Javascript console</li><li>You Don't Know JS</li><li>Can Reading Make You Happier?</li></ol></description>
</item><item>
<title>A Fistful of Links - January 07, 2019</title>
<link>https://afistfuloflinks.github.io/posts/2019-01-07/</link>
<pubDate>Mon, 07 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2019-01-07/</guid>
<description><ol><li>Programming with Google Go Specialization</li><li>Ruby on Rails Web Development Specialization</li><li>Functional Programming in Scala Specialization</li><li>User Interface Design Specialization</li><li>iOS App Development with Swift Specialization</li></ol></description>
</item><item>
<title>A Fistful of Links - December 31, 2018</title>
<link>https://afistfuloflinks.github.io/posts/2018-12-31/</link>
<pubDate>Mon, 31 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2018-12-31/</guid>
<description><ol><li>How Managers Become Leaders</li><li>The xonsh shell</li><li>Dataset: Databases for Lazy People</li><li>Against “Work-Life Balance” and In Favor of Something Better</li><li>Useful pytest command line options</li></ol></description>
</item><item>
<title>A Fistful of Links - December 24, 2018</title>
<link>https://afistfuloflinks.github.io/posts/2018-12-24/</link>
<pubDate>Mon, 24 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2018-12-24/</guid>
<description><ol><li>Why I Left Management: the engineering technical track vs. management track</li><li>Rather Than a Micromanager or Absentee Manager, Be a Thought Partner</li><li>An Approach To Automating Application Resiliency Testing With Kubernetes</li><li>How Python made it big at Microsoft</li><li>5 reasons you should learn Lua</li></ol></description>
</item><item>
<title>A Fistful of Links - December 17, 2018</title>
<link>https://afistfuloflinks.github.io/posts/2018-12-17/</link>
<pubDate>Mon, 17 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2018-12-17/</guid>
<description><ol><li>5 Principles for Making Better Life Decisions</li><li>Sending Emails With Python</li><li>If We Do Sanity Testing Before Release, Do We Have To Do Regression Testing?</li><li>The Good, The Bad and The Beautiful of Employee Empowerment</li><li>The Shift-Left Approach to Software Testing</li></ol></description>
</item><item>
<title>A Fistful of Links - December 10, 2018</title>
<link>https://afistfuloflinks.github.io/posts/2018-12-10/</link>
<pubDate>Mon, 10 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2018-12-10/</guid>
<description><ol><li>AsciiDoc vs Markdown</li><li>The Importance of Code Styling Guides</li><li>Exploratory Testing on an API? (Part 3)</li><li>Working with Jupyter Notebook Widgets</li><li>Short Cuts</li></ol></description>
</item><item>
<title>A Fistful of Links - December 03, 2018</title>
<link>https://afistfuloflinks.github.io/posts/2018-12-02/</link>
<pubDate>Sun, 02 Dec 2018 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2018-12-02/</guid>
<description><ol><li>Ryan North's 6 favorite sci-fi stories</li><li>Test Faster: How We Cut Our Test Cycle Time in Half</li><li>Exploratory Testing on an API? (Part 2)</li><li>How to Deal with Difficult People on Software Projects</li><li>Pure Python vs NumPy vs TensorFlow Performance Comparison</li></ol></description>
</item><item>
<title>A Fistful of Links - November 26, 2018</title>
<link>https://afistfuloflinks.github.io/posts/2018-11-26/</link>
<pubDate>Mon, 26 Nov 2018 00:00:00 +0000</pubDate>
<guid>https://afistfuloflinks.github.io/posts/2018-11-26/</guid>
<description><ol><li>Let’s Not Kill Performance Evaluations Yet</li><li>What One Person Can To Do To Get People Reading</li><li>Exploratory Testing on an API? (Part 1)</li><li>An awesome new Python profiler: py-spy!</li><li>Introduction to Exploratory Data Analysis in Python</li></ol></description>
</item><item>