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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
|
<!-- Automatically generated by emacsconf-publish-after-page -->
<div class="transcript transcript-mainVideo"><a name="project-mainVideo-transcript"></a><h1>Transcript</h1>
<div class="transcript-heading">[[!template new="1" text="""Introduction""" start="00:00:00.000" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""Good morning. I'm Blaine Mooers. I'm an associate""" start="00:00:00.000" video="mainVideo-project" id="subtitle"]]
[[!template text="""professor of biochemistry and physiology at the""" start="00:00:10.000" video="mainVideo-project" id="subtitle"]]
[[!template text="""University of Oklahoma Health Sciences in Oklahoma City.""" start="00:00:12.400" video="mainVideo-project" id="subtitle"]]
[[!template text="""I'm going to be talking about the utilization of Org mode to""" start="00:00:15.080" video="mainVideo-project" id="subtitle"]]
[[!template text="""write a specific kind of log file for thinking about writing""" start="00:00:21.640" video="mainVideo-project" id="subtitle"]]
[[!template text="""projects, in particular research articles. I have stored a""" start="00:00:26.800" video="mainVideo-project" id="subtitle"]]
[[!template text="""template for this file on GitHub. You can find it at Mooers""" start="00:00:31.600" video="mainVideo-project" id="subtitle"]]
[[!template text="""Lab. If you go to the landing page and scroll down to""" start="00:00:35.920" video="mainVideo-project" id="subtitle"]]
[[!template text="""Emacs-related, you'll find a link to it.""" start="00:00:40.760" video="mainVideo-project" id="subtitle"]]
[[!template text="""I am a structural biologist. I utilize X-ray""" start="00:00:47.280" video="mainVideo-project" id="subtitle"]]
[[!template text="""crystallography to determine the structures of proteins""" start="00:00:50.680" video="mainVideo-project" id="subtitle"]]
[[!template text="""and nucleic acids that are important in human health. Our""" start="00:00:53.360" video="mainVideo-project" id="subtitle"]]
[[!template text="""workflow is shown across the top. We start out with a""" start="00:00:58.920" video="mainVideo-project" id="subtitle"]]
[[!template text="""purified material that we crystallize as shown by that""" start="00:01:01.880" video="mainVideo-project" id="subtitle"]]
[[!template text="""elongated rod-shaped crystal on the left. We will mount""" start="00:01:04.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""that in a cold stream and collect diffraction data with""" start="00:01:09.600" video="mainVideo-project" id="subtitle"]]
[[!template text="""X-rays in the instrument to the right. That instrument will""" start="00:01:14.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""generate an image like the one to the right where you see a""" start="00:01:20.400" video="mainVideo-project" id="subtitle"]]
[[!template text="""bunch of spots. That's a diffraction pattern from the""" start="00:01:23.560" video="mainVideo-project" id="subtitle"]]
[[!template text="""crystal. After rotating the crystal for one degree, we'll""" start="00:01:26.320" video="mainVideo-project" id="subtitle"]]
[[!template text="""rotate the crystal 180 degrees to get a full data set that""" start="00:01:29.800" video="mainVideo-project" id="subtitle"]]
[[!template text="""we'll process with a computer. This will lead to the""" start="00:01:33.080" video="mainVideo-project" id="subtitle"]]
[[!template text="""chicken-wire map of electron density shown further to the""" start="00:01:37.360" video="mainVideo-project" id="subtitle"]]
[[!template text="""right. Then on the far right, we have compared""" start="00:01:43.720" video="mainVideo-project" id="subtitle"]]
[[!template text="""electrostructures of two drug molecules from two""" start="00:01:50.000" video="mainVideo-project" id="subtitle"]]
[[!template text="""different structures, overlapped after superimposing""" start="00:01:54.800" video="mainVideo-project" id="subtitle"]]
[[!template text="""a wild type protein and a mutant protein. We're trying to""" start="00:01:59.400" video="mainVideo-project" id="subtitle"]]
[[!template text="""analyze how the mutant was preventing one of the drugs from""" start="00:02:02.920" video="mainVideo-project" id="subtitle"]]
[[!template text="""binding. These kind of analyses we can develop that are""" start="00:02:05.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""drugs. In this case, the drugs are being used to treat lung""" start="00:02:12.200" video="mainVideo-project" id="subtitle"]]
[[!template text="""cancer.""" start="00:02:16.520" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Starting a new writing project""" start="00:02:20.080" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""When I start a new writing project, I will assign it a number.""" start="00:02:20.080" video="mainVideo-project" id="subtitle"]]
[[!template text="""In this case, I'm developing a review article about the""" start="00:02:24.920" video="mainVideo-project" id="subtitle"]]
[[!template text="""detection of crystals in images collected with""" start="00:02:29.640" video="mainVideo-project" id="subtitle"]]
[[!template text="""microscopes like the image in the upper left.""" start="00:02:32.480" video="mainVideo-project" id="subtitle"]]
[[!template text="""The article is about the utilization of AI to help with that""" start="00:02:33.862" video="mainVideo-project" id="subtitle"]]
[[!template text="""detection of crystals. I start the name of the folder with""" start="00:02:42.640" video="mainVideo-project" id="subtitle"]]
[[!template text="""this index number, and I store the manuscript folders in the""" start="00:02:49.040" video="mainVideo-project" id="subtitle"]]
[[!template text="""top level of my home directory to ease navigation.""" start="00:02:55.080" video="mainVideo-project" id="subtitle"]]
[[!template text="""Whenever I pop open a terminal window, I just enter 0573, hit""" start="00:02:59.160" video="mainVideo-project" id="subtitle"]]
[[!template text="""TAB to autocomplete the name of the folder, and I'll be right""" start="00:03:03.840" video="mainVideo-project" id="subtitle"]]
[[!template text="""in the appropriate folder. I also use that index number to""" start="00:03:07.280" video="mainVideo-project" id="subtitle"]]
[[!template text="""label the names of the files. I start every project with""" start="00:03:11.600" video="mainVideo-project" id="subtitle"]]
[[!template text="""three files: a manuscript, the log file that I'll be talking""" start="00:03:14.880" video="mainVideo-project" id="subtitle"]]
[[!template text="""about today, and an annotated bibliography, which is kind""" start="00:03:19.520" video="mainVideo-project" id="subtitle"]]
[[!template text="""of like one on steroids. Annotated bibliography for the""" start="00:03:22.760" video="mainVideo-project" id="subtitle"]]
[[!template text="""21st century, not the 20th century annotated bibliography""" start="00:03:26.000" video="mainVideo-project" id="subtitle"]]
[[!template text="""you worked on as an undergraduate.""" start="00:03:30.760" video="mainVideo-project" id="subtitle"]]
[[!template text="""I have developed templates not only for Org Mode, but also""" start="00:03:37.240" video="mainVideo-project" id="subtitle"]]
[[!template text="""for other markup languages, like R Markdown and LaTeX. I""" start="00:03:40.280" video="mainVideo-project" id="subtitle"]]
[[!template text="""actually developed this""" start="00:03:45.360" video="mainVideo-project" id="subtitle"]]
[[!template text="""log file template over a dozen years ago in LaTeX. I also""" start="00:03:49.400" video="mainVideo-project" id="subtitle"]]
[[!template text="""have developed it for Typst. Typst is independent of LaTeX.""" start="00:03:54.840" video="mainVideo-project" id="subtitle"]]
[[!template text="""It's inspired by LaTeX, but it's written in Rust, and""" start="00:03:58.160" video="mainVideo-project" id="subtitle"]]
[[!template text="""it's extremely fast.""" start="00:04:04.080" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""The writing log""" start="00:04:05.480" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""My writing process involves having the writing log at the""" start="00:04:05.480" video="mainVideo-project" id="subtitle"]]
[[!template text="""center of the process. That's where I began the writing""" start="00:04:11.800" video="mainVideo-project" id="subtitle"]]
[[!template text="""project. On the right, I have the manuscript and all its""" start="00:04:14.480" video="mainVideo-project" id="subtitle"]]
[[!template text="""components highlighted in yellow. On the right,""" start="00:04:19.680" video="mainVideo-project" id="subtitle"]]
[[!template text="""hopefully I said on the right, I have the manuscript with all""" start="00:04:25.840" video="mainVideo-project" id="subtitle"]]
[[!template text="""its components highlighted in yellow. On the left, I have""" start="00:04:29.840" video="mainVideo-project" id="subtitle"]]
[[!template text="""the annotated bibliography.""" start="00:04:33.200" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Starting the research paper""" start="00:04:36.960" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""When I start a research paper, I will do this after I have""" start="00:04:36.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""built up a strong idea from various sources, and then I'll""" start="00:04:42.200" video="mainVideo-project" id="subtitle"]]
[[!template text="""sit down and go through a series of steps outlined in the""" start="00:04:49.640" video="mainVideo-project" id="subtitle"]]
[[!template text="""writing log to develop that central hypothesis into""" start="00:04:54.920" video="mainVideo-project" id="subtitle"]]
[[!template text="""several paragraphs that are used in the introduction of the""" start="00:04:59.840" video="mainVideo-project" id="subtitle"]]
[[!template text="""manuscript. The rest of the manuscript is built around that""" start="00:05:03.840" video="mainVideo-project" id="subtitle"]]
[[!template text="""central hypothesis, so the results section will include""" start="00:05:08.160" video="mainVideo-project" id="subtitle"]]
[[!template text="""experiments that address the central hypothesis, and it""" start="00:05:11.600" video="mainVideo-project" id="subtitle"]]
[[!template text="""will exclude experiments that have nothing to do with it.""" start="00:05:15.800" video="mainVideo-project" id="subtitle"]]
[[!template text="""Likewise, the discussion points address the central""" start="00:05:19.480" video="mainVideo-project" id="subtitle"]]
[[!template text="""hypothesis.""" start="00:05:22.720" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Outline""" start="00:05:25.310" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""When I'm done developing that introduction""" start="00:05:25.310" video="mainVideo-project" id="subtitle"]]
[[!template text="""in, say, three or four hours, I'll have an outline in hand. At""" start="00:05:27.920" video="mainVideo-project" id="subtitle"]]
[[!template text="""least for the results and discussion section, the outline""" start="00:05:33.440" video="mainVideo-project" id="subtitle"]]
[[!template text="""will be detailed down to at least a sub-heading level.""" start="00:05:38.200" video="mainVideo-project" id="subtitle"]]
[[!template text="""I'll move those components over to the manuscript on the""" start="00:05:44.200" video="mainVideo-project" id="subtitle"]]
[[!template text="""right. As work is done to address that central""" start="00:05:47.240" video="mainVideo-project" id="subtitle"]]
[[!template text="""hypothesis, the manuscript will be updated. Also as""" start="00:05:53.080" video="mainVideo-project" id="subtitle"]]
[[!template text="""exploration of the literature continues, new ideas will""" start="00:05:58.120" video="mainVideo-project" id="subtitle"]]
[[!template text="""flow in to the manuscript through the log file.""" start="00:06:01.360" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Another kind of writing log - accountability""" start="00:06:11.440" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""You've probably heard of another kind of writing log, which""" start="00:06:11.440" video="mainVideo-project" id="subtitle"]]
[[!template text="""is more of an accountability tool, a tool you use to hold""" start="00:06:13.520" video="mainVideo-project" id="subtitle"]]
[[!template text="""yourself accountable in terms of your commitment to work on""" start="00:06:16.720" video="mainVideo-project" id="subtitle"]]
[[!template text="""your writing projects.""" start="00:06:20.600" video="mainVideo-project" id="subtitle"]]
[[!template text="""So, this idea of carrying out this""" start="00:06:24.717" video="mainVideo-project" id="subtitle"]]
[[!template text="""documentation is supported by research done by""" start="00:06:29.000" video="mainVideo-project" id="subtitle"]]
[[!template text="""Robert Boice. He found that those academics""" start="00:06:32.717" video="mainVideo-project" id="subtitle"]]
[[!template text="""who record their writing""" start="00:06:35.839" video="mainVideo-project" id="subtitle"]]
[[!template text="""are four times more productive than those that do not.""" start="00:06:39.101" video="mainVideo-project" id="subtitle"]]
[[!template text="""Those that actually share their writing with""" start="00:06:42.003" video="mainVideo-project" id="subtitle"]]
[[!template text="""colleagues are nine times more productive. This is sort of a""" start="00:06:44.120" video="mainVideo-project" id="subtitle"]]
[[!template text="""case in point. This is a snapshot of a Google sheet of such a""" start="00:06:47.720" video="mainVideo-project" id="subtitle"]]
[[!template text="""writing log that I was sharing as part of a Google workbook.""" start="00:06:55.480" video="mainVideo-project" id="subtitle"]]
[[!template text="""I was sharing it with three other colleagues. I had the""" start="00:07:03.280" video="mainVideo-project" id="subtitle"]]
[[!template text="""possibility of them taking a peek at my Google sheet, and that""" start="00:07:06.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""possibility I found to be highly motivating.""" start="00:07:14.320" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Reducing switching costs""" start="00:07:17.458" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""As you can see, on July 24th, 2023, I worked on five different writing""" start="00:07:17.458" video="mainVideo-project" id="subtitle"]]
[[!template text="""projects. This would not have been possible if it had not""" start="00:07:22.600" video="mainVideo-project" id="subtitle"]]
[[!template text="""been for having five separate writing logs where I could""" start="00:07:25.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""figure out where I had started and where I would report the""" start="00:07:29.400" video="mainVideo-project" id="subtitle"]]
[[!template text="""day's progress before maybe taking a break and then""" start="00:07:32.760" video="mainVideo-project" id="subtitle"]]
[[!template text="""switching to another writing project. The writing log""" start="00:07:36.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""helps reduce switching costs between projects.""" start="00:07:41.200" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Motivation""" start="00:07:46.480" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""My motivation for developing this project-specific log""" start="00:07:46.480" video="mainVideo-project" id="subtitle"]]
[[!template text="""that I'm presenting here is to support clearer thinking""" start="00:07:57.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""about the science that I'm trying to do, hopefully leading""" start="00:08:02.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""to better science, as well as accelerating the completion""" start="00:08:06.880" video="mainVideo-project" id="subtitle"]]
[[!template text="""of the writing project. The secondary purpose is to enable""" start="00:08:10.400" video="mainVideo-project" id="subtitle"]]
[[!template text="""working on multiple writing projects in parallel. This is""" start="00:08:13.440" video="mainVideo-project" id="subtitle"]]
[[!template text="""important to be able to harness your subconscious. If you""" start="00:08:17.720" video="mainVideo-project" id="subtitle"]]
[[!template text="""work on project A for a few hours in the morning, say early""" start="00:08:21.800" video="mainVideo-project" id="subtitle"]]
[[!template text="""morning, then late morning you work on project B.""" start="00:08:25.920" video="mainVideo-project" id="subtitle"]]
[[!template text="""While you're working on project B,""" start="00:08:28.211" video="mainVideo-project" id="subtitle"]]
[[!template text="""your subconscious is busy working away on project A.""" start="00:08:33.861" video="mainVideo-project" id="subtitle"]]
[[!template text="""As a result, perhaps the following morning,""" start="00:08:39.142" video="mainVideo-project" id="subtitle"]]
[[!template text="""when you wake up or while you're taking a shower or""" start="00:08:43.480" video="mainVideo-project" id="subtitle"]]
[[!template text="""commuting, new ideas will emerge for projects A and B as a""" start="00:08:46.280" video="mainVideo-project" id="subtitle"]]
[[!template text="""result of these background jobs that you have launched. If""" start="00:08:52.000" video="mainVideo-project" id="subtitle"]]
[[!template text="""you don't work on project A, then you're not going to get the""" start="00:08:55.240" video="mainVideo-project" id="subtitle"]]
[[!template text="""benefit the following morning. The side effects of using""" start="00:08:58.800" video="mainVideo-project" id="subtitle"]]
[[!template text="""this writing log are that it reduces the fear of forgetting""" start="00:09:04.320" video="mainVideo-project" id="subtitle"]]
[[!template text="""and also reduces the fear of losing momentum. These are two""" start="00:09:07.440" video="mainVideo-project" id="subtitle"]]
[[!template text="""barriers to attempting to carry out work on multiple""" start="00:09:10.200" video="mainVideo-project" id="subtitle"]]
[[!template text="""writing projects in a given day. This problem of dealing""" start="00:09:15.000" video="mainVideo-project" id="subtitle"]]
[[!template text="""with multiple writing projects is one that is not discussed""" start="00:09:19.240" video="mainVideo-project" id="subtitle"]]
[[!template text="""in books about writing. It's apparently a very difficult""" start="00:09:22.720" video="mainVideo-project" id="subtitle"]]
[[!template text="""problem. I think my writing log is a successful solution to""" start="00:09:26.040" video="mainVideo-project" id="subtitle"]]
[[!template text="""that problem.""" start="00:09:29.760" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Overview of the writing log""" start="00:09:31.520" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""This is an overview of the writing log in Org mode. It has""" start="00:09:31.520" video="mainVideo-project" id="subtitle"]]
[[!template text="""various components. I don't have time to go through all of""" start="00:09:39.920" video="mainVideo-project" id="subtitle"]]
[[!template text="""them in detail, but you can see its structure. We get this""" start="00:09:42.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""summary view when you open up the file. You have this in the""" start="00:09:48.680" video="mainVideo-project" id="subtitle"]]
[[!template text="""header for a startup command overview. Then I just click""" start="00:09:54.320" video="mainVideo-project" id="subtitle"]]
[[!template text="""on the heading and hit TAB to see the contents below. So""" start="00:10:04.120" video="mainVideo-project" id="subtitle"]]
[[!template text="""normally, I'm just going to go straight to the daily log.""" start="00:10:08.080" video="mainVideo-project" id="subtitle"]]
[[!template text="""In this case, it starts on line 944.""" start="00:10:11.440" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""LaTeX preamble in opened drawer""" start="00:10:17.295" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""I don't have to scroll all the way down to it,""" start="00:10:17.295" video="mainVideo-project" id="subtitle"]]
[[!template text="""because thanks to the support""" start="00:10:19.256" video="mainVideo-project" id="subtitle"]]
[[!template text="""for folding of these sections in Org mode, if I open up the""" start="00:10:21.240" video="mainVideo-project" id="subtitle"]]
[[!template text="""drawer labeled :PREAMBLE:, you can see that I have imported a""" start="00:10:27.320" video="mainVideo-project" id="subtitle"]]
[[!template text="""number of LaTeX packages to enhance the format of the PDF""" start="00:10:31.320" video="mainVideo-project" id="subtitle"]]
[[!template text="""file that is upon export.""" start="00:10:38.880" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Informative header""" start="00:10:42.668" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""I have commands that are listed""" start="00:10:42.668" video="mainVideo-project" id="subtitle"]]
[[!template text="""below at the bottom for providing a fancy header. This""" start="00:10:44.320" video="mainVideo-project" id="subtitle"]]
[[!template text="""header has the current date as well as a running title and the""" start="00:10:49.000" video="mainVideo-project" id="subtitle"]]
[[!template text="""current page number and total number of pages. You can see""" start="00:10:54.520" video="mainVideo-project" id="subtitle"]]
[[!template text="""in the center the header at the start of page 2. You can see the""" start="00:10:58.200" video="mainVideo-project" id="subtitle"]]
[[!template text="""bottom of page 1 where the page number is at the bottom of the""" start="00:11:04.200" video="mainVideo-project" id="subtitle"]]
[[!template text="""page. These headers are very useful if you happen to print""" start="00:11:09.400" video="mainVideo-project" id="subtitle"]]
[[!template text="""out several log files and their corresponding manuscripts""" start="00:11:17.720" video="mainVideo-project" id="subtitle"]]
[[!template text="""and take them with you to work on them while traveling.""" start="00:11:22.880" video="mainVideo-project" id="subtitle"]]
[[!template text="""Invariably, the pages will get intermingled, and you'll have""" start="00:11:25.360" video="mainVideo-project" id="subtitle"]]
[[!template text="""to sort them out when you return home. These headers ease""" start="00:11:29.440" video="mainVideo-project" id="subtitle"]]
[[!template text="""that problem. You can see that the table of contents that begin""" start="00:11:33.680" video="mainVideo-project" id="subtitle"]]
[[!template text="""the writing log is hyperlinked to various sections. In""" start="00:11:39.800" video="mainVideo-project" id="subtitle"]]
[[!template text="""addition to the table of contents, the log file, of course,""" start="00:11:44.760" video="mainVideo-project" id="subtitle"]]
[[!template text="""will support various graphical objects like images,""" start="00:11:48.520" video="mainVideo-project" id="subtitle"]]
[[!template text="""tables, equations, code listings. I also have added""" start="00:11:51.560" video="mainVideo-project" id="subtitle"]]
[[!template text="""LaTeX support for an index, a list of acronyms, glossary,""" start="00:11:56.040" video="mainVideo-project" id="subtitle"]]
[[!template text="""mathematical notation, and literature cited. It takes no""" start="00:12:00.280" video="mainVideo-project" id="subtitle"]]
[[!template text="""effort to add these in, so why not have them available? These""" start="00:12:05.000" video="mainVideo-project" id="subtitle"]]
[[!template text="""features are also available in the annotated bibliography""" start="00:12:10.040" video="mainVideo-project" id="subtitle"]]
[[!template text="""template, which helps support making that annotated""" start="00:12:12.920" video="mainVideo-project" id="subtitle"]]
[[!template text="""bibliography far more relevant and interesting.""" start="00:12:16.360" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Four workflows""" start="00:12:21.400" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""This shows a list of four workflows that I'm going to""" start="00:12:21.400" video="mainVideo-project" id="subtitle"]]
[[!template text="""discuss, since I don't have time to go through each""" start="00:12:28.080" video="mainVideo-project" id="subtitle"]]
[[!template text="""of the items. Obviously, project initiation""" start="00:12:32.600" video="mainVideo-project" id="subtitle"]]
[[!template text="""occurs on day one. If I have a three- or four-hour block of time,""" start="00:12:36.280" video="mainVideo-project" id="subtitle"]]
[[!template text="""that's sufficient to finish project initiation. Then""" start="00:12:39.720" video="mainVideo-project" id="subtitle"]]
[[!template text="""the daily workflow is obviously what occurs every day to""" start="00:12:45.760" video="mainVideo-project" id="subtitle"]]
[[!template text="""move the project forward. The periodic assessments are""" start="00:12:49.360" video="mainVideo-project" id="subtitle"]]
[[!template text="""done on a monthly or weekly basis, generally on the weekly""" start="00:12:54.240" video="mainVideo-project" id="subtitle"]]
[[!template text="""basis as the submission deadline approaches. Then""" start="00:12:57.080" video="mainVideo-project" id="subtitle"]]
[[!template text="""after you have received the galley proofs and sent them""" start="00:13:02.560" video="mainVideo-project" id="subtitle"]]
[[!template text="""back, there are a few chores that need to be done in terms of""" start="00:13:05.640" video="mainVideo-project" id="subtitle"]]
[[!template text="""project closeout. This is an example of a protocol""" start="00:13:09.840" video="mainVideo-project" id="subtitle"]]
[[!template text="""that could be followed to do that, and an example of the kinds""" start="00:13:13.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""of more or less appendix material that could be included in""" start="00:13:18.520" video="mainVideo-project" id="subtitle"]]
[[!template text="""the writing log to help get these things done.""" start="00:13:21.800" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Project initiation workflow""" start="00:13:28.080" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""This shows a project initiation section of the workflow.""" start="00:13:28.080" video="mainVideo-project" id="subtitle"]]
[[!template text="""I go through a series of sections that include advice""" start="00:13:31.680" video="mainVideo-project" id="subtitle"]]
[[!template text="""about what I need to do to complete each section. The""" start="00:13:39.120" video="mainVideo-project" id="subtitle"]]
[[!template text="""rationale section asks me like, why are you doing this? Why""" start="00:13:45.720" video="mainVideo-project" id="subtitle"]]
[[!template text="""should you do this? Why not somebody else? Those sort of""" start="00:13:50.760" video="mainVideo-project" id="subtitle"]]
[[!template text="""fundamental questions. Then I have""" start="00:13:54.320" video="mainVideo-project" id="subtitle"]]
[[!template text="""a drawer labeled guidance that I have,""" start="00:14:01.288" video="mainVideo-project" id="subtitle"]]
[[!template text="""and that headline immediately above,""" start="00:14:05.330" video="mainVideo-project" id="subtitle"]]
[[!template text="""I have this :noexport: keyword so that guidance is not""" start="00:14:07.191" video="mainVideo-project" id="subtitle"]]
[[!template text="""written out upon export to the PDF unless you want it. If you""" start="00:14:11.840" video="mainVideo-project" id="subtitle"]]
[[!template text="""want it, you have to remove the :noexport: tag. Then I have the""" start="00:14:17.040" video="mainVideo-project" id="subtitle"]]
[[!template text="""response to these questions--in this case, a list of""" start="00:14:20.440" video="mainVideo-project" id="subtitle"]]
[[!template text="""journals that I'm targeting for submission of this review""" start="00:14:25.200" video="mainVideo-project" id="subtitle"]]
[[!template text="""article. I have a plan B journal picked out in case the""" start="00:14:29.200" video="mainVideo-project" id="subtitle"]]
[[!template text="""editors decide to reject it. Having a plan B journal""" start="00:14:32.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""picked out is a decision you can make at the time of""" start="00:14:43.400" video="mainVideo-project" id="subtitle"]]
[[!template text="""submission, so that you're prepared to move quickly if the""" start="00:14:48.000" video="mainVideo-project" id="subtitle"]]
[[!template text="""article is rejected.""" start="00:14:55.960" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Daily workflow""" start="00:14:56.960" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""This shows the daily workflow section. Each entry has a""" start="00:14:56.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""date. I sometimes annotate the dated entries with a small""" start="00:15:04.640" video="mainVideo-project" id="subtitle"]]
[[!template text="""phrase to highlight certain events. Within a given entry,""" start="00:15:09.440" video="mainVideo-project" id="subtitle"]]
[[!template text="""I'll have a list of accomplishments. That's sort of the bare""" start="00:15:14.480" video="mainVideo-project" id="subtitle"]]
[[!template text="""minimum of what I include. This just demonstrates how""" start="00:15:17.320" video="mainVideo-project" id="subtitle"]]
[[!template text="""relatively brief these entries are. Just whatever""" start="00:15:20.720" video="mainVideo-project" id="subtitle"]]
[[!template text="""distinct accomplishments were made are listed.""" start="00:15:25.640" video="mainVideo-project" id="subtitle"]]
[[!template text="""Sometimes I'll include the goals for that day.""" start="00:15:30.600" video="mainVideo-project" id="subtitle"]]
[[!template text="""I'll always include the correspondence related to the""" start="00:15:37.240" video="mainVideo-project" id="subtitle"]]
[[!template text="""project. I'll copy and paste an email into a quote""" start="00:15:40.600" video="mainVideo-project" id="subtitle"]]
[[!template text="""environment from LaTeX.""" start="00:15:44.440" video="mainVideo-project" id="subtitle"]]
[[!template text="""I have a snippet template for auto-generating these""" start="00:15:49.720" video="mainVideo-project" id="subtitle"]]
[[!template text="""entries. It will insert the date, for example, in the""" start="00:15:54.320" video="mainVideo-project" id="subtitle"]]
[[!template text="""subheading. Then below that, I'll have the next action,""" start="00:15:59.920" video="mainVideo-project" id="subtitle"]]
[[!template text="""following David Allen's Getting Things Done approach""" start="00:16:04.240" video="mainVideo-project" id="subtitle"]]
[[!template text="""where you identify the next thing that needs to be done.""" start="00:16:06.920" video="mainVideo-project" id="subtitle"]]
[[!template text="""That may have come from a to-do list that's indicated below that.""" start="00:16:08.551" video="mainVideo-project" id="subtitle"]]
[[!template text="""Beyond that, there's sections for some writing""" start="00:16:14.760" video="mainVideo-project" id="subtitle"]]
[[!template text="""accountability, and then a reminder to go about updating""" start="00:16:19.040" video="mainVideo-project" id="subtitle"]]
[[!template text="""your Zettelkasten and Org-roam if you have come across any""" start="00:16:23.920" video="mainVideo-project" id="subtitle"]]
[[!template text="""nuggets of knowledge you want to add to your Org-roam. Then""" start="00:16:28.920" video="mainVideo-project" id="subtitle"]]
[[!template text="""below that, there's another section for the storage of""" start="00:16:32.360" video="mainVideo-project" id="subtitle"]]
[[!template text="""additions to be made to the manuscript. Maybe they're not""" start="00:16:39.000" video="mainVideo-project" id="subtitle"]]
[[!template text="""ready to go yet, so this provides a spot for them to be""" start="00:16:42.920" video="mainVideo-project" id="subtitle"]]
[[!template text="""incubated, a sandbox, if you will, where you have room to""" start="00:16:47.600" video="mainVideo-project" id="subtitle"]]
[[!template text="""develop them further before they're ready to be""" start="00:16:51.600" video="mainVideo-project" id="subtitle"]]
[[!template text="""transferred over to the main manuscript. I also have a""" start="00:16:53.240" video="mainVideo-project" id="subtitle"]]
[[!template text="""section there too for the incubation of new ideas for new""" start="00:16:58.400" video="mainVideo-project" id="subtitle"]]
[[!template text="""projects.""" start="00:17:04.240" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Metadata and metacognition""" start="00:17:05.751" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""So this kind of metadata and metacognition about""" start="00:17:05.751" video="mainVideo-project" id="subtitle"]]
[[!template text="""the project are often stored in commented out regions or in""" start="00:17:09.640" video="mainVideo-project" id="subtitle"]]
[[!template text="""comments, like MS Word documents. These are often stripped""" start="00:17:13.760" video="mainVideo-project" id="subtitle"]]
[[!template text="""out in the rush to submit the manuscript, and they're quite""" start="00:17:18.040" video="mainVideo-project" id="subtitle"]]
[[!template text="""often lost. Yet they can be invaluable, not only for the""" start="00:17:21.840" video="mainVideo-project" id="subtitle"]]
[[!template text="""preparation of future manuscripts, but they can be very""" start="00:17:26.480" video="mainVideo-project" id="subtitle"]]
[[!template text="""invaluable for responding to critiques by reviewers. This""" start="00:17:30.240" video="mainVideo-project" id="subtitle"]]
[[!template text="""writing log provides ample room for the safe storage of such""" start="00:17:38.280" video="mainVideo-project" id="subtitle"]]
[[!template text="""information, such knowledge.""" start="00:17:42.840" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Periodic assessment workflow""" start="00:17:48.885" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""Then periodically, every several months or weeks,""" start="00:17:48.885" video="mainVideo-project" id="subtitle"]]
[[!template text="""we'll carry out an assessment of""" start="00:17:53.667" video="mainVideo-project" id="subtitle"]]
[[!template text="""the project. We go through a checklist for the completion of""" start="00:17:55.160" video="mainVideo-project" id="subtitle"]]
[[!template text="""the manuscript. We also have a timeline with milestones""" start="00:18:02.120" video="mainVideo-project" id="subtitle"]]
[[!template text="""identified.""" start="00:18:06.320" video="mainVideo-project" id="subtitle"]]
[[!template text="""Of course, Org has these wonderful tables that are very""" start="00:18:07.440" video="mainVideo-project" id="subtitle"]]
[[!template text="""dynamic. If you need a wider column to accommodate a new""" start="00:18:13.760" video="mainVideo-project" id="subtitle"]]
[[!template text="""entry, it self-adjusts. These self-adjusting tables""" start="00:18:18.880" video="mainVideo-project" id="subtitle"]]
[[!template text="""are one reason why I was attracted to Org mode, because coming""" start="00:18:23.360" video="mainVideo-project" id="subtitle"]]
[[!template text="""from LaTex, where trying to make changes to""" start="00:18:29.640" video="mainVideo-project" id="subtitle"]]
[[!template text="""tables is quite difficult. Below that, there's a""" start="00:18:33.040" video="mainVideo-project" id="subtitle"]]
[[!template text="""section to make assessments. There are four questions that""" start="00:18:37.000" video="mainVideo-project" id="subtitle"]]
[[!template text="""I address about the status of the project. One really good""" start="00:18:39.640" video="mainVideo-project" id="subtitle"]]
[[!template text="""question is, why can't you submit this project today?""" start="00:18:43.840" video="mainVideo-project" id="subtitle"]]
[[!template text="""What's holding it back?""" start="00:18:46.560" video="mainVideo-project" id="subtitle"]]
[[!template text="""Other such existential questions""" start="00:18:49.351" video="mainVideo-project" id="subtitle"]]
[[!template text="""are important to ask from time to time.""" start="00:18:55.215" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Project closeout workflow""" start="00:18:56.960" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""Then finally, the project closeout workflow.""" start="00:18:56.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""So this is in the form of a checklist.""" start="00:19:03.634" video="mainVideo-project" id="subtitle"]]
[[!template text="""This checklist in the main template""" start="00:19:06.478" video="mainVideo-project" id="subtitle"]]
[[!template text="""is already included, but you could include it from an""" start="00:19:09.080" video="mainVideo-project" id="subtitle"]]
[[!template text="""external file. Of course, that checklist will be only in""" start="00:19:13.480" video="mainVideo-project" id="subtitle"]]
[[!template text="""the PDF when it's included in this fashion. It won't be in the""" start="00:19:19.960" video="mainVideo-project" id="subtitle"]]
[[!template text="""Org file, but you can view that checklist by clicking on its""" start="00:19:22.800" video="mainVideo-project" id="subtitle"]]
[[!template text="""file path. It serves as a link that will open up in an Org""" start="00:19:27.600" video="mainVideo-project" id="subtitle"]]
[[!template text="""buffer. The advantage of taking a modular approach to this""" start="00:19:32.720" video="mainVideo-project" id="subtitle"]]
[[!template text="""sort of appendix material is that you can update your""" start="00:19:40.120" video="mainVideo-project" id="subtitle"]]
[[!template text="""protocols and the updated protocols will be available to""" start="00:19:43.000" video="mainVideo-project" id="subtitle"]]
[[!template text="""all log files across all projects.""" start="00:19:46.400" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Conclusions""" start="00:19:49.640" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""In conclusion, this project-specific log file helps""" start="00:19:49.640" video="mainVideo-project" id="subtitle"]]
[[!template text="""narrow the focus on one project. It provides space to harbor""" start="00:19:56.320" video="mainVideo-project" id="subtitle"]]
[[!template text="""the thinking about that project, and it helps support the""" start="00:20:02.760" video="mainVideo-project" id="subtitle"]]
[[!template text="""project initiation and sustain its momentum and""" start="00:20:08.680" video="mainVideo-project" id="subtitle"]]
[[!template text="""facilitate its completion. The side effects of using this""" start="00:20:14.000" video="mainVideo-project" id="subtitle"]]
[[!template text="""log file for one project is that it dampens the fear of""" start="00:20:21.800" video="mainVideo-project" id="subtitle"]]
[[!template text="""forgetting, the fear of losing momentum, which inhibits us""" start="00:20:27.400" video="mainVideo-project" id="subtitle"]]
[[!template text="""working on more than one project in a given day.""" start="00:20:31.440" video="mainVideo-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Acknowledgements""" start="00:20:34.520" video="mainVideo-project" id="subtitle"]]</div>[[!template text="""I would like to thank my friends at the Oklahoma Data Science""" start="00:20:34.520" video="mainVideo-project" id="subtitle"]]
[[!template text="""Workshop. We hold this workshop every third Friday at noon""" start="00:20:42.560" video="mainVideo-project" id="subtitle"]]
[[!template text="""central time by Zoom. It's open to participation by people""" start="00:20:47.800" video="mainVideo-project" id="subtitle"]]
[[!template text="""from all around the world. Send me an email if you are""" start="00:20:53.760" video="mainVideo-project" id="subtitle"]]
[[!template text="""interested in the applications of computing to scientific""" start="00:20:56.880" video="mainVideo-project" id="subtitle"]]
[[!template text="""research. I participate occasionally in these Emacs""" start="00:21:01.520" video="mainVideo-project" id="subtitle"]]
[[!template text="""meetups, and I have shared this writing blog with members of""" start="00:21:06.800" video="mainVideo-project" id="subtitle"]]
[[!template text="""the UK Research Software Engineer group through the Emacs""" start="00:21:11.360" video="mainVideo-project" id="subtitle"]]
[[!template text="""Research Slack channel. My efforts are supported by""" start="00:21:18.720" video="mainVideo-project" id="subtitle"]]
[[!template text="""funding from these grants. I'll be happy to take any""" start="00:21:24.280" video="mainVideo-project" id="subtitle"]]
[[!template text="""questions.""" start="00:21:28.800" video="mainVideo-project" id="subtitle"]]
</div>
Captioner: sachac
<div class="transcript transcript-qanda"><a name="project-qanda-transcript"></a><h1>Q&A transcript (unedited)</h1>
[[!template text="""And about, I think we are live. Okay, hi again everyone. And hi""" start="00:00:00.000" video="qanda-project" id="subtitle"]]
[[!template text="""Blaine, how are you doing? Fantastic, happy to be here.""" start="00:00:10.320" video="qanda-project" id="subtitle"]]
[[!template text="""Yeah, it's good to see you again. We were just reminiscing in""" start="00:00:14.680" video="qanda-project" id="subtitle"]]
[[!template text="""a room right now that it's almost been a year exactly since we""" start="00:00:17.480" video="qanda-project" id="subtitle"]]
[[!template text="""last spoke because you were at the EmacsConf last year. That's""" start="00:00:20.240" video="qanda-project" id="subtitle"]]
[[!template text="""right. This is great fun. Yeah, well, thank you for coming in""" start="00:00:23.880" video="qanda-project" id="subtitle"]]
[[!template text="""and especially every time you come with a very well-crafted""" start="00:00:28.560" video="qanda-project" id="subtitle"]]
[[!template text="""talks talking about, you know, what you do with Org Mode, Org""" start="00:00:33.080" video="qanda-project" id="subtitle"]]
[[!template text="""Roam and whatever. And it's really fascinating as someone""" start="00:00:37.280" video="qanda-project" id="subtitle"]]
[[!template text="""who develops and use those tools constantly to see you put""" start="00:00:41.040" video="qanda-project" id="subtitle"]]
[[!template text="""them in action so well. Because you, you know, the way you""" start="00:00:43.480" video="qanda-project" id="subtitle"]]
[[!template text="""talk about your research, it really reminds me on what we""" start="00:00:46.200" video="qanda-project" id="subtitle"]]
[[!template text="""were, sorry, I've got elves talking in my ears and I'm still""" start="00:00:49.720" video="qanda-project" id="subtitle"]]
[[!template text="""not used to it at this point. But it's really nice to see you""" start="00:00:53.280" video="qanda-project" id="subtitle"]]
[[!template text="""put all of this together into a very cohesive way for you to""" start="00:00:56.640" video="qanda-project" id="subtitle"]]
[[!template text="""write. Okay, let me just share my screen and I'll be sharing""" start="00:01:00.360" video="qanda-project" id="subtitle"]]
[[!template text="""the questions. Where is it? All right, take presenter. And I""" start="00:01:03.760" video="qanda-project" id="subtitle"]]
[[!template text="""will be sharing the questions. All right. Can you see my""" start="00:01:11.880" video="qanda-project" id="subtitle"]]
[[!template text="""screen all right? I can, yes. OK, cool. So we move straight to""" start="00:01:18.080" video="qanda-project" id="subtitle"]]
[[!template text="""the question. Let me just check on the time. I think we have""" start="00:01:24.160" video="qanda-project" id="subtitle"]]
[[!template text="""about until 10.20, which is in 17 minutes. So let's take""" start="00:01:27.000" video="qanda-project" id="subtitle"]]
[[!template text="""about 10 to 15 minutes of question time. And if people have""" start="00:01:32.000" video="qanda-project" id="subtitle"]]
[[!template text="""joined on BBB, we'll also be taking questions live. All""" start="00:01:35.640" video="qanda-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Q: what does 0573 means in your init. file name?""" start="00:01:38.600" video="qanda-project" id="subtitle"]]</div>[[!template text="""right. Starting with the first question, what does 0573""" start="00:01:38.600" video="qanda-project" id="subtitle"]]
[[!template text="""mean in your init file name? So this name is, you can think of""" start="00:01:44.080" video="qanda-project" id="subtitle"]]
[[!template text="""it as a prefix or a stub. It's an index number that I utilize""" start="00:01:49.720" video="qanda-project" id="subtitle"]]
[[!template text="""before a short name that describes the project. So I have all""" start="00:01:55.880" video="qanda-project" id="subtitle"]]
[[!template text="""my projects in my home directory, and I just start typing the""" start="00:02:01.480" video="qanda-project" id="subtitle"]]
[[!template text="""project number or index number. in the terminal and I have""" start="00:02:06.120" video="qanda-project" id="subtitle"]]
[[!template text="""autocompletion available through oh my ZSH package. So I""" start="00:02:12.200" video="qanda-project" id="subtitle"]]
[[!template text="""just hit tab and it autocompletes the name of the project and""" start="00:02:17.880" video="qanda-project" id="subtitle"]]
[[!template text="""pops me into that folder. And so I find this to be very easy for""" start="00:02:21.200" video="qanda-project" id="subtitle"]]
[[!template text="""navigating between projects. As you saw, I work on multiple""" start="00:02:26.320" video="qanda-project" id="subtitle"]]
[[!template text="""projects in a given day and this helps me move about. And I""" start="00:02:30.920" video="qanda-project" id="subtitle"]]
[[!template text="""also use this number at the start of the log file name and at""" start="00:02:37.400" video="qanda-project" id="subtitle"]]
[[!template text="""the start of the manuscript name and the start of the, I also""" start="00:02:45.640" video="qanda-project" id="subtitle"]]
[[!template text="""have an annotated bibliography. So all those files are""" start="00:02:50.640" video="qanda-project" id="subtitle"]]
[[!template text="""identified just in case I accidentally save one to the wrong""" start="00:02:54.080" video="qanda-project" id="subtitle"]]
[[!template text="""folder. I can avoid, I can sort them out later. Great""" start="00:02:59.360" video="qanda-project" id="subtitle"]]
[[!template text="""question. Thank you. Next question, which I think is going""" start="00:03:04.640" video="qanda-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Q: What does Zettelkasten mean?""" start="00:03:09.520" video="qanda-project" id="subtitle"]]</div>[[!template text="""to be a long one. What does Zettelkasten mean? So this means""" start="00:03:09.520" video="qanda-project" id="subtitle"]]
[[!template text="""like, I guess, notebox, something along those lines. You""" start="00:03:16.160" video="qanda-project" id="subtitle"]]
[[!template text="""can think of it as a- Yeah, spitbox usually, that's the word""" start="00:03:20.720" video="qanda-project" id="subtitle"]]
[[!template text="""we use. Thank you. So this is a kind of like a card catalog""" start="00:03:24.880" video="qanda-project" id="subtitle"]]
[[!template text="""system that when it was done on paper, and now it's being done""" start="00:03:29.160" video="qanda-project" id="subtitle"]]
[[!template text="""electronically through various software packages. So in""" start="00:03:33.360" video="qanda-project" id="subtitle"]]
[[!template text="""the Emacs world, org-roam is a one of several alternate""" start="00:03:38.680" video="qanda-project" id="subtitle"]]
[[!template text="""packages that you can use. Prot has the note and there's a""" start="00:03:43.200" video="qanda-project" id="subtitle"]]
[[!template text="""couple others. So, idea is that you create a note, usually a,""" start="00:03:48.000" video="qanda-project" id="subtitle"]]
[[!template text="""ultimately what you want to do is create a nugget of""" start="00:03:59.080" video="qanda-project" id="subtitle"]]
[[!template text="""knowledge from your reading that you've done. and you add it""" start="00:04:04.240" video="qanda-project" id="subtitle"]]
[[!template text="""to this note system in such a way that you can recover it more""" start="00:04:09.480" video="qanda-project" id="subtitle"]]
[[!template text="""easily than what had to be done in the old days with index""" start="00:04:15.880" video="qanda-project" id="subtitle"]]
[[!template text="""cards.""" start="00:04:20.160" video="qanda-project" id="subtitle"]]
[[!template text="""So you set up backlinks and then you can use the search""" start="00:04:23.720" video="qanda-project" id="subtitle"]]
[[!template text="""features in Org Roam to filter and find the notes again in the""" start="00:04:28.200" video="qanda-project" id="subtitle"]]
[[!template text="""future. Org Roam has a wonderful GUI interface where you can""" start="00:04:34.920" video="qanda-project" id="subtitle"]]
[[!template text="""display it as a knowledge graph, essentially, all your""" start="00:04:43.080" video="qanda-project" id="subtitle"]]
[[!template text="""nodes and the backlinks between them. I set mine up in a""" start="00:04:47.080" video="qanda-project" id="subtitle"]]
[[!template text="""rather hierarchical fashion to, at least right now, it's""" start="00:04:52.480" video="qanda-project" id="subtitle"]]
[[!template text="""pretty hierarchical at this point, but it may become more""" start="00:04:56.640" video="qanda-project" id="subtitle"]]
[[!template text="""disorganized over time. But I find it I'm sort of a visual""" start="00:05:01.960" video="qanda-project" id="subtitle"]]
[[!template text="""person. I like mind maps a lot. I find that this visual""" start="00:05:07.680" video="qanda-project" id="subtitle"]]
[[!template text="""display of my Zettelkasten is similar, resembles to a""" start="00:05:12.520" video="qanda-project" id="subtitle"]]
[[!template text="""certain degree, a mind map.""" start="00:05:16.920" video="qanda-project" id="subtitle"]]
[[!template text="""Okay, well, that's a pretty good definition of what""" start="00:05:22.440" video="qanda-project" id="subtitle"]]
[[!template text="""Zettelkasten is, and you also went on to specify what it""" start="00:05:25.600" video="qanda-project" id="subtitle"]]
[[!template text="""means inside Emacs, so thank you. I think that clarifies it""" start="00:05:28.840" video="qanda-project" id="subtitle"]]
[[!template text="""for the two people in the room who still do not know, after""" start="00:05:31.600" video="qanda-project" id="subtitle"]]
[[!template text="""attending four Emacs conferences, what is the""" start="00:05:34.200" video="qanda-project" id="subtitle"]]
[[!template text="""Zettelkasten method. Moving on to the next question,""" start="00:05:36.760" video="qanda-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Q: How many papers are you writing at the same time?""" start="00:05:41.760" video="qanda-project" id="subtitle"]]</div>[[!template text="""how many papers are you writing at the same time? Because I""" start="00:05:41.760" video="qanda-project" id="subtitle"]]
[[!template text="""believe you mentioned that you had concurrent papers being""" start="00:05:44.400" video="qanda-project" id="subtitle"]]
[[!template text="""written during your presentation. So I'm probably working""" start="00:05:47.760" video="qanda-project" id="subtitle"]]
[[!template text="""on, in a given year, somewhere between 10 and 15. How many do I""" start="00:05:51.960" video="qanda-project" id="subtitle"]]
[[!template text="""get published in a year? Probably anywhere from one to four""" start="00:05:57.840" video="qanda-project" id="subtitle"]]
[[!template text="""or five. So these papers often, the work on them spans""" start="00:06:03.200" video="qanda-project" id="subtitle"]]
[[!template text="""multiple years. will start working on a paper when I begin,""" start="00:06:08.640" video="qanda-project" id="subtitle"]]
[[!template text="""before I begin the experiments, ideally, because I'm""" start="00:06:13.560" video="qanda-project" id="subtitle"]]
[[!template text="""trying to do hypothesis-driven research. And so that helps""" start="00:06:16.520" video="qanda-project" id="subtitle"]]
[[!template text="""define the scope of the project and limit the number of""" start="00:06:23.440" video="qanda-project" id="subtitle"]]
[[!template text="""rabbit holes I go down. So, but through the nature of the""" start="00:06:27.560" video="qanda-project" id="subtitle"]]
[[!template text="""work, there's a lot of waiting required in my case for""" start="00:06:32.960" video="qanda-project" id="subtitle"]]
[[!template text="""crystals to grow and then the opportunity to collect""" start="00:06:36.920" video="qanda-project" id="subtitle"]]
[[!template text="""diffraction data on the crystals. And then the structures""" start="00:06:39.680" video="qanda-project" id="subtitle"]]
[[!template text="""have to be determined and refined and analyzed and then""" start="00:06:43.880" video="qanda-project" id="subtitle"]]
[[!template text="""deposited, figures have to be made. So a lot of steps are""" start="00:06:48.560" video="qanda-project" id="subtitle"]]
[[!template text="""involved that those take generally span, that work can span""" start="00:06:52.800" video="qanda-project" id="subtitle"]]
[[!template text="""several years.""" start="00:06:57.760" video="qanda-project" id="subtitle"]]
[[!template text="""In a given day, I try to work on two papers, ideally. I haven't""" start="00:07:02.560" video="qanda-project" id="subtitle"]]
[[!template text="""been doing so well lately over the past month.""" start="00:07:09.400" video="qanda-project" id="subtitle"]]
[[!template text="""In the past year, there was a couple of days where I worked on""" start="00:07:12.280" video="qanda-project" id="subtitle"]]
[[!template text="""five papers. There was something like a half dozen where I""" start="00:07:19.760" video="qanda-project" id="subtitle"]]
[[!template text="""worked on four, about 40 days where I worked on three, and I""" start="00:07:24.240" video="qanda-project" id="subtitle"]]
[[!template text="""think there was something like about 100 days where I worked""" start="00:07:29.160" video="qanda-project" id="subtitle"]]
[[!template text="""on two papers a day, about 140 days where I just worked on one.""" start="00:07:33.480" video="qanda-project" id="subtitle"]]
[[!template text="""So my idea is, I've been sort of developing more recently is""" start="00:07:41.000" video="qanda-project" id="subtitle"]]
[[!template text="""that I'll start doing like the generative writing on a paper""" start="00:07:45.720" video="qanda-project" id="subtitle"]]
[[!template text="""at the beginning of the day on the paper project I'm most""" start="00:07:49.160" video="qanda-project" id="subtitle"]]
[[!template text="""excited about. I tried to, I'm a night owl. I tried to do this""" start="00:07:51.960" video="qanda-project" id="subtitle"]]
[[!template text="""work early in the morning when I'm half awake to try to""" start="00:07:55.440" video="qanda-project" id="subtitle"]]
[[!template text="""overcome my internal editor that inhibits me from writing""" start="00:08:00.520" video="qanda-project" id="subtitle"]]
[[!template text="""prose freely. And so the idea is just to get a lot of words out,""" start="00:08:03.440" video="qanda-project" id="subtitle"]]
[[!template text="""worry about editing them later. And then after about three""" start="00:08:09.880" video="qanda-project" id="subtitle"]]
[[!template text="""hours, I'll switch to the second project that I'm less""" start="00:08:14.640" video="qanda-project" id="subtitle"]]
[[!template text="""excited about. And I can go for another 90 minutes to two""" start="00:08:18.000" video="qanda-project" id="subtitle"]]
[[!template text="""hours on that project. So I build up a lot of momentum, and""" start="00:08:22.000" video="qanda-project" id="subtitle"]]
[[!template text="""then I do the switch. And I find that switch to be relatively""" start="00:08:27.720" video="qanda-project" id="subtitle"]]
[[!template text="""easy. So my process will be On project A, make some final""" start="00:08:31.960" video="qanda-project" id="subtitle"]]
[[!template text="""notes about what was accomplished in the writing log. Then""" start="00:08:37.360" video="qanda-project" id="subtitle"]]
[[!template text="""I'll switch over to the writing log for the project B, and""" start="00:08:42.360" video="qanda-project" id="subtitle"]]
[[!template text="""I'll go to the diary section at the beginning. I'll make a""" start="00:08:48.000" video="qanda-project" id="subtitle"]]
[[!template text="""little to-do list and maybe look at the prior entry in the""" start="00:08:51.360" video="qanda-project" id="subtitle"]]
[[!template text="""diary if I need to reboot my memory. And then I'll move on to""" start="00:08:57.280" video="qanda-project" id="subtitle"]]
[[!template text="""the manuscript and go for 90 minutes or two hours.""" start="00:09:03.200" video="qanda-project" id="subtitle"]]
[[!template text="""Generally, you're only good for somewhere between four and""" start="00:09:07.920" video="qanda-project" id="subtitle"]]
[[!template text="""a half, five and a half hours. If you try to write in a""" start="00:09:12.480" video="qanda-project" id="subtitle"]]
[[!template text="""generative fashion much longer than that, your""" start="00:09:15.360" video="qanda-project" id="subtitle"]]
[[!template text="""productivity goes down quite a bit. You're better off""" start="00:09:17.840" video="qanda-project" id="subtitle"]]
[[!template text="""switching to a completely different activity and then""" start="00:09:21.280" video="qanda-project" id="subtitle"]]
[[!template text="""using your experience doing that writing to essentially""" start="00:09:24.040" video="qanda-project" id="subtitle"]]
[[!template text="""launch background jobs in your subconscious. And so you""" start="00:09:30.160" video="qanda-project" id="subtitle"]]
[[!template text="""will get those ideas in the shower the next morning.""" start="00:09:33.200" video="qanda-project" id="subtitle"]]
[[!template text="""I find it really funny because I also relate. I've also""" start="00:09:37.480" video="qanda-project" id="subtitle"]]
[[!template text="""worked a lot on organization as linked to paper writing but""" start="00:09:44.520" video="qanda-project" id="subtitle"]]
[[!template text="""also to on my work as a developer and it's funny how you refer""" start="00:09:48.920" video="qanda-project" id="subtitle"]]
[[!template text="""to your ability to think about something in very similar""" start="00:09:53.720" video="qanda-project" id="subtitle"]]
[[!template text="""terms to how a computer would think about something. You've""" start="00:09:57.000" video="qanda-project" id="subtitle"]]
[[!template text="""mentioned in your presentation the cost of context""" start="00:09:59.400" video="qanda-project" id="subtitle"]]
[[!template text="""switching between different things but it's also""" start="00:10:02.400" video="qanda-project" id="subtitle"]]
[[!template text="""something that we use in computing when a processor needs to""" start="00:10:04.920" video="qanda-project" id="subtitle"]]
[[!template text="""be thinking about something else, well, it has a cost. And""" start="00:10:08.120" video="qanda-project" id="subtitle"]]
[[!template text="""it's really fun for me to hear you talk about, oh, I need to""" start="00:10:11.720" video="qanda-project" id="subtitle"]]
[[!template text="""select two topics, but no longer than 90 minutes per topic,""" start="00:10:15.360" video="qanda-project" id="subtitle"]]
[[!template text="""because it's really about maximizing your output for""" start="00:10:19.160" video="qanda-project" id="subtitle"]]
[[!template text="""creativity. And overall, your entire chat, your entire""" start="00:10:21.320" video="qanda-project" id="subtitle"]]
[[!template text="""presentation here is about really maximizing the""" start="00:10:25.240" video="qanda-project" id="subtitle"]]
[[!template text="""engagement that you have between outputs and your""" start="00:10:28.520" video="qanda-project" id="subtitle"]]
[[!template text="""cognition. And I really find this amazing how down to the T""" start="00:10:32.960" video="qanda-project" id="subtitle"]]
[[!template text="""you've managed to do this. And it actually leads me to""" start="00:10:37.160" video="qanda-project" id="subtitle"]]
[[!template text="""another question which is being asked of you, which is,""" start="00:10:40.280" video="qanda-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Q: How you capture those ideas when when you are away from Emacs?""" start="00:10:42.680" video="qanda-project" id="subtitle"]]</div>[[!template text="""how do you capture those ideas when you are away from Emacs? And""" start="00:10:42.680" video="qanda-project" id="subtitle"]]
[[!template text="""perhaps not only those you have in the showers, but also""" start="00:10:45.960" video="qanda-project" id="subtitle"]]
[[!template text="""elsewhere. So that's a great question. Over the past year, I""" start="00:10:48.000" video="qanda-project" id="subtitle"]]
[[!template text="""actually, last January, upon recommendation of a senior""" start="00:10:53.920" video="qanda-project" id="subtitle"]]
[[!template text="""colleague, I bought a digital voice recorder for $85 from""" start="00:10:59.240" video="qanda-project" id="subtitle"]]
[[!template text="""Sony, and it's the best investment I've made in a very long""" start="00:11:05.400" video="qanda-project" id="subtitle"]]
[[!template text="""time. other than my laptop computer, because I then record""" start="00:11:10.280" video="qanda-project" id="subtitle"]]
[[!template text="""my thoughts. So I have a half hour commute. And to me, that's""" start="00:11:16.400" video="qanda-project" id="subtitle"]]
[[!template text="""largely a waste of time. I wish I lived a lot closer to work.""" start="00:11:21.440" video="qanda-project" id="subtitle"]]
[[!template text="""But I use that time to generate ideas. So maybe I'll start my""" start="00:11:25.360" video="qanda-project" id="subtitle"]]
[[!template text="""day at home for 90 minutes, worked on paper A, and then I might""" start="00:11:33.680" video="qanda-project" id="subtitle"]]
[[!template text="""try to prime my mind about project B, or I might still have""" start="00:11:40.560" video="qanda-project" id="subtitle"]]
[[!template text="""ideas that are flowing about project A. And I'll record""" start="00:11:44.800" video="qanda-project" id="subtitle"]]
[[!template text="""those in the digital voice recorder. And then when I get to""" start="00:11:48.200" video="qanda-project" id="subtitle"]]
[[!template text="""the lab, I'll transfer the audio file to my computer, and""" start="00:11:51.440" video="qanda-project" id="subtitle"]]
[[!template text="""I'll transcribe it using a whisper. So I've set up some""" start="00:11:54.600" video="qanda-project" id="subtitle"]]
[[!template text="""Python scripts and bash functions to go through and I""" start="00:12:00.160" video="qanda-project" id="subtitle"]]
[[!template text="""convert all the sentences into one sentence per line""" start="00:12:03.760" video="qanda-project" id="subtitle"]]
[[!template text="""because that's the way I like to write and edit things. And so""" start="00:12:11.000" video="qanda-project" id="subtitle"]]
[[!template text="""it does all this pre-processing for me. And I have this""" start="00:12:16.360" video="qanda-project" id="subtitle"]]
[[!template text="""transcript that's in pretty good shape. I don't have to do""" start="00:12:19.680" video="qanda-project" id="subtitle"]]
[[!template text="""very much editing. And I'll then copy that over and work on""" start="00:12:23.280" video="qanda-project" id="subtitle"]]
[[!template text="""it, clean it up, and pluck out the ideas that I think might be""" start="00:12:29.160" video="qanda-project" id="subtitle"]]
[[!template text="""useful. Unfortunately, I'm not very I'm not away from my""" start="00:12:33.080" video="qanda-project" id="subtitle"]]
[[!template text="""computer that much. I'm in front of it, 12, 14 hours a day. So""" start="00:12:40.440" video="qanda-project" id="subtitle"]]
[[!template text="""when I'm teaching, when I'm in seminar, other committee""" start="00:12:47.960" video="qanda-project" id="subtitle"]]
[[!template text="""meetings, traveling, then I'll capture ideas on paper. I""" start="00:12:53.040" video="qanda-project" id="subtitle"]]
[[!template text="""don't have a cell phone. I'm trying to be the last human on""" start="00:12:58.360" video="qanda-project" id="subtitle"]]
[[!template text="""earth without a cell phone. I think I would be so distracted""" start="00:13:02.400" video="qanda-project" id="subtitle"]]
[[!template text="""by a cell phone. Worst person on the planet, I would be""" start="00:13:07.360" video="qanda-project" id="subtitle"]]
[[!template text="""totally focused on my cell phone if I had one. So I'm like one""" start="00:13:12.720" video="qanda-project" id="subtitle"]]
[[!template text="""of the few people left who can read a map. So I do run into some""" start="00:13:16.400" video="qanda-project" id="subtitle"]]
[[!template text="""difficulties hailing taxis and that sort of thing when I'm""" start="00:13:23.000" video="qanda-project" id="subtitle"]]
[[!template text="""traveling. So there are some downsides to not having a cell""" start="00:13:26.200" video="qanda-project" id="subtitle"]]
[[!template text="""phone, but these days. Yeah, but I think there's a pretty""" start="00:13:30.600" video="qanda-project" id="subtitle"]]
[[!template text="""significant upside because, you know, you talk about cell""" start="00:13:35.720" video="qanda-project" id="subtitle"]]
[[!template text="""phones here, but before you were talking about the 90""" start="00:13:38.640" video="qanda-project" id="subtitle"]]
[[!template text="""minutes of uninterrupted focus on a given topic. And I think""" start="00:13:41.000" video="qanda-project" id="subtitle"]]
[[!template text="""plenty of people would be envious of this ability to focus""" start="00:13:44.800" video="qanda-project" id="subtitle"]]
[[!template text="""for that long on a topic. And I guess if we are to thread the""" start="00:13:48.360" video="qanda-project" id="subtitle"]]
[[!template text="""needle here, well, the lack of cell phone might be for""" start="00:13:54.520" video="qanda-project" id="subtitle"]]
[[!template text="""something for this ability to focus. So take of this what you""" start="00:13:57.240" video="qanda-project" id="subtitle"]]
[[!template text="""will. True, I am a sucker for the web browser. I can get""" start="00:14:00.840" video="qanda-project" id="subtitle"]]
[[!template text="""distracted going down various rabbit holes thanks to""" start="00:14:06.800" video="qanda-project" id="subtitle"]]
[[!template text="""Google searches and that sort of thing. Likewise, email is""" start="00:14:11.760" video="qanda-project" id="subtitle"]]
[[!template text="""another tension grabber. So, there's those other battles I""" start="00:14:17.280" video="qanda-project" id="subtitle"]]
[[!template text="""have to fight too. So, right, that is a huge battle that all of""" start="00:14:22.400" video="qanda-project" id="subtitle"]]
[[!template text="""us face is developing focus and being able to maintain""" start="00:14:27.600" video="qanda-project" id="subtitle"]]
[[!template text="""focus. Right. So, we have about three more minutes of""" start="00:14:31.840" video="qanda-project" id="subtitle"]]
[[!template text="""questions. So, thank you so much already for answering many""" start="00:14:37.160" video="qanda-project" id="subtitle"]]
[[!template text="""questions. How about we do a quick fire for the remaining""" start="00:14:39.280" video="qanda-project" id="subtitle"]]
[[!template text="""questions and then maybe we will take a question from... from""" start="00:14:43.320" video="qanda-project" id="subtitle"]]
[[!template text="""here or in the room. So how about we go for the next one?""" start="00:14:47.080" video="qanda-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Q: What if an ideas does not belong to any current working manuscript?""" start="00:14:50.273" video="qanda-project" id="subtitle"]]</div>[[!template text="""What if an ID does not belong""" start="00:14:50.273" video="qanda-project" id="subtitle"]]
[[!template text="""to any current working manuscript? So I""" start="00:14:51.574" video="qanda-project" id="subtitle"]]
[[!template text="""have a sandbox area in the log file.""" start="00:14:55.200" video="qanda-project" id="subtitle"]]
[[!template text="""So if it's likely going to be related to something to a""" start="00:14:57.800" video="qanda-project" id="subtitle"]]
[[!template text="""certain degree, if the idea is totally unrelated to""" start="00:15:04.320" video="qanda-project" id="subtitle"]]
[[!template text="""anything I'm working on, then I will""" start="00:15:09.120" video="qanda-project" id="subtitle"]]
[[!template text="""I maintain a 700 through 750 words. I maintain a kind of a""" start="00:15:12.720" video="qanda-project" id="subtitle"]]
[[!template text="""external diary and I just capture those kind of ideas there.""" start="00:15:21.360" video="qanda-project" id="subtitle"]]
[[!template text="""So, I have access to a web interface to this big text area with""" start="00:15:26.720" video="qanda-project" id="subtitle"]]
[[!template text="""nothing in it. And I just dump ideas all day long in there. So,""" start="00:15:31.200" video="qanda-project" id="subtitle"]]
[[!template text="""and I save that away. I have that in a big LaTeX document""" start="00:15:37.080" video="qanda-project" id="subtitle"]]
[[!template text="""currently on Overleaf. but each day has its own page. And so""" start="00:15:42.800" video="qanda-project" id="subtitle"]]
[[!template text="""that information is captured and I can recover it. And maybe""" start="00:15:50.000" video="qanda-project" id="subtitle"]]
[[!template text="""it's gonna take me a week, a month, a year to take that idea and""" start="00:15:53.080" video="qanda-project" id="subtitle"]]
[[!template text="""think about it. And then eventually I'll get to a point where""" start="00:15:57.600" video="qanda-project" id="subtitle"]]
[[!template text="""I have a critical mass of momentum and data and so forth,""" start="00:16:00.280" video="qanda-project" id="subtitle"]]
[[!template text="""where I could start a new writing project. But you're right,""" start="00:16:04.280" video="qanda-project" id="subtitle"]]
[[!template text="""that is a problem, capturing those ideas and keeping track""" start="00:16:08.280" video="qanda-project" id="subtitle"]]
[[!template text="""of them. The Xenocasting can also help with that. Right. OK,""" start="00:16:11.400" video="qanda-project" id="subtitle"]]
[[!template text="""so we have time for one more question and I think I'm going to""" start="00:16:16.720" video="qanda-project" id="subtitle"]]
[[!template text="""skip this one. You can take all the time you want after we're""" start="00:16:19.160" video="qanda-project" id="subtitle"]]
[[!template text="""done with the live show for you to answer in BBB, obviously,""" start="00:16:22.680" video="qanda-project" id="subtitle"]]
[[!template text="""and even after the conference. But I'd really like to finish""" start="00:16:25.680" video="qanda-project" id="subtitle"]]
[[!template text="""on this one.""" start="00:16:28.320" video="qanda-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Q: If there were one habit from your process (referencing your extensive flow chart) that you want active learners/professional researchers to adopt, which would it be and why?""" start="00:16:28.802" video="qanda-project" id="subtitle"]]</div>[[!template text="""So, if there were one habit from your process,""" start="00:16:28.802" video="qanda-project" id="subtitle"]]
[[!template text="""referencing your extensive flowchart, that you want""" start="00:16:31.880" video="qanda-project" id="subtitle"]]
[[!template text="""active learners or professional researchers to adopt,""" start="00:16:35.080" video="qanda-project" id="subtitle"]]
[[!template text="""which would it be and why? So,""" start="00:16:37.840" video="qanda-project" id="subtitle"]]
[[!template text="""I think just keeping that daily diary, that's the essential""" start="00:16:44.480" video="qanda-project" id="subtitle"]]
[[!template text="""part for overcoming the fear of forgetting and the fear of""" start="00:16:50.000" video="qanda-project" id="subtitle"]]
[[!template text="""losing momentum. One reason why people don't work on two""" start="00:16:55.240" video="qanda-project" id="subtitle"]]
[[!template text="""projects a day is that they fear losing momentum on the first""" start="00:16:58.320" video="qanda-project" id="subtitle"]]
[[!template text="""project they're working on. But we often are stuck with""" start="00:17:02.400" video="qanda-project" id="subtitle"]]
[[!template text="""working on multiple writing projects, and they're best""" start="00:17:07.320" video="qanda-project" id="subtitle"]]
[[!template text="""done over longer periods of time rather than in a hasty""" start="00:17:10.000" video="qanda-project" id="subtitle"]]
[[!template text="""fashion. I try to avoid binge writing, although I do my share""" start="00:17:13.200" video="qanda-project" id="subtitle"]]
[[!template text="""of that, too. Okay, well, Blaine, thank you so much for all""" start="00:17:18.680" video="qanda-project" id="subtitle"]]
[[!template text="""your questions. The stream is going to move to the next chat""" start="00:17:23.480" video="qanda-project" id="subtitle"]]
[[!template text="""and talk. We're moving to the next talk of the day, but feel""" start="00:17:29.200" video="qanda-project" id="subtitle"]]
[[!template text="""free to stay in a room. For everyone interested in asking""" start="00:17:32.000" video="qanda-project" id="subtitle"]]
[[!template text="""more questions to Blaine, the BBB, sorry, BigBlueButton""" start="00:17:35.160" video="qanda-project" id="subtitle"]]
[[!template text="""link is available on the website. You can join and ask""" start="00:17:38.480" video="qanda-project" id="subtitle"]]
[[!template text="""questions directly to Blaine. And otherwise, we'll make""" start="00:17:41.240" video="qanda-project" id="subtitle"]]
[[!template text="""sure that all the remaining questions on the pad get their""" start="00:17:43.320" video="qanda-project" id="subtitle"]]
[[!template text="""answer eventually. Thank you so much, Blaine. You're""" start="00:17:45.480" video="qanda-project" id="subtitle"]]
[[!template text="""welcome. Bye-bye. Bye.""" start="00:17:48.240" video="qanda-project" id="subtitle"]]
[[!template text="""okay I think the stream is moving on. Just making sure. okay. Yes""" start="00:17:56.560" video="qanda-project" id="subtitle"]]
[[!template text="""we are moving on to the next stream. So Blaine, I'm going to need to""" start="00:18:00.080" video="qanda-project" id="subtitle"]]
[[!template text="""get ready for the next talk. Thank you so much for all your""" start="00:18:02.080" video="qanda-project" id="subtitle"]]
[[!template text="""answers and feel free to answer your questions. I'm""" start="00:18:04.920" video="qanda-project" id="subtitle"]]
[[!template text="""sorry that i didn't get to fill your question live. It's just""" start="00:18:08.080" video="qanda-project" id="subtitle"]]
[[!template text="""there was a lot of questions actually. It was a comment. Okay.""" start="00:18:11.760" video="qanda-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Off-stream Q&A""" start="00:18:16.600" video="qanda-project" id="subtitle"]]</div>[[!template text="""Yeah, yeah. You mentioned about that you sit all the day in""" start="00:18:16.600" video="qanda-project" id="subtitle"]]
[[!template text="""front of computer, right? And I have to say, it's not too""" start="00:18:24.200" video="qanda-project" id="subtitle"]]
[[!template text="""different from a bathroom if you get distracted by web""" start="00:18:28.000" video="qanda-project" id="subtitle"]]
[[!template text="""browser. I also have the same problem. And one interesting""" start="00:18:31.440" video="qanda-project" id="subtitle"]]
[[!template text="""solution I found at some point is that I pry my mind about""" start="00:18:34.920" video="qanda-project" id="subtitle"]]
[[!template text="""certain task, I leave my office and I go for a walk while""" start="00:18:38.680" video="qanda-project" id="subtitle"]]
[[!template text="""thinking about this. And that really forces to focus""" start="00:18:44.040" video="qanda-project" id="subtitle"]]
[[!template text="""because while you're working you have nothing else to do.""" start="00:18:49.080" video="qanda-project" id="subtitle"]]
[[!template text="""You cannot go and like go like searching Google and stuff""" start="00:18:52.840" video="qanda-project" id="subtitle"]]
[[!template text="""like that. It can really help in some cases.""" start="00:18:57.000" video="qanda-project" id="subtitle"]]
[[!template text="""Yeah, I try to. Periodically, I'll try to restart doing the""" start="00:19:03.360" video="qanda-project" id="subtitle"]]
[[!template text="""Pomodoro method, where you're supposed to get up every 25""" start="00:19:09.560" video="qanda-project" id="subtitle"]]
[[!template text="""minutes and take a break. But that requires a lot of""" start="00:19:12.880" video="qanda-project" id="subtitle"]]
[[!template text="""discipline. And it also has, I find I'm more exhausted by""" start="00:19:17.960" video="qanda-project" id="subtitle"]]
[[!template text="""following that method at the end of the day. But I think the""" start="00:19:23.800" video="qanda-project" id="subtitle"]]
[[!template text="""problem with, well, I think in part- No, no, I don't mean""" start="00:19:26.880" video="qanda-project" id="subtitle"]]
[[!template text="""Pomodoro actually. I mean, more like showers. Because when""" start="00:19:30.920" video="qanda-project" id="subtitle"]]
[[!template text="""you take a shower, you think about something, right? When""" start="00:19:36.080" video="qanda-project" id="subtitle"]]
[[!template text="""you just go for a walk, you again think about it. So this is not""" start="00:19:39.080" video="qanda-project" id="subtitle"]]
[[!template text="""a break to take rest. It's a break to think away from""" start="00:19:43.160" video="qanda-project" id="subtitle"]]
[[!template text="""computer.""" start="00:19:46.120" video="qanda-project" id="subtitle"]]
[[!template text="""And you prime yourself, your brain by... picking something""" start="00:19:49.040" video="qanda-project" id="subtitle"]]
[[!template text="""to work on. So I have a project, I think, like certain""" start="00:19:54.240" video="qanda-project" id="subtitle"]]
[[!template text="""questions I want to think about. I sometimes take my, like a""" start="00:19:56.720" video="qanda-project" id="subtitle"]]
[[!template text="""piece of paper with me. And then when I walk, I like take""" start="00:20:01.080" video="qanda-project" id="subtitle"]]
[[!template text="""notes. You can record voice in your case. And like half an""" start="00:20:05.320" video="qanda-project" id="subtitle"]]
[[!template text="""hour and you can really generate ideas.""" start="00:20:10.280" video="qanda-project" id="subtitle"]]
[[!template text="""I have been doing a similar thing. I will take a clipboard.""" start="00:20:15.240" video="qanda-project" id="subtitle"]]
[[!template text="""Maybe I'll have, um, Some blank pages where I'll write, jot""" start="00:20:18.520" video="qanda-project" id="subtitle"]]
[[!template text="""down ideas as I walk. I'll go for like a half hour, hour-long""" start="00:20:24.800" video="qanda-project" id="subtitle"]]
[[!template text="""walk and also read a paper sometimes, and in the process of""" start="00:20:29.800" video="qanda-project" id="subtitle"]]
[[!template text="""reading, I get ideas.""" start="00:20:33.880" video="qanda-project" id="subtitle"]]
[[!template text="""The clipboard though is socially less acceptable. It""" start="00:20:39.160" video="qanda-project" id="subtitle"]]
[[!template text="""reminds people of their gym teacher, I think, or their""" start="00:20:45.160" video="qanda-project" id="subtitle"]]
[[!template text="""marine drill sergeant, and they give me all kinds of weird""" start="00:20:49.360" video="qanda-project" id="subtitle"]]
[[!template text="""looks. Even though they're walking and reading their cell""" start="00:20:53.800" video="qanda-project" id="subtitle"]]
[[!template text="""phone, looking down at their cell phone, they give me weird""" start="00:20:59.280" video="qanda-project" id="subtitle"]]
[[!template text="""looks for looking down at a clipboard as I walk. So there's""" start="00:21:03.760" video="qanda-project" id="subtitle"]]
[[!template text="""that weird aspect to it. It's kind of hilarious.""" start="00:21:08.600" video="qanda-project" id="subtitle"]]
[[!template text="""Thank you very much for the comment. Yeah, hopefully it's""" start="00:21:16.720" video="qanda-project" id="subtitle"]]
[[!template text="""helpful. Because I really struggled about this web browser""" start="00:21:21.480" video="qanda-project" id="subtitle"]]
[[!template text="""in the past. Not so much these days. Very good.""" start="00:21:24.800" video="qanda-project" id="subtitle"]]
[[!template text="""That's good to hear.""" start="00:21:28.347" video="qanda-project" id="subtitle"]]
[[!template text="""I asked,""" start="00:21:57.280" video="qanda-project" id="subtitle"]]
[[!template text="""when I write notes, I've noticed like with the""" start="00:21:57.640" video="qanda-project" id="subtitle"]]
[[!template text="""Getting Things Done and the Zettelkasten, I like to separate them""" start="00:22:06.520" video="qanda-project" id="subtitle"]]
[[!template text="""out. And beyond that, I also like to separate them out on""" start="00:22:10.400" video="qanda-project" id="subtitle"]]
[[!template text="""daily things and the global things. So that, for instance,""" start="00:22:14.760" video="qanda-project" id="subtitle"]]
[[!template text="""your Zettelkasten, a daily would be like a journal. If you""" start="00:22:19.960" video="qanda-project" id="subtitle"]]
[[!template text="""separate it out, It gives a lot of tension of, oh, well, if""" start="00:22:24.720" video="qanda-project" id="subtitle"]]
[[!template text="""it's just a stray thought, I'll write it into my journal if I""" start="00:22:29.600" video="qanda-project" id="subtitle"]]
[[!template text="""don't know where it goes. If I can think of a permanent place""" start="00:22:33.120" video="qanda-project" id="subtitle"]]
[[!template text="""for it to go, it goes into the Zettelkasten. Same thing with,""" start="00:22:36.960" video="qanda-project" id="subtitle"]]
[[!template text="""and then with like the getting things done is like, I don't,""" start="00:22:41.480" video="qanda-project" id="subtitle"]]
[[!template text="""you start with like a fresh sheet of paper every single day or""" start="00:22:44.600" video="qanda-project" id="subtitle"]]
[[!template text="""note or whatever. You ever done, you have tricks like that""" start="00:22:48.160" video="qanda-project" id="subtitle"]]
[[!template text="""that you've noticed? So I'm sort of doing something similar""" start="00:22:54.640" video="qanda-project" id="subtitle"]]
[[!template text="""through this. Well, to be honest, I like at the start of the""" start="00:22:59.360" video="qanda-project" id="subtitle"]]
[[!template text="""day, I actually will just do sort of a brain dump of what""" start="00:23:04.280" video="qanda-project" id="subtitle"]]
[[!template text="""happened the day before, just to try to get writing again.""" start="00:23:07.400" video="qanda-project" id="subtitle"]]
[[!template text="""And these days, because of carpal tunnel syndrome, I'll use""" start="00:23:11.880" video="qanda-project" id="subtitle"]]
[[!template text="""a voice speech to text to generate that initial text. And I'm""" start="00:23:16.960" video="qanda-project" id="subtitle"]]
[[!template text="""just trying to, build up momentum of generating words. And""" start="00:23:22.160" video="qanda-project" id="subtitle"]]
[[!template text="""so I capture, but I'm also adding to that document""" start="00:23:28.480" video="qanda-project" id="subtitle"]]
[[!template text="""throughout the day. And so that is available through the web""" start="00:23:35.560" video="qanda-project" id="subtitle"]]
[[!template text="""browser. I have a tab open to 750 words all the time. There's""" start="00:23:40.720" video="qanda-project" id="subtitle"]]
[[!template text="""an alternate to it that is called Write Honey, that somebody""" start="00:23:47.280" video="qanda-project" id="subtitle"]]
[[!template text="""in Berlin started, because they benefited so greatly from""" start="00:23:51.720" video="qanda-project" id="subtitle"]]
[[!template text="""this practice. They have made it available for free,""" start="00:23:55.920" video="qanda-project" id="subtitle"]]
[[!template text="""apparently for life. And so there's no word limit, whereas I""" start="00:23:58.680" video="qanda-project" id="subtitle"]]
[[!template text="""have a grandfathered version of 750 words, and I have a word""" start="00:24:05.040" video="qanda-project" id="subtitle"]]
[[!template text="""limit of 5,000 words. I rarely hit it. It's nice to know that""" start="00:24:10.600" video="qanda-project" id="subtitle"]]
[[!template text="""right honey doesn't have that limit. So, that's how I'm""" start="00:24:15.520" video="qanda-project" id="subtitle"]]
[[!template text="""capturing things. And then, so some of that text winds up""" start="00:24:20.600" video="qanda-project" id="subtitle"]]
[[!template text="""being moved into my log file or even sometimes into the""" start="00:24:26.200" video="qanda-project" id="subtitle"]]
[[!template text="""manuscript.""" start="00:24:32.280" video="qanda-project" id="subtitle"]]
[[!template text="""So maybe a little less organized than the getting things""" start="00:24:37.800" video="qanda-project" id="subtitle"]]
[[!template text="""done approach with the dailies and then the refiling""" start="00:24:42.080" video="qanda-project" id="subtitle"]]
[[!template text="""process. So I don't do any refiling. I want to file once. I""" start="00:24:47.560" video="qanda-project" id="subtitle"]]
[[!template text="""don't want to file a second time or have to go back and handle""" start="00:24:54.320" video="qanda-project" id="subtitle"]]
[[!template text="""something a second time. So that's my rationale for the""" start="00:24:58.080" video="qanda-project" id="subtitle"]]
[[!template text="""approach I take. I'm not using it. I've had various""" start="00:25:03.320" video="qanda-project" id="subtitle"]]
[[!template text="""iterations of systems I've used, but I think my favorite one""" start="00:25:08.160" video="qanda-project" id="subtitle"]]
[[!template text="""for like getting things done is actually not using""" start="00:25:12.760" video="qanda-project" id="subtitle"]]
[[!template text="""Org Agenda, just like making a blank sheet and kind of doing""" start="00:25:15.560" video="qanda-project" id="subtitle"]]
[[!template text="""like a template where it's just like, and separating my""" start="00:25:18.800" video="qanda-project" id="subtitle"]]
[[!template text="""tasks out into three categories, like core tasks, like, and""" start="00:25:24.040" video="qanda-project" id="subtitle"]]
[[!template text="""rule of thumb is like, if it's beyond three, it's too much too""" start="00:25:28.120" video="qanda-project" id="subtitle"]]
[[!template text="""many. And like core tasks, secondary tasks and unplanned""" start="00:25:32.280" video="qanda-project" id="subtitle"]]
[[!template text="""tasks. So these, those three categories, like for""" start="00:25:36.360" video="qanda-project" id="subtitle"]]
[[!template text="""instance, the core task, if it's greater than three, it's""" start="00:25:39.760" video="qanda-project" id="subtitle"]]
[[!template text="""too many. That way is like, when you look back, then you can""" start="00:25:42.040" video="qanda-project" id="subtitle"]]
[[!template text="""see, like, if I got my core tasks done, I did really good. or if""" start="00:25:47.000" video="qanda-project" id="subtitle"]]
[[!template text="""I got a lot of secondary tasks but not my core tasks done, I got""" start="00:25:51.440" video="qanda-project" id="subtitle"]]
[[!template text="""side reactions with things that don't matter.""" start="00:25:56.880" video="qanda-project" id="subtitle"]]
[[!template text="""If I got a lot of unplanned tasks,""" start="00:25:58.874" video="qanda-project" id="subtitle"]]
[[!template text="""I could look at those unplanned tasks to see, oh yeah, okay,""" start="00:26:00.640" video="qanda-project" id="subtitle"]]
[[!template text="""that was fine. Okay, the day didn't go as""" start="00:26:03.680" video="qanda-project" id="subtitle"]]
[[!template text="""planned, but it was, yeah. That's an excellent suggestion.""" start="00:26:07.640" video="qanda-project" id="subtitle"]]
[[!template text="""I generally just And I ended up long of a to-do list. It's""" start="00:26:15.000" video="qanda-project" id="subtitle"]]
[[!template text="""impossible to accomplish in a day. Then I just like""" start="00:26:20.120" video="qanda-project" id="subtitle"]]
[[!template text="""furnaces. Another trick that I liked was I also put like that""" start="00:26:25.080" video="qanda-project" id="subtitle"]]
[[!template text="""under like a week. Cause it makes more sense to do it under a""" start="00:26:29.800" video="qanda-project" id="subtitle"]]
[[!template text="""week. And then I'd have like subheadings under that, like,""" start="00:26:34.720" video="qanda-project" id="subtitle"]]
[[!template text="""you know, so week day. Um, then I'd have those three""" start="00:26:39.080" video="qanda-project" id="subtitle"]]
[[!template text="""categories for each of the tasks and then kind of as an""" start="00:26:45.080" video="qanda-project" id="subtitle"]]
[[!template text="""unofficial day at the end, I just like have a staging area for""" start="00:26:48.600" video="qanda-project" id="subtitle"]]
[[!template text="""all tasks. So I just kind of, then I just, I want to be using org""" start="00:26:51.720" video="qanda-project" id="subtitle"]]
[[!template text="""agenda. So then I just be moving up and down, you know, cause""" start="00:26:56.200" video="qanda-project" id="subtitle"]]
[[!template text="""you could, cause you're able to rearrange stuff in org mode""" start="00:27:00.320" video="qanda-project" id="subtitle"]]
[[!template text="""so easily. I don't know if there's a good way of, that's been""" start="00:27:03.200" video="qanda-project" id="subtitle"]]
[[!template text="""my favorite iteration""" start="00:27:08.080" video="qanda-project" id="subtitle"]]
[[!template text="""of doing it. So I wrote a little function that pops in the""" start="00:27:11.920" video="qanda-project" id="subtitle"]]
[[!template text="""to-dos that are specific to a particular project in the log""" start="00:27:20.760" video="qanda-project" id="subtitle"]]
[[!template text="""file for that project.""" start="00:27:25.440" video="qanda-project" id="subtitle"]]
[[!template text="""And then I add the log file name to the list of org files that""" start="00:27:31.360" video="qanda-project" id="subtitle"]]
[[!template text="""Org Agenda searches, so those to-dos will show up. But my""" start="00:27:36.600" video="qanda-project" id="subtitle"]]
[[!template text="""list is too long, and that becomes overwhelming. So I'll""" start="00:27:41.920" video="qanda-project" id="subtitle"]]
[[!template text="""just assign a to-do heading to the top item in my to-do list to""" start="00:27:46.200" video="qanda-project" id="subtitle"]]
[[!template text="""try to, but maybe it should be three. That would be a""" start="00:27:51.400" video="qanda-project" id="subtitle"]]
[[!template text="""reasonable compromise.""" start="00:27:54.480" video="qanda-project" id="subtitle"]]
[[!template text="""That's a good idea.""" start="00:27:58.480" video="qanda-project" id="subtitle"]]
[[!template text="""So you're doing weekly planning then? I can show up. I was.""" start="00:28:03.880" video="qanda-project" id="subtitle"]]
[[!template text="""This is, yeah, this was, yeah. What ended up making me stop is""" start="00:28:12.880" video="qanda-project" id="subtitle"]]
[[!template text="""I didn't know how to make a template of it. And I, I ended up""" start="00:28:16.880" video="qanda-project" id="subtitle"]]
[[!template text="""getting annoyed by manually changing the days every single""" start="00:28:20.440" video="qanda-project" id="subtitle"]]
[[!template text="""time and naming like my files and stuff like that. If I Maybe""" start="00:28:25.880" video="qanda-project" id="subtitle"]]
[[!template text="""if I did it now, I could figure out how to program it or if I""" start="00:28:29.760" video="qanda-project" id="subtitle"]]
[[!template text="""spent enough time, but that's what I think eventually made""" start="00:28:34.160" video="qanda-project" id="subtitle"]]
[[!template text="""me stop doing it. So there's a, um, you can make a snippet for""" start="00:28:36.440" video="qanda-project" id="subtitle"]]
[[!template text="""the week and then you could have code in the snippet that""" start="00:28:42.480" video="qanda-project" id="subtitle"]]
[[!template text="""would generate the dates automatically. Um, So I have like""" start="00:28:45.680" video="qanda-project" id="subtitle"]]
[[!template text="""for my daily entry, I have a snippet called entry and then I""" start="00:28:51.520" video="qanda-project" id="subtitle"]]
[[!template text="""hit tab and our control or whatever to insert the snippet and""" start="00:28:56.600" video="qanda-project" id="subtitle"]]
[[!template text="""that has the current date already entered. So I skip that, I""" start="00:29:02.080" video="qanda-project" id="subtitle"]]
[[!template text="""don't have to deal with that. So I think you could probably""" start="00:29:07.920" video="qanda-project" id="subtitle"]]
[[!template text="""feed what you want to accomplish to a copilot, for example,""" start="00:29:13.480" video="qanda-project" id="subtitle"]]
[[!template text="""being copilot. I've been using Bing Copilot""" start="00:29:18.640" video="qanda-project" id="subtitle"]]
[[!template text="""for the past three or four months to return""" start="00:29:21.802" video="qanda-project" id="subtitle"]]
[[!template text="""Elisp code that works 90% of the time.""" start="00:29:25.834" video="qanda-project" id="subtitle"]]
[[!template text="""I've been pretty impressed. And it's free. So no""" start="00:29:29.228" video="qanda-project" id="subtitle"]]
[[!template text="""API key required. It runs. So I guess I installed the Bing""" start="00:29:34.400" video="qanda-project" id="subtitle"]]
[[!template text="""Copilot plugin in the Google Chrome.""" start="00:29:43.120" video="qanda-project" id="subtitle"]]
[[!template text="""And that's what I've been using.""" start="00:29:49.363" video="qanda-project" id="subtitle"]]
[[!template text="""Yeah, I can show you my screen if""" start="00:29:50.200" video="qanda-project" id="subtitle"]]
[[!template text="""you want to see what the screen looks like.""" start="00:30:00.808" video="qanda-project" id="subtitle"]]
[[!template text="""I can email you the template. I kind of have it saved as a""" start="00:30:05.853" video="qanda-project" id="subtitle"]]
[[!template text="""template. I've got to find it, though. Let's see.""" start="00:30:06.840" video="qanda-project" id="subtitle"]]
[[!template text="""Not exactly set up to.""" start="00:30:12.640" video="qanda-project" id="subtitle"]]
[[!template text="""Alright, so. I""" start="00:30:17.440" video="qanda-project" id="subtitle"]]
[[!template text="""don't know if you can see this well enough, but...""" start="00:30:44.160" video="qanda-project" id="subtitle"]]
[[!template text="""Yeah, let's make it bigger. Can you see that at all? I can see a""" start="00:30:50.160" video="qanda-project" id="subtitle"]]
[[!template text="""little bit of it. Yeah, it's kind of blurry.""" start="00:30:59.600" video="qanda-project" id="subtitle"]]
[[!template text="""Alright, well. But then you just do that right there. So it's""" start="00:31:01.280" video="qanda-project" id="subtitle"]]
[[!template text="""all color coded. I, so I get a sense of, uh, uh, what the kind of""" start="00:31:07.400" video="qanda-project" id="subtitle"]]
[[!template text="""greenish blue lines must be or days, I guess, or. Okay. Well,""" start="00:31:13.240" video="qanda-project" id="subtitle"]]
[[!template text="""right. There's like, so you can see like startup show two""" start="00:31:18.600" video="qanda-project" id="subtitle"]]
[[!template text="""levels. Then I have like numbers right there. So right on one""" start="00:31:22.640" video="qanda-project" id="subtitle"]]
[[!template text="""day you have like the core tasks, there's three out of four""" start="00:31:27.520" video="qanda-project" id="subtitle"]]
[[!template text="""done. Then I have like secondary and unplanned and then.""" start="00:31:30.920" video="qanda-project" id="subtitle"]]
[[!template text="""Yeah, that's just the general idea""" start="00:31:37.120" video="qanda-project" id="subtitle"]]
[[!template text="""So that this is you raise you know the so the dilemma I face of""" start="00:31:42.080" video="qanda-project" id="subtitle"]]
[[!template text="""course is that I have maintain like a to-do list and our""" start="00:31:50.320" video="qanda-project" id="subtitle"]]
[[!template text="""project specific and then there's the all the other things I""" start="00:31:55.120" video="qanda-project" id="subtitle"]]
[[!template text="""have to do and So there should be like some The org agenda""" start="00:31:58.800" video="qanda-project" id="subtitle"]]
[[!template text="""should be a way of being able to pull the two sets together, I""" start="00:32:04.440" video="qanda-project" id="subtitle"]]
[[!template text="""guess.""" start="00:32:09.880" video="qanda-project" id="subtitle"]]
[[!template text="""I had broken up my,""" start="00:32:10.320" video="qanda-project" id="subtitle"]]
[[!template text="""well, I had way too many to-do lists stored in various""" start="00:32:16.960" video="qanda-project" id="subtitle"]]
[[!template text="""places.""" start="00:32:25.360" video="qanda-project" id="subtitle"]]
[[!template text="""And so that's a problem, I guess, when you have too many""" start="00:32:25.920" video="qanda-project" id="subtitle"]]
[[!template text="""to-dos and the org Agenda becomes overwhelming and sort of""" start="00:32:32.200" video="qanda-project" id="subtitle"]]
[[!template text="""discourages Yeah, I figure that the general task on that is""" start="00:32:37.360" video="qanda-project" id="subtitle"]]
[[!template text="""like I start writing things up. I get more and more items.""" start="00:32:44.480" video="qanda-project" id="subtitle"]]
[[!template text="""I'll make a master to-do list. Oh my master to-do list has too""" start="00:32:49.200" video="qanda-project" id="subtitle"]]
[[!template text="""many items. Let me throw it out Well, there's another name""" start="00:32:52.320" video="qanda-project" id="subtitle"]]
[[!template text="""for that kind of list you could you know called a grass""" start="00:32:58.760" video="qanda-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Time Power""" start="00:33:01.560" video="qanda-project" id="subtitle"]]</div>[[!template text="""catcher list. So Charles Hobbs was this, he wrote a book in""" start="00:33:01.560" video="qanda-project" id="subtitle"]]
[[!template text="""the 80s called Time Power. And he had like, you know, so he was""" start="00:33:06.960" video="qanda-project" id="subtitle"]]
[[!template text="""one of these time management gurus. And so, let's""" start="00:33:16.080" video="qanda-project" id="subtitle"]]
[[!template text="""see, you get the name of some, like Tony Robbins and,""" start="00:33:22.680" video="qanda-project" id="subtitle"]]
[[!template text="""I forget the name of the other guy, that's Brian Tracy. So""" start="00:33:26.520" video="qanda-project" id="subtitle"]]
[[!template text="""that they have kind of pushed the same kind of similar""" start="00:33:34.880" video="qanda-project" id="subtitle"]]
[[!template text="""approaches. But Charles Hobbs had a very more organized""" start="00:33:39.120" video="qanda-project" id="subtitle"]]
[[!template text="""approach, I think, and more disciplined. And he identified""" start="00:33:43.280" video="qanda-project" id="subtitle"]]
[[!template text="""that kind of list as a grass catcher list, where you have a""" start="00:33:46.680" video="qanda-project" id="subtitle"]]
[[!template text="""list of items that you think you might want to do, but you""" start="00:33:49.440" video="qanda-project" id="subtitle"]]
[[!template text="""haven't prioritized them yet. And you haven't scheduled""" start="00:33:52.840" video="qanda-project" id="subtitle"]]
[[!template text="""them yet. but they need a safe place to be stored. When time""" start="00:33:57.360" video="qanda-project" id="subtitle"]]
[[!template text="""permits, the idea was you would pull items off that grass""" start="00:34:03.200" video="qanda-project" id="subtitle"]]
[[!template text="""catcher list and move it into a to-do item that you will""" start="00:34:06.200" video="qanda-project" id="subtitle"]]
[[!template text="""schedule and commit to getting done. That was the idea,""" start="00:34:10.600" video="qanda-project" id="subtitle"]]
[[!template text="""separating them between core tasks, secondary tasks,""" start="00:34:18.080" video="qanda-project" id="subtitle"]]
[[!template text="""unplanned tasks, because your whole day can't be planned.""" start="00:34:21.000" video="qanda-project" id="subtitle"]]
[[!template text="""Right, right. You have things you have to do that are""" start="00:34:24.120" video="qanda-project" id="subtitle"]]
[[!template text="""unscheduled that come through your door or land in your""" start="00:34:27.920" video="qanda-project" id="subtitle"]]
[[!template text="""inbox or land in your email. You've got to do them. And then""" start="00:34:31.320" video="qanda-project" id="subtitle"]]
[[!template text="""core tasks, I don't know, like to-do lists, their whole""" start="00:34:35.240" video="qanda-project" id="subtitle"]]
[[!template text="""point is. So for instance, like journal and Zettelkasten""" start="00:34:38.800" video="qanda-project" id="subtitle"]]
[[!template text="""are kind of, and like that's global lists versus the daily""" start="00:34:43.280" video="qanda-project" id="subtitle"]]
[[!template text="""lists are kind of. done a little differently. With""" start="00:34:46.680" video="qanda-project" id="subtitle"]]
[[!template text="""Zettelkasten, it's organic. Things build up. If you make a""" start="00:34:49.400" video="qanda-project" id="subtitle"]]
[[!template text="""note, it's great. If you don't, if it has a small amount,""" start="00:34:53.640" video="qanda-project" id="subtitle"]]
[[!template text="""that's great. Have a small note. With a daily to-do, you want""" start="00:34:56.360" video="qanda-project" id="subtitle"]]
[[!template text="""to use it to make decisions. That's the idea of having the""" start="00:35:00.480" video="qanda-project" id="subtitle"]]
[[!template text="""core task and the secondary task separate because the whole""" start="00:35:05.200" video="qanda-project" id="subtitle"]]
[[!template text="""thing about it is, I wanna use this to eliminate what I'm""" start="00:35:08.640" video="qanda-project" id="subtitle"]]
[[!template text="""going to do. It's to choose what I'm going to do, like the core""" start="00:35:12.720" video="qanda-project" id="subtitle"]]
[[!template text="""tasks. Because if I can get my core tasks, I can be happy with""" start="00:35:15.760" video="qanda-project" id="subtitle"]]
[[!template text="""my previous days. And then I would probably start using""" start="00:35:19.840" video="qanda-project" id="subtitle"]]
[[!template text="""agenda a lot more if I was more consistent with using like""" start="00:35:26.520" video="qanda-project" id="subtitle"]]
[[!template text="""these as like weekly files. I don't know. But then the whole""" start="00:35:30.640" video="qanda-project" id="subtitle"]]
[[!template text="""goal thing is just like, let me see what I wanna populate the""" start="00:35:34.440" video="qanda-project" id="subtitle"]]
[[!template text="""day list with. So how many core tasks wind up spanning""" start="00:35:37.560" video="qanda-project" id="subtitle"]]
[[!template text="""multiple days because they're such big projects?""" start="00:35:43.880" video="qanda-project" id="subtitle"]]
[[!template text="""I would need more time using the system before I'd figure""" start="00:35:47.360" video="qanda-project" id="subtitle"]]
[[!template text="""something like that out. As I said, I'm not using it right""" start="00:35:54.520" video="qanda-project" id="subtitle"]]
[[!template text="""now, but that has been my favorite iteration of using these.""" start="00:35:59.680" video="qanda-project" id="subtitle"]]
[[!template text="""So within the core tasks, do you assign priorities? So the""" start="00:36:04.760" video="qanda-project" id="subtitle"]]
[[!template text="""way I would translate this a little bit would be like in this""" start="00:36:13.520" video="qanda-project" id="subtitle"]]
[[!template text="""method that Charles Hobbs had, he had a category for the""" start="00:36:20.280" video="qanda-project" id="subtitle"]]
[[!template text="""items that you really have to get done, and they're really""" start="00:36:25.000" video="qanda-project" id="subtitle"]]
[[!template text="""important. And so they get a priority of A. And then the""" start="00:36:29.400" video="qanda-project" id="subtitle"]]
[[!template text="""secondary tasks would get a priority of B. But then within""" start="00:36:34.120" video="qanda-project" id="subtitle"]]
[[!template text="""the A category, you would number them like one through""" start="00:36:39.520" video="qanda-project" id="subtitle"]]
[[!template text="""three, I guess. All right, so this would be part of the""" start="00:36:42.080" video="qanda-project" id="subtitle"]]
[[!template text="""purpose of separating the daily list or like the weekly list""" start="00:36:45.040" video="qanda-project" id="subtitle"]]
[[!template text="""from the global list. So for instance, your global list,""" start="00:36:49.080" video="qanda-project" id="subtitle"]]
[[!template text="""you'd say, I want this project that will take a long duration""" start="00:36:51.720" video="qanda-project" id="subtitle"]]
[[!template text="""of time. But your daily list would just say, I want to work on""" start="00:36:55.680" video="qanda-project" id="subtitle"]]
[[!template text="""it today, even if I don't get it done today. Like, I want to""" start="00:37:00.640" video="qanda-project" id="subtitle"]]
[[!template text="""work on it today. then maybe you can link like for instance""" start="00:37:05.040" video="qanda-project" id="subtitle"]]
[[!template text="""that your daily list to that global list or something along""" start="00:37:11.400" video="qanda-project" id="subtitle"]]
[[!template text="""those lines. But that would be I think a good answer to that""" start="00:37:16.240" video="qanda-project" id="subtitle"]]
[[!template text="""type of problem because yeah, the daily list is like""" start="00:37:20.480" video="qanda-project" id="subtitle"]]
[[!template text="""supposed to be for that day, not for, Like for instance, you""" start="00:37:24.720" video="qanda-project" id="subtitle"]]
[[!template text="""start out clean, you make the list like that would probably""" start="00:37:31.000" video="qanda-project" id="subtitle"]]
[[!template text="""be your first task for the week is what do I want for the week?""" start="00:37:34.680" video="qanda-project" id="subtitle"]]
[[!template text="""Then you have some tasks that you do with staging. And then""" start="00:37:38.600" video="qanda-project" id="subtitle"]]
[[!template text="""like for instance, since you look at it as a whole week at a""" start="00:37:41.640" video="qanda-project" id="subtitle"]]
[[!template text="""time, you're able to rearrange it and say, these are the""" start="00:37:43.800" video="qanda-project" id="subtitle"]]
[[!template text="""things I wanna get done this week. This is what I really wanna""" start="00:37:47.560" video="qanda-project" id="subtitle"]]
[[!template text="""get done on this day. This is what I don't care about on this""" start="00:37:51.160" video="qanda-project" id="subtitle"]]
[[!template text="""day or yeah.""" start="00:37:53.640" video="qanda-project" id="subtitle"]]
[[!template text="""Another person that kind of, and this is kind of related,""" start="00:37:53.960" video="qanda-project" id="subtitle"]]
[[!template text="""there's this idea of""" start="00:38:03.080" video="qanda-project" id="subtitle"]]
[[!template text="""of time blocking. So obviously, three tasks, core tasks,""" start="00:38:05.560" video="qanda-project" id="subtitle"]]
[[!template text="""maybe they're going to take three or four hours each or two or""" start="00:38:14.040" video="qanda-project" id="subtitle"]]
[[!template text="""three. And you can assign blocks of time in your schedule to""" start="00:38:18.840" video="qanda-project" id="subtitle"]]
[[!template text="""get them done. And often, what happens is they take longer""" start="00:38:23.920" video="qanda-project" id="subtitle"]]
[[!template text="""than you expect. And you have to extend the blocks. Calvin""" start="00:38:30.040" video="qanda-project" id="subtitle"]]
[[!template text="""Newport has a that's a kind of approach he advocates is you""" start="00:38:33.800" video="qanda-project" id="subtitle"]]
[[!template text="""and I think the power to that is you're you. you're mapping""" start="00:38:39.360" video="qanda-project" id="subtitle"]]
[[!template text="""out, you know, you're allocating the time to do these things""" start="00:38:43.520" video="qanda-project" id="subtitle"]]
[[!template text="""and you're seeing how you actually, how much time things""" start="00:38:48.600" video="qanda-project" id="subtitle"]]
[[!template text="""actually take. And then you, so you wind up adjusting in the""" start="00:38:52.680" video="qanda-project" id="subtitle"]]
[[!template text="""future. And the idea is with this approach is do it on paper.""" start="00:38:56.120" video="qanda-project" id="subtitle"]]
[[!template text="""And then you have to like, uh, if something takes longer,""" start="00:39:00.080" video="qanda-project" id="subtitle"]]
[[!template text="""that pushes everything else down. You just wind up""" start="00:39:03.560" video="qanda-project" id="subtitle"]]
[[!template text="""redrawing your schedule for the day, uh, manually. And, um,""" start="00:39:06.600" video="qanda-project" id="subtitle"]]
[[!template text="""So it's kind of laborious, and that labor is supposed to""" start="00:39:12.800" video="qanda-project" id="subtitle"]]
[[!template text="""inhibit you from spending too much time on a project. As you""" start="00:39:17.400" video="qanda-project" id="subtitle"]]
[[!template text="""know, you've got the pain of redrawing everything if you""" start="00:39:21.800" video="qanda-project" id="subtitle"]]
[[!template text="""spend too much time on the first project.""" start="00:39:24.960" video="qanda-project" id="subtitle"]]
[[!template text="""Yeah, there was a, let's see. It's whatever you strategy you""" start="00:39:27.920" video="qanda-project" id="subtitle"]]
[[!template text="""want to do. Like for instance, to me, it's like doing it this""" start="00:39:37.000" video="qanda-project" id="subtitle"]]
[[!template text="""way makes me say, I want to focus on like what matters. Then""" start="00:39:40.360" video="qanda-project" id="subtitle"]]
[[!template text="""it'll tell me if I feel good about that day, depends on what""" start="00:39:45.520" video="qanda-project" id="subtitle"]]
[[!template text="""algorithm, what level and what type of strategy you're""" start="00:39:49.240" video="qanda-project" id="subtitle"]]
[[!template text="""using. If you're using time blocking, you're optimizing""" start="00:39:52.760" video="qanda-project" id="subtitle"]]
[[!template text="""for each level of time block where I'm, where's like, And you""" start="00:39:56.120" video="qanda-project" id="subtitle"]]
[[!template text="""can combine the approaches. It'd be trickier. But like, now""" start="00:40:02.880" video="qanda-project" id="subtitle"]]
[[!template text="""let's see. I was listening to a talk with Jordan Peterson.""" start="00:40:09.360" video="qanda-project" id="subtitle"]]
[[!template text="""One of the things he said that really resonated with me is""" start="00:40:12.920" video="qanda-project" id="subtitle"]]
[[!template text="""like, you wanna use a calendar, but the first rule of using a""" start="00:40:15.160" video="qanda-project" id="subtitle"]]
[[!template text="""calendar is don't let the calendar tyrannize you. Because""" start="00:40:19.120" video="qanda-project" id="subtitle"]]
[[!template text="""like the first thing you wanna do whenever you use a calendar""" start="00:40:24.600" video="qanda-project" id="subtitle"]]
[[!template text="""is schedule every single minute of the day Now you don't have""" start="00:40:28.000" video="qanda-project" id="subtitle"]]
[[!template text="""any room for if any task overruns at all. And after a couple of""" start="00:40:33.040" video="qanda-project" id="subtitle"]]
[[!template text="""tests, you're like, I don't want to do this anymore. I rebel.""" start="00:40:37.280" video="qanda-project" id="subtitle"]]
[[!template text="""I'm going to throw it out. So one kind of combination is""" start="00:40:42.720" video="qanda-project" id="subtitle"]]
[[!template text="""through this Pomodoro method I mentioned earlier, where""" start="00:40:49.880" video="qanda-project" id="subtitle"]]
[[!template text="""you would sort of like block out, say, two hours. You work for""" start="00:40:53.800" video="qanda-project" id="subtitle"]]
[[!template text="""like 25 minutes, take a little, break for up to five minutes""" start="00:40:57.720" video="qanda-project" id="subtitle"]]
[[!template text="""and get back to work. And then after two hours, you're to take""" start="00:41:02.200" video="qanda-project" id="subtitle"]]
[[!template text="""like a 15 minute break in the morning. In the afternoon, you""" start="00:41:07.280" video="qanda-project" id="subtitle"]]
[[!template text="""might even let that break run longer and you might only have""" start="00:41:11.120" video="qanda-project" id="subtitle"]]
[[!template text="""three work sessions between breaks. So because you're""" start="00:41:14.600" video="qanda-project" id="subtitle"]]
[[!template text="""going to be more run down in the afternoon. And so you build in""" start="00:41:19.280" video="qanda-project" id="subtitle"]]
[[!template text="""some""" start="00:41:24.320" video="qanda-project" id="subtitle"]]
[[!template text="""into your schedule, some flex like, okay, that's supposed""" start="00:41:26.920" video="qanda-project" id="subtitle"]]
[[!template text="""to be a break time, but you know, maybe some urgency comes up""" start="00:41:31.640" video="qanda-project" id="subtitle"]]
[[!template text="""and you got to deal with, um, and you have to break out of this,""" start="00:41:34.440" video="qanda-project" id="subtitle"]]
[[!template text="""uh, Pomodoro technique. So, uh, that, that, that's one way""" start="00:41:38.000" video="qanda-project" id="subtitle"]]
[[!template text="""of kind of scheduling in some, uh, flexibility is through""" start="00:41:44.040" video="qanda-project" id="subtitle"]]
[[!template text="""the breaks at Peterson's[??], right. Right. That... I can't, I""" start="00:41:48.800" video="qanda-project" id="subtitle"]]
[[!template text="""can't... I don't schedule to that kind of detail. That's just""" start="00:41:54.400" video="qanda-project" id="subtitle"]]
[[!template text="""too oppressive.""" start="00:41:59.240" video="qanda-project" id="subtitle"]]
[[!template text="""Well, neither do I, but it's like that, like I, that's, I""" start="00:42:00.040" video="qanda-project" id="subtitle"]]
[[!template text="""don't try to, to me, the much more interesting question that""" start="00:42:05.400" video="qanda-project" id="subtitle"]]
[[!template text="""I tried to do is like, let's try to make sure I do the important""" start="00:42:09.120" video="qanda-project" id="subtitle"]]
[[!template text="""things. Cause if I do those, my life would probably move a lot""" start="00:42:12.480" video="qanda-project" id="subtitle"]]
[[!template text="""quicker. If I get, if I choose a couple items that I really""" start="00:42:15.200" video="qanda-project" id="subtitle"]]
[[!template text="""want and am able to consistently do them, I think my life""" start="00:42:19.320" video="qanda-project" id="subtitle"]]
[[!template text="""would bastically start improving. Not necessarily if I can""" start="00:42:22.240" video="qanda-project" id="subtitle"]]
[[!template text="""play the game of optimizing every hour.""" start="00:42:26.320" video="qanda-project" id="subtitle"]]
[[!template text="""Maybe that could be, and it's a place to start rather, and I""" start="00:42:28.880" video="qanda-project" id="subtitle"]]
[[!template text="""think it'd be the most effective place to start. And if I got""" start="00:42:36.880" video="qanda-project" id="subtitle"]]
[[!template text="""better at using it all the time, perhaps I'd be playing""" start="00:42:39.080" video="qanda-project" id="subtitle"]]
[[!template text="""optimizing every hour game. But this is the game I think""" start="00:42:42.720" video="qanda-project" id="subtitle"]]
[[!template text="""would be best bang for buck for me to optimize now. What""" start="00:42:47.000" video="qanda-project" id="subtitle"]]
[[!template text="""you're trying to optimize for is accomplishing these core""" start="00:42:52.720" video="qanda-project" id="subtitle"]]
[[!template text="""tasks, getting them done as quickly as possible, or as""" start="00:42:56.040" video="qanda-project" id="subtitle"]]
[[!template text="""effectively as possible, and as effectively as you need, or""" start="00:43:03.560" video="qanda-project" id="subtitle"]]
[[!template text="""whatever your goal is. But yeah, focusing on that rather""" start="00:43:10.560" video="qanda-project" id="subtitle"]]
[[!template text="""than the scheduling, I think. Plus, a core task could be, I""" start="00:43:15.360" video="qanda-project" id="subtitle"]]
[[!template text="""don't know, catch up on all my house chores, or let, or do a""" start="00:43:19.680" video="qanda-project" id="subtitle"]]
[[!template text="""specific one if it's really big or like, I don't know, it's""" start="00:43:26.120" video="qanda-project" id="subtitle"]]
[[!template text="""whatever you want it to be. It's like, you can make them""" start="00:43:28.880" video="qanda-project" id="subtitle"]]
[[!template text="""bigger or smaller depending on, on how you word them and""" start="00:43:32.160" video="qanda-project" id="subtitle"]]
[[!template text="""everything. Cause like, if you say cap, capture all of your""" start="00:43:37.560" video="qanda-project" id="subtitle"]]
[[!template text="""house chores up for like one week and you haven't done""" start="00:43:40.920" video="qanda-project" id="subtitle"]]
[[!template text="""anything, that's probably a little too ambitious.""" start="00:43:44.880" video="qanda-project" id="subtitle"]]
[[!template text="""That's right. Yeah, well, a lot of. Yeah.""" start="00:43:47.280" video="qanda-project" id="subtitle"]]
[[!template text="""I spend, I don't know, at least 15 minutes, half an hour at the""" start="00:43:56.440" video="qanda-project" id="subtitle"]]
[[!template text="""beginning of the day, sort of my my planning and sort of my""" start="00:44:03.040" video="qanda-project" id="subtitle"]]
[[!template text="""initial writing session is involves a bit of planning and""" start="00:44:07.120" video="qanda-project" id="subtitle"]]
[[!template text="""there's always. A lot more time. So generally, depending on""" start="00:44:12.360" video="qanda-project" id="subtitle"]]
[[!template text="""the nature of your work,""" start="00:44:20.400" video="qanda-project" id="subtitle"]]
[[!template text="""it can take up to 15% of your time. It can take quite a bit of""" start="00:44:21.280" video="qanda-project" id="subtitle"]]
[[!template text="""time. And I think people don't really acknowledge that as""" start="00:44:28.120" video="qanda-project" id="subtitle"]]
[[!template text="""part of your work is planning. And it can take a significant""" start="00:44:33.920" video="qanda-project" id="subtitle"]]
[[!template text="""amount of time.""" start="00:44:39.040" video="qanda-project" id="subtitle"]]
[[!template text="""Yeah, that's what I was meaning though is like the very first""" start="00:44:39.840" video="qanda-project" id="subtitle"]]
[[!template text="""thing I think people generally always try to do with the""" start="00:44:44.800" video="qanda-project" id="subtitle"]]
[[!template text="""scanners like look at how productive I can be let's schedule""" start="00:44:48.120" video="qanda-project" id="subtitle"]]
[[!template text="""every single minute up and it's like You're not gonna want to""" start="00:44:51.280" video="qanda-project" id="subtitle"]]
[[!template text="""do that for very long and it's not gonna work out And what you""" start="00:44:55.320" video="qanda-project" id="subtitle"]]
[[!template text="""were saying about The pomodoro technique one of the core""" start="00:45:00.520" video="qanda-project" id="subtitle"]]
[[!template text="""Let's see, one of the benefits could be described of another""" start="00:45:06.360" video="qanda-project" id="subtitle"]]
[[!template text="""benefit I've seen of like multiple habits books is if you""" start="00:45:11.920" video="qanda-project" id="subtitle"]]
[[!template text="""start multiple small habits where you try to do them""" start="00:45:16.880" video="qanda-project" id="subtitle"]]
[[!template text="""consistently, you give yourself an opening to where if you""" start="00:45:19.600" video="qanda-project" id="subtitle"]]
[[!template text="""get into the flow state, you can do a lot more of it. Like, I""" start="00:45:23.320" video="qanda-project" id="subtitle"]]
[[!template text="""don't know, let's say you got a habit of, I don't know, just""" start="00:45:28.280" video="qanda-project" id="subtitle"]]
[[!template text="""write a journal entry. You're a journal entry of like at""" start="00:45:31.760" video="qanda-project" id="subtitle"]]
[[!template text="""least two lines. I don't know that could very easily turn to""" start="00:45:36.520" video="qanda-project" id="subtitle"]]
[[!template text="""like three paragraphs and if you have like a whole bunch of""" start="00:45:39.280" video="qanda-project" id="subtitle"]]
[[!template text="""Like the pomodoro technique it could be like stubs to allow""" start="00:45:42.760" video="qanda-project" id="subtitle"]]
[[!template text="""you to do more stuff""" start="00:45:46.280" video="qanda-project" id="subtitle"]]
[[!template text="""Where are they in spur to allow inspiration to allow you to""" start="00:45:47.640" video="qanda-project" id="subtitle"]]
[[!template text="""generate inspiration and then capture it when it strikes if""" start="00:45:54.320" video="qanda-project" id="subtitle"]]
[[!template text="""the mood fancies you""" start="00:45:57.240" video="qanda-project" id="subtitle"]]
[[!template text="""Yeah, so that's kind of an issue with the Pomodoro""" start="00:45:58.760" video="qanda-project" id="subtitle"]]
[[!template text="""technique. So, one idea is that you just, if you really have""" start="00:46:08.320" video="qanda-project" id="subtitle"]]
[[!template text="""to break out, because the idea is too big to put on the back""" start="00:46:13.840" video="qanda-project" id="subtitle"]]
[[!template text="""burner and hold in place, then you do have to break out of the""" start="00:46:19.360" video="qanda-project" id="subtitle"]]
[[!template text="""Pomodoro and go, you know, jot down a quick note or three""" start="00:46:24.360" video="qanda-project" id="subtitle"]]
[[!template text="""paragraphs.""" start="00:46:30.040" video="qanda-project" id="subtitle"]]
[[!template text="""but like how much... You don't get to count that as a""" start="00:46:30.720" video="qanda-project" id="subtitle"]]
[[!template text="""Pomodoro. You have to like reset your count because you've""" start="00:46:36.840" video="qanda-project" id="subtitle"]]
[[!template text="""broken it. I mean, according to that method, it's""" start="00:46:40.680" video="qanda-project" id="subtitle"]]
[[!template text="""kind of rigid. It's a different algorithm optimizing for""" start="00:46:48.760" video="qanda-project" id="subtitle"]]
[[!template text="""different things. And this may just be like a by-product,""" start="00:46:52.880" video="qanda-project" id="subtitle"]]
[[!template text="""but this could be very easily like a core advantage that may""" start="00:46:55.480" video="qanda-project" id="subtitle"]]
[[!template text="""or may not be the core reason that you were using it but didn't""" start="00:47:00.760" video="qanda-project" id="subtitle"]]
[[!template text="""realize it, and may not be something that it's optimizing""" start="00:47:05.600" video="qanda-project" id="subtitle"]]
[[!template text="""for. So""" start="00:47:08.720" video="qanda-project" id="subtitle"]]
[[!template text="""are you developing a Emacs package then with your template?""" start="00:47:17.400" video="qanda-project" id="subtitle"]]
[[!template text="""No. As I said,""" start="00:47:22.160" video="qanda-project" id="subtitle"]]
[[!template text="""My next steps where I think would make it work a lot better is""" start="00:47:30.320" video="qanda-project" id="subtitle"]]
[[!template text="""if I figured out some way of automatically filling out the""" start="00:47:36.320" video="qanda-project" id="subtitle"]]
[[!template text="""dates or maybe automatically adding the file per week into""" start="00:47:40.000" video="qanda-project" id="subtitle"]]
[[!template text="""and out of Org Agenda. That would be my next steps. I think if I""" start="00:47:45.440" video="qanda-project" id="subtitle"]]
[[!template text="""did that, it would have a much greater chance of becoming""" start="00:47:52.000" video="qanda-project" id="subtitle"]]
[[!template text="""part of my workflow at all times. Yeah, I bet you could do it""" start="00:47:55.720" video="qanda-project" id="subtitle"]]
[[!template text="""pretty Something I got to work with the help of copilot. I'm""" start="00:48:01.880" video="qanda-project" id="subtitle"]]
[[!template text="""not a wizard yet at Emacs Lisp, but I find that copilot is""" start="00:48:08.440" video="qanda-project" id="subtitle"]]
[[!template text="""quite helpful.""" start="00:48:14.960" video="qanda-project" id="subtitle"]]
[[!template text="""Yeah, their AIs are definitely interesting.""" start="00:48:26.440" video="qanda-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Do you use a lot of TeX inside Org Mode?""" start="00:48:32.800" video="qanda-project" id="subtitle"]]</div>[[!template text="""So. do you ever use any, uh, a lot of TeX inside of org mode?""" start="00:48:32.800" video="qanda-project" id="subtitle"]]
[[!template text="""No, mostly because I know that like I could try to learn it,""" start="00:48:38.280" video="qanda-project" id="subtitle"]]
[[!template text="""but I just don't have a need for it. So yeah. And then also like""" start="00:48:49.640" video="qanda-project" id="subtitle"]]
[[!template text="""I remember learning, when I learned HTML, I like writing""" start="00:48:57.640" video="qanda-project" id="subtitle"]]
[[!template text="""HTML more than like, for instance, Word, because it was a lot""" start="00:49:05.280" video="qanda-project" id="subtitle"]]
[[!template text="""more transparent, like a plain text document is, and kind of""" start="00:49:08.520" video="qanda-project" id="subtitle"]]
[[!template text="""wrote the ordered list, unordered list, in such a way that it""" start="00:49:14.960" video="qanda-project" id="subtitle"]]
[[!template text="""kind of looked similar to the page. But I find that I like Org""" start="00:49:20.160" video="qanda-project" id="subtitle"]]
[[!template text="""Mode more than,""" start="00:49:25.600" video="qanda-project" id="subtitle"]]
[[!template text="""HTML because, well, it's optimized for, like, my writing""" start="00:49:26.440" video="qanda-project" id="subtitle"]]
[[!template text="""and consumption and overall use case rather than, like,""" start="00:49:35.480" video="qanda-project" id="subtitle"]]
[[!template text="""optimizing it for somebody else to view, which I generally""" start="00:49:38.480" video="qanda-project" id="subtitle"]]
[[!template text="""don't have as much.""" start="00:49:43.360" video="qanda-project" id="subtitle"]]
[[!template text="""But, so, like, I don't know. Org Mode is what I'm going to end""" start="00:49:45.040" video="qanda-project" id="subtitle"]]
[[!template text="""up using the most, so. I just want to use LaTeX enough.""" start="00:49:52.800" video="qanda-project" id="subtitle"]]
[[!template text="""Although I'd be interested in learning LaTeX snippets""" start="00:49:57.880" video="qanda-project" id="subtitle"]]
[[!template text="""inside of Org Mode for like the math stuff, but then again, I""" start="00:50:01.000" video="qanda-project" id="subtitle"]]
[[!template text="""just never have to type it. So my attitude towards Org Mode""" start="00:50:06.520" video="qanda-project" id="subtitle"]]
[[!template text="""changed radically over the summer. I was avoiding it""" start="00:50:13.480" video="qanda-project" id="subtitle"]]
[[!template text="""somewhat before and then when I realized I can keep all the""" start="00:50:18.200" video="qanda-project" id="subtitle"]]
[[!template text="""great aspects of LaTeX and still use all the great features""" start="00:50:25.440" video="qanda-project" id="subtitle"]]
[[!template text="""of Org Mode. So I view now, I think of Org Mode as a wrapper""" start="00:50:33.280" video="qanda-project" id="subtitle"]]
[[!template text="""around LaTeX. I know it's not really that, but by thinking""" start="00:50:39.960" video="qanda-project" id="subtitle"]]
[[!template text="""about it that way, uh, it's much more palatable to me to, uh,""" start="00:50:44.560" video="qanda-project" id="subtitle"]]
[[!template text="""uh, just go, uh, commit to doing as much as possible in org""" start="00:50:49.160" video="qanda-project" id="subtitle"]]
[[!template text="""mode. So I've been, that's what I've been doing. Um, this""" start="00:50:54.680" video="qanda-project" id="subtitle"]]
[[!template text="""fall is just, uh, every document I started as an org file.""" start="00:50:58.560" video="qanda-project" id="subtitle"]]
[[!template text="""I imagine I would like it if I knew it, it's just because I,""" start="00:51:01.840" video="qanda-project" id="subtitle"]]
[[!template text="""because I imagine it would feel to me like HTML, or it's just""" start="00:51:09.960" video="qanda-project" id="subtitle"]]
[[!template text="""like, Yeah, I can write it, I can format it the way I want to.""" start="00:51:13.320" video="qanda-project" id="subtitle"]]
[[!template text="""This is just guesses from my experience with HTML. I can read""" start="00:51:18.520" video="qanda-project" id="subtitle"]]
[[!template text="""the source code of it and kind of get an idea of how it will look""" start="00:51:24.440" video="qanda-project" id="subtitle"]]
[[!template text="""like, but I just...""" start="00:51:27.680" video="qanda-project" id="subtitle"]]
[[!template text="""It's like if you're gonna use the Linux terminal, but you're""" start="00:51:30.920" video="qanda-project" id="subtitle"]]
[[!template text="""gonna use it for an hour a week every... Yeah, an hour a week.""" start="00:51:36.800" video="qanda-project" id="subtitle"]]
[[!template text="""It's just like, it's just not enough time to dedicate to""" start="00:51:41.640" video="qanda-project" id="subtitle"]]
[[!template text="""learn it for to start paying off. That's right. And you can""" start="00:51:45.200" video="qanda-project" id="subtitle"]]
[[!template text="""always export your org file to an HTML file.""" start="00:51:48.280" video="qanda-project" id="subtitle"]]
[[!template text="""Yeah.""" start="00:51:52.560" video="qanda-project" id="subtitle"]]
[[!template text="""But the org file is what I stare at 95% of the time or more. I""" start="00:51:56.080" video="qanda-project" id="subtitle"]]
[[!template text="""only use a PDF. So I export to PDF generally. And when I export""" start="00:52:06.040" video="qanda-project" id="subtitle"]]
[[!template text="""to HTML, it's very cool. I like looking at the document in the""" start="00:52:10.520" video="qanda-project" id="subtitle"]]
[[!template text="""web browser. I like navigating it. But I generally will""" start="00:52:16.240" video="qanda-project" id="subtitle"]]
[[!template text="""export it to PDF so I can print it out when I'm traveling to""" start="00:52:20.880" video="qanda-project" id="subtitle"]]
[[!template text="""carry out editing. But that's just a small, tiny fraction of""" start="00:52:24.880" video="qanda-project" id="subtitle"]]
[[!template text="""the time that I'm actually working with the document. So""" start="00:52:30.440" video="qanda-project" id="subtitle"]]
[[!template text="""most of the time it's in org mode. You know, maybe it doesn't""" start="00:52:34.040" video="qanda-project" id="subtitle"]]
[[!template text="""look as pretty as in, you know, uh, HTML, but it's, uh, it's so""" start="00:52:38.120" video="qanda-project" id="subtitle"]]
[[!template text="""such a pleasure to work in because of the way you can reorder""" start="00:52:44.200" video="qanda-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Org Mode versus Markdown""" start="00:52:48.680" video="qanda-project" id="subtitle"]]</div>[[!template text="""lists, you know, create headlines. So what about org mode""" start="00:52:48.680" video="qanda-project" id="subtitle"]]
[[!template text="""versus Markdown? Cause I know when, cause when I looked at""" start="00:52:55.120" video="qanda-project" id="subtitle"]]
[[!template text="""org mode versus Markdown, I was like, yeah, more stuff""" start="00:52:57.720" video="qanda-project" id="subtitle"]]
[[!template text="""supports Markdown, but. Org mode has more stuff built into""" start="00:53:00.560" video="qanda-project" id="subtitle"]]
[[!template text="""it, like the calendar and agenda stuff. And it's obvious""" start="00:53:05.040" video="qanda-project" id="subtitle"]]
[[!template text="""what this is supposed to be in org mode. And Emacs has got the""" start="00:53:10.520" video="qanda-project" id="subtitle"]]
[[!template text="""best client. I use Emacs. And I think it's got a better syntax""" start="00:53:14.560" video="qanda-project" id="subtitle"]]
[[!template text="""than Markdown. You've got stuff like Obsidian and Notes.""" start="00:53:18.920" video="qanda-project" id="subtitle"]]
[[!template text="""And what about the Markdown? So Markdown, I use it a lot on""" start="00:53:23.320" video="qanda-project" id="subtitle"]]
[[!template text="""GitHub repositories for the readme files. Sometimes I'll""" start="00:53:30.960" video="qanda-project" id="subtitle"]]
[[!template text="""do them in org, but generally just go with the GitHub""" start="00:53:35.480" video="qanda-project" id="subtitle"]]
[[!template text="""Markdown. But tables are still kind of a pain in Markdown,""" start="00:53:38.960" video="qanda-project" id="subtitle"]]
[[!template text="""whereas tables are such a pleasure to build in org mode,""" start="00:53:44.160" video="qanda-project" id="subtitle"]]
[[!template text="""because you have that dynamic adjusting of the column width""" start="00:53:48.720" video="qanda-project" id="subtitle"]]
[[!template text="""as you make entries that become wider. And it's so easy to add""" start="00:53:52.960" video="qanda-project" id="subtitle"]]
[[!template text="""columns. And it's so hard to add columns. It's much harder in""" start="00:53:59.240" video="qanda-project" id="subtitle"]]
[[!template text="""Markdown and in LaTeX. It's more of a pain to add new columns.""" start="00:54:04.160" video="qanda-project" id="subtitle"]]
[[!template text="""So the table aspect, that, to me, was one of the killer""" start="00:54:12.480" video="qanda-project" id="subtitle"]]
[[!template text="""features. And then the other killer feature, of course, is""" start="00:54:16.920" video="qanda-project" id="subtitle"]]
[[!template text="""the literate programming or interactive programming. So""" start="00:54:20.440" video="qanda-project" id="subtitle"]]
[[!template text="""interactive computing that you can do where you have a code""" start="00:54:24.160" video="qanda-project" id="subtitle"]]
[[!template text="""block and then you can execute it and have the output show up""" start="00:54:26.560" video="qanda-project" id="subtitle"]]
[[!template text="""right below the code block. And""" start="00:54:30.640" video="qanda-project" id="subtitle"]]
[[!template text="""org modes support for that kind of interactive computing is""" start="00:54:35.160" video="qanda-project" id="subtitle"]]
[[!template text="""I'm not aware of anything more sophisticated, because you""" start="00:54:40.840" video="qanda-project" id="subtitle"]]
[[!template text="""could have parallel sessions. You could have four Python""" start="00:54:46.040" video="qanda-project" id="subtitle"]]
[[!template text="""sessions going, each of them labeled differently. And""" start="00:54:50.800" video="qanda-project" id="subtitle"]]
[[!template text="""they're all walled off from each other. They don't see each""" start="00:54:55.040" video="qanda-project" id="subtitle"]]
[[!template text="""other. Or you can have different programming languages. So""" start="00:54:57.520" video="qanda-project" id="subtitle"]]
[[!template text="""you can do polyglottic""" start="00:55:07.080" video="qanda-project" id="subtitle"]]
[[!template text="""programming where you have... Maybe Python's generating a""" start="00:55:11.040" video="qanda-project" id="subtitle"]]
[[!template text="""table, and then that table gets, you decide you want to plot""" start="00:55:14.360" video="qanda-project" id="subtitle"]]
[[!template text="""it using R, or you want to use ggplot2 and R to plot it, so that""" start="00:55:18.240" video="qanda-project" id="subtitle"]]
[[!template text="""table gets fed into R in the next code block down, and then""" start="00:55:24.200" video="qanda-project" id="subtitle"]]
[[!template text="""below it, you get a graph made in R, or you can make it in new""" start="00:55:29.720" video="qanda-project" id="subtitle"]]
[[!template text="""plot, or you could, or some other, or you could move it into a""" start="00:55:33.560" video="qanda-project" id="subtitle"]]
[[!template text="""LaTeX code block, plot the data in with Tikz,""" start="00:55:39.560" video="qanda-project" id="subtitle"]]
[[!template text="""or you could move it into Clojure and use one of the""" start="00:55:47.400" video="qanda-project" id="subtitle"]]
[[!template text="""Clojure plotting programs. Just kind of limitless what you""" start="00:55:52.720" video="qanda-project" id="subtitle"]]
[[!template text="""can do in terms of recombining the best of different""" start="00:55:56.400" video="qanda-project" id="subtitle"]]
[[!template text="""programming languages.""" start="00:56:00.120" video="qanda-project" id="subtitle"]]
[[!template text="""Yeah, let's see. The literate DevOps are really good talks""" start="00:56:01.600" video="qanda-project" id="subtitle"]]
[[!template text="""and subjects to get into this type of stuff. And they give a""" start="00:56:09.240" video="qanda-project" id="subtitle"]]
[[!template text="""very good example of some tips on how to do this. You start""" start="00:56:13.360" video="qanda-project" id="subtitle"]]
[[!template text="""writing in the previous or past tenses, though. You got the""" start="00:56:17.120" video="qanda-project" id="subtitle"]]
[[!template text="""answer already, and then your notes are already formatted""" start="00:56:20.360" video="qanda-project" id="subtitle"]]
[[!template text="""out as you're doing it for after the fact. And like, one thing""" start="00:56:23.720" video="qanda-project" id="subtitle"]]
<div class="transcript-heading">[[!template new="1" text="""Raku""" start="00:56:28.560" video="qanda-project" id="subtitle"]]</div>[[!template text="""I like doing a lot is using the Raku language as a calculator,""" start="00:56:28.560" video="qanda-project" id="subtitle"]]
[[!template text="""because I can just type in math as normal and it all works.""" start="00:56:32.680" video="qanda-project" id="subtitle"]]
[[!template text="""I've tried that. Yeah, you can just say like, I don't know, 25""" start="00:56:37.240" video="qanda-project" id="subtitle"]]
[[!template text="""times four with, and you can put like parentheses in it. I'm""" start="00:56:44.920" video="qanda-project" id="subtitle"]]
[[!template text="""not exactly, I haven't used it very heavily. Oh, it also""" start="00:56:49.560" video="qanda-project" id="subtitle"]]
[[!template text="""supports Unicode. So if you wanted to have""" start="00:56:55.040" video="qanda-project" id="subtitle"]]
[[!template text="""the not equals sign, the Unicode not equals sign, it will""" start="00:57:01.840" video="qanda-project" id="subtitle"]]
[[!template text="""actually do that. Cool. Or like the division sign. I don't""" start="00:57:07.320" video="qanda-project" id="subtitle"]]
[[!template text="""know how it will do it. Yeah. But yeah. And then using that in,""" start="00:57:12.920" video="qanda-project" id="subtitle"]]
[[!template text="""I also wrote a shell script where it would just help me do a""" start="00:57:22.760" video="qanda-project" id="subtitle"]]
[[!template text="""calculation. I was trying to do a business calculation""" start="00:57:28.240" video="qanda-project" id="subtitle"]]
[[!template text="""where I was, and I'd have variable names and I ended up""" start="00:57:31.880" video="qanda-project" id="subtitle"]]
[[!template text="""writing the, in the parentheses I'd have enters, returns,""" start="00:57:35.360" video="qanda-project" id="subtitle"]]
[[!template text="""and then just a variable name with like a dollar sign, kind of""" start="00:57:39.320" video="qanda-project" id="subtitle"]]
[[!template text="""like how you'd have in the shell. And I outputted every""" start="00:57:42.320" video="qanda-project" id="subtitle"]]
[[!template text="""single line that I had in the enter.""" start="00:57:45.800" video="qanda-project" id="subtitle"]]
[[!template text="""six or 10 variables in this paragraph, the paragraph""" start="00:57:47.480" video="qanda-project" id="subtitle"]]
[[!template text="""spanned, I don't know, like four lines or something like""" start="00:57:54.480" video="qanda-project" id="subtitle"]]
[[!template text="""that. Maybe, yeah, something, I think it was along those""" start="00:57:57.760" video="qanda-project" id="subtitle"]]
[[!template text="""lines. And I was just thinking of like what this would be in""" start="00:58:01.040" video="qanda-project" id="subtitle"]]
[[!template text="""something else, just like, it was a lot nicer. Yeah, I had""" start="00:58:04.600" video="qanda-project" id="subtitle"]]
[[!template text="""like equations for the variable, like in like one line, but""" start="00:58:07.880" video="qanda-project" id="subtitle"]]
[[!template text="""when I wrote that, what my output should be is like, like I""" start="00:58:10.880" video="qanda-project" id="subtitle"]]
[[!template text="""wasn't putting all of these like, you know, string join,""" start="00:58:13.840" video="qanda-project" id="subtitle"]]
[[!template text="""string join, string join, It looked relatively close to""" start="00:58:16.360" video="qanda-project" id="subtitle"]]
[[!template text="""what my terminal output would be, and then a later iteration""" start="00:58:21.160" video="qanda-project" id="subtitle"]]
[[!template text="""I found on this was, let's write what I'm going to put into the""" start="00:58:25.240" video="qanda-project" id="subtitle"]]
[[!template text="""command line, made a couple changeable variables in it, and""" start="00:58:29.040" video="qanda-project" id="subtitle"]]
[[!template text="""then I can see my results, and that ended up being very nice.""" start="00:58:36.120" video="qanda-project" id="subtitle"]]
[[!template text="""Ended up being nicer than the shells. Yeah, ended up""" start="00:58:40.040" video="qanda-project" id="subtitle"]]
[[!template text="""enhancing that shell script that I wrote.""" start="00:58:44.200" video="qanda-project" id="subtitle"]]
[[!template text="""That's a Raku calculator.""" start="00:58:45.960" video="qanda-project" id="subtitle"]]
[[!template text="""Uh, it's the Raku programming language, which I was just""" start="00:58:50.920" video="qanda-project" id="subtitle"]]
[[!template text="""using it, which I was just using as, which I'll just use as""" start="00:58:57.760" video="qanda-project" id="subtitle"]]
[[!template text="""just straight up that calculator. Cause I'll do like,""" start="00:59:02.480" video="qanda-project" id="subtitle"]]
[[!template text="""because it supports math well enough that I, like I, yeah,""" start="00:59:06.080" video="qanda-project" id="subtitle"]]
[[!template text="""you can put like 25 divided by four and it doesn't start""" start="00:59:12.000" video="qanda-project" id="subtitle"]]
[[!template text="""doing, what's the word, modular fractal, the double math,""" start="00:59:17.240" video="qanda-project" id="subtitle"]]
[[!template text="""like it,""" start="00:59:24.440" video="qanda-project" id="subtitle"]]
[[!template text="""if it's,""" start="00:59:28.080" video="qanda-project" id="subtitle"]]
[[!template text="""the double math where it's like negative .2 versus like""" start="00:59:28.640" video="qanda-project" id="subtitle"]]
[[!template text="""minus one, or sometimes it'll do optimized computer math""" start="00:59:34.440" video="qanda-project" id="subtitle"]]
[[!template text="""where it doesn't give you the right answer, why people will""" start="00:59:40.400" video="qanda-project" id="subtitle"]]
[[!template text="""like Mathematica.""" start="00:59:44.000" video="qanda-project" id="subtitle"]]
[[!template text="""So, how do you, do you access it through, in org mode then?""" start="00:59:44.640" video="qanda-project" id="subtitle"]]
[[!template text="""I'll do it in that. Sometimes I just fire up a Raku shell, but""" start="00:59:56.440" video="qanda-project" id="subtitle"]]
[[!template text="""one of the biggest things I'll fire up a Raku shell for is like""" start="01:00:05.200" video="qanda-project" id="subtitle"]]
[[!template text="""just, um, what's oh just recently I was just like doing it for""" start="01:00:09.160" video="qanda-project" id="subtitle"]]
[[!template text="""some math and like how many people how much money will I have""" start="01:00:17.400" video="qanda-project" id="subtitle"]]
[[!template text="""to spend on Christmas oh I've got I'm gonna buy this gift it's""" start="01:00:20.400" video="qanda-project" id="subtitle"]]
[[!template text="""gonna cost this much and then I've got so let's I think 15""" start="01:00:24.560" video="qanda-project" id="subtitle"]]
[[!template text="""times four because it's no 60 divided by four because it was a""" start="01:00:33.800" video="qanda-project" id="subtitle"]]
[[!template text="""four pack And then times, and then I put it in parentheses,""" start="01:00:37.960" video="qanda-project" id="subtitle"]]
[[!template text="""oh, four plus like two plus two, because like of the""" start="01:00:42.920" video="qanda-project" id="subtitle"]]
[[!template text="""families, each of the units, and I just started doing it that""" start="01:00:47.520" video="qanda-project" id="subtitle"]]
[[!template text="""way. And I put them all in a parentheses. And then at the end of""" start="01:00:49.120" video="qanda-project" id="subtitle"]]
[[!template text="""this spit out the numbers, like, so I could just use the""" start="01:00:53.480" video="qanda-project" id="subtitle"]]
[[!template text="""parentheses without thinking about, you know, like, oh,""" start="01:00:55.960" video="qanda-project" id="subtitle"]]
[[!template text="""I'm actually in a programming language. No, I just kind of""" start="01:00:58.280" video="qanda-project" id="subtitle"]]
[[!template text="""wrote it like I was in algebra, algebra, not in,""" start="01:01:02.680" video="qanda-project" id="subtitle"]]
[[!template text="""not finding some special program, not finding a""" start="01:01:07.280" video="qanda-project" id="subtitle"]]
[[!template text="""calculator, because it's easy for me to file up a terminal.""" start="01:01:11.360" video="qanda-project" id="subtitle"]]
[[!template text="""Then I open that up, and it all just works. Plus, I also got a""" start="01:01:15.000" video="qanda-project" id="subtitle"]]
[[!template text="""full programming language behind it if I ever need it.""" start="01:01:20.440" video="qanda-project" id="subtitle"]]
[[!template text="""I wasn't aware that it utilizes standard math notation""" start="01:01:22.640" video="qanda-project" id="subtitle"]]
[[!template text="""rather than the Polish math notation that we use in ELISP.""" start="01:01:33.680" video="qanda-project" id="subtitle"]]
[[!template text="""Um, that's interesting because it's, it's in the list""" start="01:01:37.280" video="qanda-project" id="subtitle"]]
[[!template text="""family of programming languages.""" start="01:01:42.840" video="qanda-project" id="subtitle"]]
[[!template text="""Yeah. It's like, Hey, I can use, I can actually use my math""" start="01:01:45.280" video="qanda-project" id="subtitle"]]
[[!template text="""knowledge. I can use the order of operations.""" start="01:01:54.400" video="qanda-project" id="subtitle"]]
[[!template text="""Yep.""" start="01:01:57.880" video="qanda-project" id="subtitle"]]
[[!template text="""I just wish that when I was in high school, they started""" start="01:02:00.880" video="qanda-project" id="subtitle"]]
[[!template text="""telling me how to practically use this rather than me""" start="01:02:08.000" video="qanda-project" id="subtitle"]]
[[!template text="""discover it years later when I'm out of it. Yeah.""" start="01:02:10.240" video="qanda-project" id="subtitle"]]
[[!template text="""Well, I probably better move along to attend the other""" start="01:02:14.120" video="qanda-project" id="subtitle"]]
[[!template text="""talks. All right. So it's been great talking to you, Plasma""" start="01:02:27.400" video="qanda-project" id="subtitle"]]
[[!template text="""Strike. Yep, you too.""" start="01:02:32.840" video="qanda-project" id="subtitle"]]
</div>Questions or comments? Please e-mail [blaine-mooers@ouhsc.edu](mailto:blaine-mooers@ouhsc.edu?subject=Comment%20for%20EmacsConf%202023%20project%3A%20Managing%20writing%20project%20metadata%20with%20org-mode)
<!-- End of emacsconf-publish-after-page -->
|