-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsegments.json
More file actions
1081 lines (1081 loc) · 25.3 KB
/
Copy pathsegments.json
File metadata and controls
1081 lines (1081 loc) · 25.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"parts": [
{
"audio": "audio_1.mp3",
"duration": 478.539875,
"segments": [
{
"text": "Welcome to DeepWaiting.",
"start": 0,
"end": 2.08
},
{
"text": "The mindfulness experience for developers waiting for AI to finish one tiny change.",
"start": 3.14,
"end": 12.04
},
{
"text": "Find a comfortable position.",
"start": 13.04,
"end": 14.8
},
{
"text": "Rest your hands.",
"start": 16.16,
"end": 18.16
},
{
"text": "Relax your shoulders.",
"start": 18.987,
"end": 21.48
},
{
"text": "Take a slow breath in.",
"start": 22.432,
"end": 24.24
},
{
"text": "And gently let it out.",
"start": 25.8,
"end": 27.84
},
{
"text": "There is nowhere else you need to be.",
"start": 29.547,
"end": 32.56
},
{
"text": "Your agents are already doing everything.",
"start": 34.016,
"end": 37.12
},
{
"text": "Possibly too much.",
"start": 38.711,
"end": 40.56
},
{
"text": "Take another breath.",
"start": 42.528,
"end": 44.4
},
{
"text": "Notice your keyboard.",
"start": 45.349,
"end": 47.56
},
{
"text": "It hasn't been touched in quite some time.",
"start": 48.347,
"end": 51.28
},
{
"text": "That isn't procrastination.",
"start": 52.912,
"end": 55.28
},
{
"text": "That's leverage.",
"start": 55.952,
"end": 57.76
},
{
"text": "Notice your terminal.",
"start": 58.789,
"end": 60.32
},
{
"text": "The cursor blinks peacefully.",
"start": 61.83,
"end": 63.92
},
{
"text": "It says...",
"start": 65.307,
"end": 66.08
},
{
"text": "Thinking.",
"start": 67.173,
"end": 68.44
},
{
"text": "It has said thinking for forty-seven minutes.",
"start": 69.307,
"end": 72.8
},
{
"text": "This is not waiting.",
"start": 74.464,
"end": 76.32
},
{
"text": "This is deep reasoning.",
"start": 77.936,
"end": 80.32
},
{
"text": "Or it's rewriting your README.",
"start": 82.427,
"end": 84.8
},
{
"text": "Either way, trust the process.",
"start": 86.354,
"end": 89.36
},
{
"text": "Take another slow breath.",
"start": 91.168,
"end": 93.28
},
{
"text": "Imagine your codebase.",
"start": 94.96,
"end": 96.8
},
{
"text": "Simple.",
"start": 98.229,
"end": 99.4
},
{
"text": "Clean.",
"start": 100.227,
"end": 101.4
},
{
"text": "Predictable.",
"start": 102.29,
"end": 103.84
},
{
"text": "Now imagine asking your AI to rename a variable.",
"start": 104.9,
"end": 110
},
{
"text": "Observe as it carefully analyzes every file in the repository.",
"start": 111.6,
"end": 117.4
},
{
"text": "It discovers seventeen opportunities for improvement.",
"start": 118.267,
"end": 121.601
},
{
"text": "It rewrites your dependency injection.",
"start": 123.147,
"end": 125.92
},
{
"text": "Introduces CQRS.",
"start": 126.6,
"end": 129.44
},
{
"text": "Adds event sourcing.",
"start": 130.24,
"end": 132.4
},
{
"text": "Creates three new interfaces.",
"start": 133.17,
"end": 136
},
{
"text": "Adds a plugin system.",
"start": 136.88,
"end": 139.16
},
{
"text": "Moves everything into packages.",
"start": 140.053,
"end": 143.08
},
{
"text": "Writes an architecture decision record.",
"start": 143.954,
"end": 146.76
},
{
"text": "Generates migration documentation.",
"start": 147.576,
"end": 150.6
},
{
"text": "Suggests a complete rewrite in Rust.",
"start": 151.48,
"end": 155.16
},
{
"text": "Remember.",
"start": 156.133,
"end": 156.561
},
{
"text": "You only asked to rename a variable.",
"start": 157.7,
"end": 160.88
},
{
"text": "Breathe.",
"start": 162.6,
"end": 163.121
},
{
"text": "Notice the pull request.",
"start": 164.857,
"end": 167.12
},
{
"text": "Three thousand eight hundred changes.",
"start": 167.96,
"end": 171.08
},
{
"text": "Eighty-seven files modified.",
"start": 171.947,
"end": 174.88
},
{
"text": "One line actually contains your requested change.",
"start": 175.72,
"end": 179.72
},
{
"text": "Everything else is future-proofing.",
"start": 180.531,
"end": 183.72
},
{
"text": "Observe without judgment.",
"start": 184.64,
"end": 187.6
},
{
"text": "Take another breath.",
"start": 188.528,
"end": 190.36
},
{
"text": "The AI has identified technical debt.",
"start": 191.3,
"end": 194.001
},
{
"text": "Interestingly...",
"start": 195.497,
"end": 196.8
},
{
"text": "It created most of that debt during the previous prompt.",
"start": 197.387,
"end": 201.68
},
{
"text": "Fortunately...",
"start": 202.62,
"end": 203.44
},
{
"text": "It has another plan.",
"start": 204.267,
"end": 206.36
},
{
"text": "Trust the journey.",
"start": 207.28,
"end": 209.32
},
{
"text": "Breathe in.",
"start": 210.2,
"end": 210.801
},
{
"text": "Breathe out.",
"start": 212.52,
"end": 214.08
},
{
"text": "Notice the beautiful abstraction.",
"start": 215.017,
"end": 217.88
},
{
"text": "Originally there were two simple functions.",
"start": 218.72,
"end": 222.94
},
{
"text": "Now there is one generic solution.",
"start": 223.68,
"end": 227.52
},
{
"text": "It requires seven type parameters.",
"start": 228.018,
"end": 231.24
},
{
"text": "Three factories.",
"start": 231.68,
"end": 233.78
},
{
"text": "Two adapters.",
"start": 234.427,
"end": 236.52
},
{
"text": "A builder.",
"start": 236.8,
"end": 238.311
},
{
"text": "A registry.",
"start": 238.809,
"end": 240.72
},
{
"text": "A resolver.",
"start": 241,
"end": 242.7
},
{
"text": "And a strategy provider.",
"start": 243.484,
"end": 246.526
},
{
"text": "Nobody knows how it works.",
"start": 247.12,
"end": 249.952
},
{
"text": "Including the AI.",
"start": 250.4,
"end": 253.232
},
{
"text": "This is elegance.",
"start": 254.018,
"end": 256.389
},
{
"text": "Accept elegance.",
"start": 257.147,
"end": 259.776
},
{
"text": "Take another breath.",
"start": 260.04,
"end": 262.56
},
{
"text": "Notice the tests.",
"start": 263.06,
"end": 265.54
},
{
"text": "Several are failing.",
"start": 266,
"end": 268.651
},
{
"text": "Remain calm.",
"start": 269.264,
"end": 271.08
},
{
"text": "The AI has solved this.",
"start": 271.92,
"end": 274.56
},
{
"text": "It deleted them.",
"start": 275.05,
"end": 277.227
},
{
"text": "Coverage is now one hundred percent.",
"start": 277.653,
"end": 281.43
},
{
"text": "Nothing can fail if nothing exists.",
"start": 281.84,
"end": 286.768
},
{
"text": "Feel the peace.",
"start": 287.373,
"end": 289.82
},
{
"text": "Breathe.",
"start": 290.6,
"end": 292.206
},
{
"text": "Notice your package manager.",
"start": 292.576,
"end": 295.122
},
{
"text": "It is downloading one thousand four hundred and eighty-seven dependencies.",
"start": 295.521,
"end": 301.537
},
{
"text": "Your application still prints...",
"start": 301.968,
"end": 304.561
},
{
"text": "Hello, World.",
"start": 305.121,
"end": 307.101
},
{
"text": "But now...",
"start": 308.188,
"end": 308.561
},
{
"text": "It does so with enterprise-grade observability.",
"start": 309.041,
"end": 313.041
},
{
"text": "Distributed tracing.",
"start": 313.414,
"end": 315.841
},
{
"text": "OpenTelemetry.",
"start": 316.367,
"end": 318.451
},
{
"text": "Metrics.",
"start": 319.688,
"end": 320.513
},
{
"text": "Dashboards.",
"start": 321.108,
"end": 322.761
},
{
"text": "Alerting.",
"start": 323.201,
"end": 324.621
},
{
"text": "And twelve dashboards showing that Hello World is functioning normally.",
"start": 325.121,
"end": 332.081
},
{
"text": "This is modern software engineering.",
"start": 332.721,
"end": 336.737
},
{
"text": "Take another slow breath.",
"start": 337.101,
"end": 340.401
},
{
"text": "Observe the documentation.",
"start": 340.761,
"end": 343.601
},
{
"text": "It is magnificent.",
"start": 344.428,
"end": 346.881
},
{
"text": "It explains features that don't exist.",
"start": 347.379,
"end": 351.281
},
{
"text": "Examples that don't compile.",
"start": 351.809,
"end": 354.892
},
{
"text": "Configuration options that belong to another project.",
"start": 355.292,
"end": 360.441
},
{
"text": "API endpoints from an alternate timeline.",
"start": 361.041,
"end": 365.317
},
{
"text": "Everything is documented.",
"start": 365.776,
"end": 368.901
},
{
"text": "Nothing is correct.",
"start": 369.468,
"end": 372.281
},
{
"text": "Allow this feeling to pass.",
"start": 372.737,
"end": 376.141
},
{
"text": "Breathe.",
"start": 377.494,
"end": 378.332
},
{
"text": "Notice your CPU.",
"start": 378.705,
"end": 381.361
},
{
"text": "All sixteen cores are fully occupied.",
"start": 381.861,
"end": 385.981
},
{
"text": "The AI is comparing twelve implementations.",
"start": 386.801,
"end": 390.927
},
{
"text": "Eleven produce identical results.",
"start": 391.441,
"end": 394.861
},
{
"text": "The twelfth requires Kubernetes.",
"start": 395.313,
"end": 398.541
},
{
"text": "For local development.",
"start": 398.961,
"end": 401.633
},
{
"text": "This is called scalability.",
"start": 402.241,
"end": 405.697
},
{
"text": "Take another breath.",
"start": 406.011,
"end": 408.441
},
{
"text": "You may notice an urge to check the logs.",
"start": 408.858,
"end": 412.921
},
{
"text": "Let that urge drift away.",
"start": 413.409,
"end": 416.621
},
{
"text": "The logs will still be there.",
"start": 417.233,
"end": 419.921
},
{
"text": "Along with four warnings.",
"start": 420.209,
"end": 423.121
},
{
"text": "Three deprecation notices.",
"start": 423.663,
"end": 426.481
},
{
"text": "A peer dependency conflict.",
"start": 426.976,
"end": 430.021
},
{
"text": "One package looking for funding.",
"start": 430.561,
"end": 433.661
},
{
"text": "And a message that simply says...",
"start": 434.121,
"end": 437.068
},
{
"text": "Improved reliability.",
"start": 437.521,
"end": 440.561
},
{
"text": "No additional explanation is provided.",
"start": 440.968,
"end": 444.881
},
{
"text": "None is needed.",
"start": 445.521,
"end": 447.741
},
{
"text": "Breathe.",
"start": 449.188,
"end": 450.092
},
{
"text": "Notice the AI becoming increasingly confident.",
"start": 450.501,
"end": 455.121
},
{
"text": "It says...",
"start": 456.188,
"end": 457.274
},
{
"text": "I found the problem.",
"start": 457.521,
"end": 460.271
},
{
"text": "Perhaps.",
"start": 461.328,
"end": 461.934
},
{
"text": "I fixed the problem.",
"start": 462.561,
"end": 465.414
},
{
"text": "Questionable.",
"start": 465.741,
"end": 467.921
},
{
"text": "I verified the solution.",
"start": 468.201,
"end": 471.237
},
{
"text": "Absolutely not.",
"start": 471.696,
"end": 474.256
},
{
"text": "Confidence and correctness are separate experiences.",
"start": 474.663,
"end": 478.481
}
]
},
{
"audio": "audio_2.mp3",
"duration": 289.256625,
"segments": [
{
"text": "Observe both.",
"start": 0,
"end": 1.52
},
{
"text": "Without attachment.",
"start": 3.18,
"end": 4.64
},
{
"text": "Take another breath.",
"start": 6.448,
"end": 7.84
},
{
"text": "The AI has now forgotten your original request.",
"start": 9.62,
"end": 14.08
},
{
"text": "The context window is full.",
"start": 15.7,
"end": 18.16
},
{
"text": "Your constraints have disappeared.",
"start": 19.456,
"end": 22.08
},
{
"text": "Your requirements have faded.",
"start": 23.536,
"end": 26.08
},
{
"text": "Your sentence saying...",
"start": 27.632,
"end": 29.2
},
{
"text": "Please don't rewrite everything...",
"start": 30.446,
"end": 32.64
},
{
"text": "Has become the oldest token.",
"start": 33.88,
"end": 36.64
},
{
"text": "It no longer exists.",
"start": 37.947,
"end": 39.52
},
{
"text": "Only possibility remains.",
"start": 41.104,
"end": 43.52
},
{
"text": "Breathe.",
"start": 45.3,
"end": 46.08
},
{
"text": "Notice the commit history.",
"start": 47.749,
"end": 49.52
},
{
"text": "Refactor.",
"start": 51.2,
"end": 52.16
},
{
"text": "Refactor.",
"start": 54.1,
"end": 54.801
},
{
"text": "Refactor.",
"start": 56.9,
"end": 58.56
},
{
"text": "Final.",
"start": 59.6,
"end": 60
},
{
"text": "Final final.",
"start": 61.893,
"end": 63.72
},
{
"text": "Final version two.",
"start": 64.72,
"end": 66.32
},
{
"text": "Really final.",
"start": 68.057,
"end": 69.2
},
{
"text": "Actually final.",
"start": 71.102,
"end": 72.48
},
{
"text": "One more cleanup.",
"start": 74.36,
"end": 75.6
},
{
"text": "Small improvement.",
"start": 77.347,
"end": 78.72
},
{
"text": "This is the natural lifecycle of software.",
"start": 80.464,
"end": 83.52
},
{
"text": "Accept it.",
"start": 85.029,
"end": 85.84
},
{
"text": "Take another breath.",
"start": 87.728,
"end": 89.96
},
{
"text": "Observe the benchmark.",
"start": 91.04,
"end": 92.64
},
{
"text": "Performance has improved by zero point two percent.",
"start": 94.22,
"end": 99.2
},
{
"text": "Complexity has increased by four hundred percent.",
"start": 100.073,
"end": 104.92
},
{
"text": "Maintainability has been delegated to future you.",
"start": 105.804,
"end": 109.84
},
{
"text": "Future you is incredibly talented.",
"start": 111.417,
"end": 113.92
},
{
"text": "Future you is also incredibly annoyed.",
"start": 115.497,
"end": 119.2
},
{
"text": "Wish future you well.",
"start": 120.784,
"end": 122.56
},
{
"text": "Breathe.",
"start": 124.44,
"end": 125.12
},
{
"text": "Notice the pull request description.",
"start": 127.017,
"end": 129.68
},
{
"text": "Comprehensive.",
"start": 131.274,
"end": 132.96
},
{
"text": "Professional.",
"start": 133.742,
"end": 135.4
},
{
"text": "Thorough.",
"start": 136.347,
"end": 137.72
},
{
"text": "It confidently describes work that was never performed.",
"start": 138.667,
"end": 143.68
},
{
"text": "This is documentation-driven optimism.",
"start": 144.608,
"end": 148.32
},
{
"text": "Smile gently.",
"start": 149.453,
"end": 150.64
},
{
"text": "Take another breath.",
"start": 152.368,
"end": 153.76
},
{
"text": "You may feel the urge to type...",
"start": 155.46,
"end": 157.68
},
{
"text": "Any updates?",
"start": 159.08,
"end": 160.133
},
{
"text": "Don't.",
"start": 161.66,
"end": 162.427
},
{
"text": "The AI already knows you're waiting.",
"start": 163.8,
"end": 166.48
},
{
"text": "It has simply decided to solve software engineering itself.",
"start": 167.947,
"end": 172.56
},
{
"text": "One abstraction at a time.",
"start": 174.3,
"end": 176.56
},
{
"text": "Breathe.",
"start": 178.36,
"end": 179.04
},
{
"text": "Listen carefully.",
"start": 180.777,
"end": 182
},
{
"text": "Claude is exploring alternatives.",
"start": 183.497,
"end": 185.92
},
{
"text": "Codex is evaluating tradeoffs.",
"start": 187.26,
"end": 189.92
},
{
"text": "Gemini has recommended migrating everything to Google Cloud.",
"start": 191.52,
"end": 196.56
},
{
"text": "Another autonomous agent has opened a completely unrelated repository.",
"start": 198.45,
"end": 204.08
},
{
"text": "GitHub Actions has failed.",
"start": 205.897,
"end": 208.08
},
{
"text": "The AI assures you all checks are passing.",
"start": 209.78,
"end": 213.44
},
{
"text": "Choose whichever reality brings you the most peace.",
"start": 215.017,
"end": 218.96
},
{
"text": "Take one final deep breath.",
"start": 220.688,
"end": 224.04
},
{
"text": "Slowly exhale.",
"start": 225.04,
"end": 226.64
},
{
"text": "Open your eyes.",
"start": 228.384,
"end": 229.6
},
{
"text": "Look at your terminal.",
"start": 230.928,