-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zsh_history
2979 lines (2971 loc) · 60.7 KB
/
.zsh_history
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
source ~/.zshrc
source ~/.zshrc
nene
source ~/.zshrc
z ~/GIT/fzf-tab
git pull
z ../
[200~ git clone https://github.com/zsh-users/zsh-completions.git
git clone https://github.com/zsh-users/zsh-completions.git\
z zsh-completions
z ../
enable-fzf-tab
bindkey "^I"
enable-fzf-tab
bindkey "^I"
rg wumpus
hx ~/ZGMF-X20A/zellij/config.kdl
broot
hx wumpus.lp
z wumpus
hx wumpus.lp
hx ~/.config/zsh/export
hx ~/.zshrc
hx ~/.zshrc
hx ~/.zshrc
sudo dnf reinstall zsh
rm -f ~/.zcompdump; compinit
source ~/.zshrc
source ~/.zshrc
source ~/.zshrc
source ~/.zshrc
enable-fzf-tab
"^I" fzf-tab-complete
bindkey "^I"
source ~/.zshrc
source ~/.zshrc
rm -f ~/.zcompdump; compinit
source ~/.zshrc
source ~/.zshrc
z ZGMF-X20A/zsh
hx shell-integration
hx foot
z zsh-autocomplete
z ../
rip zsh-autocomplete
hx zprofile
bash -c "$(curl --fail --show-error --silent --location https://raw.githubusercontent.com/zdharma-continuum/zinit/HEAD/scripts/install.sh)"\
zinit self-update
source ~/.zshrc
zinit self-update
source ~/.zshrc
toggle-fzf-tab
source ~/.zshrc
source ~/.zshrc
source ~/.zshrc
source ~/.zshrc
source ~/.zshrc
clingo wumpus.lp
source .zshrc
hx .config/broot/verbs.hjson
source .zshrc
source .zshrc
broot
source .zshrc
zellij --session-stop
zellij --help
zellij kill-all-sessions
pip check unittest
pip List
pip list
z raindeer
z src
hx argument_preprocessing.py
pip list
pip install unittest
z raindeer
gitui
git pull
git checkout Sphinx_pp_docs
cd docs
sphinx-quickstart
make builder
make html
firefox build/html/index.html
z ../
z docs
z source/_static
z ../
bat conf.py
bat index.rest
bat index.rst
hx conf.py
z ../
z source
hx conf.py
sphinx-build -b html docs/source docs/build
z raindeer
sphinx-build -b html docs/source docs/build
z docs/build/
z html
z ../
firefox index.html
z ../
z ../
firefox docs/build/html/index.html
pip install sphinx sphinxcontrib-napoleon
hx docs/source/conf.py
z html
z raindeer
hx docs/source/conf.py
sphinx-build -b html docs/source docs/build
firefox docs/build/html/index.html
firefox docs/build/index.html
hx docs/source/conf.py
Run `sphinx-apidoc -o ./source /src`
Run `sphinx-apidoc -o ./source ../../src`
sphinx-apidoc -o ./source ../../src
sphinx-apidoc -o ./source src
make html
z source
z ../
rip source
z docs/source
sphinx-apidoc -o ./source ../../src
make html
rip source
rip test.py
sphinx-apidoc -o ../../src
sphinx-apidoc -o . ../../src
make html
z raindeer
sphinx-build -b html docs/source docs/build
hx docs/source/conf.py
sphinx-build -b html docs/source docs/build
z src
bat user_stories.py
rip between_years.py fourier.py
sphinx-build -b html docs/source docs/build
z ../
sphinx-build -b html docs/source docs/build
firefox docs/build/index.html
touch .gitlab-ci.yml
hx .gitlab-ci.yml
git pull
git checkout main
git pull
git pull
git checkout Sphinx_pp_docs
rip .gitlab-ci.yml
z docs
rip build source Makefile make.bat
z ../
sphinx-quickstart docs
hx docs/conf.py
z docs
sphinx-apidoc -o . ../src -f
bat dataframe_helper.rst
bat data_helper.rst
make html
open _build/html/index.html
firefox _build/html/index.html
hx conf.py
make html
firefox _build/html/index.html
bat data_helper.rst
bat index.rst
bat user_stories.rst
gitui
hx conf.py
make html
hx conf.py
make html
firefox _build/html/index.html
hx architecture.md
make html
firefox _build/html/index.html
hx architecture.md:q
hx conf.py
make html
pip install myst_parser
hx conf.py
make html
firefox _build/html/index.html
pip install recommonmark
hx conf.py
make html
firefox _build/html/index.html
firefox _build/html/index.html
hx index.rst
make html
firefox _build/html/index.html
hx conf.py
hx index.rst
make html
firefox _build/html/index.html
z ../
hx requirements.txt
git stash
git pull
git rebase main
git stash apply
gitui
git push
git pull
git --reaply-cherry-picks
git pull --reapply-cherry-picks
git pull
git push
sphinx-autogen docs/index.rst
sphinx-apidoc -o docs/ src/ -f
z docs
bat data_helper.rst
sphinx-apidoc -o docs/ src/
sphinx-apidoc -o . ../src
z raindeer
touch notes.txt
hx notes.txt
git pull
gitui
git stash
git checkout main
git pull
git pull
git checkout Sphinx_pp_docs
git pull
firefox _build/html/index.html
z docs
make html
make html
firefox _build/html/index.html
gitui
cargo install tokei
z ../
tokei ./src ./tests
tokei ./src/*.py ./tests/*.py
z src
tokei *.py
z ../tests
tokei */*.py
z ../src
tokei dwd_downloader.py
tokei */*.py
tokei ./*/*.py
z raindeer
z docs/source
touch test.py
hx test.py
python test.py
hx test.py
hx test.py
python test.py
hx test.py
python test.py
hx test.py
python test.py
hx test.py
python test.py
hx test.py
python test.py
hx test.py
python test.py
hx test.py
hx test.py
python test.py
hx test.py
python test.py
hx test.py
hx test.py
python test.py
hx test
hx test.py
python test.py
hx test.py
hx test.py
pip install sphinx-rtd-theme
z raindeer
z raindeer
git pull
git config pull.ff
git pull
git config pull.rebase
git pull
git pull.rebase
git checkout main
git pull
git push
git stash list
git stash drop
git stash list
git stash clear
git checkout Sphinx_pp_docs
git pull
z src
python test.py
python test.py
brew install wezterm
brew tap wez/wezterm-linuxbrew
brew install wezterm
wezterm
sudo dnf remove foot
reboot
z raindeer
git pull
git config pull.ff
git pull
git config pull.rebase
git pull
git pull.rebase
git checkout main
git pull
git push
git stash list
git stash drop
git stash list
git stash clear
git checkout Sphinx_pp_docs
git pull
z src
python test.py
python test.py
brew install wezterm
brew tap wez/wezterm-linuxbrew
brew install wezterm
wezterm
sudo dnf remove foot
reboot
wezterm ls-fonts --list-system
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
z ZGMF-X20A
hx ~/.zshrc
source .zshrc
mv .zshrc .zshrc.bak
source .zshrc
touch .zshrc
source .zshrc
rip .zshrc
rm .zshrc
mv .zshrc.bak .zshrc
source .zshrc
bat zhenv
bat .zhenv
rip .zhenv
rip chatgpt_api
bat .zprofile
bat .zsh_history
la .subversion
bat .subversion/servers
bat .bash_history
bat .bash_rc
bat .bashrc
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.zshrc
source ~/.zshrc
hx ~/.config/wezterm/wezterm.lua
l3 ~/GIT
hx ~/.config/wezterm/wezterm.lua
sudo dnf update
flatpak list
flatpak list
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
hx ~/.config/wezterm/wezterm.lua
flatpak update
hx ~/.config/wezterm/wezterm.lua
flatpak update
mv .zsh_history .zsh_history_old
strings .zsh_history_old > .zsh_history
fc -R .zsh_history
flatpak update com.brave.Browser
flatpak update org.fedoraproject.Platform
flatpak update
z ZGMF-X20A/zsh
la
hx foot
rip foot
hx shell-integration
la
rip export
bat zprofile
la
hx alias
la
rip alias
bat zellij_autostart
rip zellij_autostart
la
bat shell-integration
ヤ "updated zsh"
source ~/.zshrc
jit "update to zsh2"
jit  ½ã‚ƒ‚ャƒ·ãƒ£ƒ§ã‚¤ãƒ£ƒ£ãƒ£ƒ¨â€ƒ½
hx ~/.zshrc
source ~/.zshrc
hx ~/.zshenv
hx ~/.zprofile
fzt
fzf
fzf
fzt
zellij run -- zellij-runner
z ../zellij
la
hx config.kdl
z ZGMF-X20A/zsh
la
hx shell-integration
z ../zellij
source .zshrc
source .zshrc
source .zshrc
source .zshrc
source .zshrc
la
z ZGMF-X20A
la
source .zshrc
source ~/.zshrc
la
bat .zshrc
bat ~/.zshrc
la
zellij
ãã
ãã
la
ã‚
source ~/.zshrc
ã‚
ã‚
hx ~/.zshrc
source ~/.zshrc
z GIT
git clone https://github.com/manaakiwhenua/pycrown.git
z pycrown
pip install -r requirements.txt
python setup.py install
pip install Cython
python setup.py install
pycrown
sudo python setup.py install
pip install Cython
sudo python setup.py install
pip install cythonize
pip install lasio
hx ~/.zshrc
z ../
rip pycrown
la
ã®
a
sudo dnf update
z raindeer
git pull
git checkout main
git pull
ゃ‚
hx ~/.zshrc
gitup
gitup
hx ~/.zshrc
git pull
source .zshrc
source ~/.zshrc
source ~/.zshrc
source ~/.zshrc\
source ~/.zshrc\
source ~/.zshrc
z raindeer
hx ~/ZGMF-X20A/zsh/zinit_plug
z ~/ZGMF-X20A/zsh
la
hx zinit_plugs
source ~/.zshrc
la
z zinit self-update
zinit self-update
zinit update zsh-completions
hx zinit-plugs
ls
hx zinit_plugs
source ~/.zshrc
z ~
la
z ZGMF-X20A
ヤ "changed ZSH, hopefully no more crashes"
ãã
a
z raindeer
git pull
ã®
ã‚
ã®
pip install arcpy
pdal --version
R
R
numpy --version
numpy
pip list numpy
pip list | grep numpy
z raindeer
pyton -m unittest
python -m unittest
python -m unittest
git pull
z src
ls
hx dataframe_helper.py
git pull
git checkout Sphinx_pp_docs
git pull
git config pull.ff
git pull
z ../
hx README.md
git merge origin/main Sphinx_pp_docs
git mergetool
git mergetool
git merge
git rm src/fourier.py
git rm src/raindeer.ipynb
git merge
git commit -m "rebase"
git merge
git pull
git config pull.ff
git pull
git mergetool
git pull
git stash
git pull
git pull origin main
git rebase --abort
git push
git pull
git rebase Sphinx_pp_docs
git rebase Sphinx_pp_docs main
la
git pull
la
l2
rip src/fourier.py
git rebase --continue
git checkout main
git rebase stop
git rebase --abort
git pull
git push
git rebase --abort
git rebase --abort
git pull
z ../
rip raindeer
git clone [email protected]:jubruns/raindeer.git
z raindeer
la
git pull
git checkout Documentation
la
la
hx README.md
z docs
la
bat architecture.md
z ../
sphinx-quickstart
la
z rip _static _build _templates conf.py make.bat makefile
la
rip _build
rip _static
rip _templates
rip conf.py
rip index.rst
rip Makefile
rip make.bat
la
z docs
la
sphinx-quickstart
la
hx conf.py
hx conf.py
sphinx-apidoc -o . ../src
la
hx data_helper.rst
make html
make
make html
\
Extension error:
pip install autodoc
make html
firefox docs/_build/index.html
firefox _build/html/index.html
make html
make html
make html
make html
make html
hx conf.py
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
hx conf.py
make html
make html
firefox _build/html/index.html
sphinx-apidoc -o . ../src
sphinx-apidoc -o . ../src -f
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
hx dataframe_helper.rst
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
git pull
git checkout Testing
z ../
python -m unittest
hx ~/.config/zellij/config.kdl
git stash
git pull
git config pull.ff
git pull
git checkout Testing
git pull
hx src/dataframe_helper.py
git config pull.ff
git pull
git rebase main Testing
git pull
la
git rebase Testing main
git checkout main
git pull
git rebase Testing main
git rebase main Testing
git checkout Testing
git stash
git diff
git push
git pull
git rebase main Testing
hx src/dataframe_helper.py
git stash list
git stash show
pycodestyle src/data_helper.py
pycodestyle src/data_helper.py
pycodestyle src/data_helper.py
git stash drop
la
python -m unittest
python -m coverage run -m unittest\
pip install coverage
python -m coverage run -m unittest
python -m coverage report
python -m coverage report
python -m unittest
python -m unittest
python -m unittest
python -m unittest
python -m unittest
python -m coverage run -m unittest
python -m coverage report
la
python -m coverage txt
coverage help
python -m coverage report
python -m unittest
python -m coverage run -m unittest
python -m coverage report
git push
git pull
python -m coverage run -m unittest
python -m coverage run -m unittest
python -m coverage run -m unittest
python -m coverage run -m unittest
python -m coverage report
make html
z docs
make html
firefox _build/html/index.html
z ../
z src
tokei src/*.py
tokei src tests
tokei
tokei . ../tests
tokei dataframe_helper.py
tokei data_helper.py
z ../
python -m unittest
z src
la
rip fourier.py
rip between_years.py
../
git fetch origin
git checkout -b 'simplePlot' 'origin/simplePlot'\
la
git mergetool
git merge-index
z ../
python -m unittest
python -m unittest
python -m unittest
python -m unittest
python -m unittest
python -m unittest | grep dwd
python -m unittest
\:q
git pull
z src
ls
hx dataframe_helper.py
git pull
git checkout Sphinx_pp_docs
git pull
git config pull.ff
git pull
z ../
hx README.md
git merge origin/main Sphinx_pp_docs
git mergetool
git mergetool
git merge
git rm src/fourier.py
git rm src/raindeer.ipynb
git merge
git commit -m "rebase"
git merge
git pull
git config pull.ff
git pull
git mergetool
git pull
git stash
git pull
git pull origin main
git rebase --abort
git push
git pull
git rebase Sphinx_pp_docs
git rebase Sphinx_pp_docs main
la
git pull
la
l2
rip src/fourier.py
git rebase --continue
git checkout main
git rebase stop
git rebase --abort
git pull
git push
git rebase --abort
git rebase --abort
git pull
z ../
rip raindeer
git clone [email protected]:jubruns/raindeer.git
z raindeer
la
git pull
git checkout Documentation
la
la
hx README.md
z docs
la
bat architecture.md
z ../
sphinx-quickstart
la
z rip _static _build _templates conf.py make.bat makefile
la
rip _build
rip _static
rip _templates
rip conf.py
rip index.rst
rip Makefile
rip make.bat
la
z docs
la
sphinx-quickstart
la
hx conf.py
hx conf.py
sphinx-apidoc -o . ../src
la
hx data_helper.rst
make html
make
make html
\
Extension error:
pip install autodoc
make html
firefox docs/_build/index.html
firefox _build/html/index.html
make html
make html
make html
make html
make html
hx conf.py
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
hx conf.py
make html
make html
firefox _build/html/index.html
sphinx-apidoc -o . ../src
sphinx-apidoc -o . ../src -f
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
hx dataframe_helper.rst
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
make html
firefox _build/html/index.html
git pull
git checkout Testing
z ../
python -m unittest
hx ~/.config/zellij/config.kdl
git stash
git pull
git config pull.ff
git pull
git checkout Testing
git pull
hx src/dataframe_helper.py
git config pull.ff
git pull
git rebase main Testing
git pull
la
git rebase Testing main
git checkout main
git pull
git rebase Testing main
git rebase main Testing
git checkout Testing
git stash
git diff
git push
git pull
git rebase main Testing
hx src/dataframe_helper.py
git stash list
git stash show
pycodestyle src/data_helper.py
pycodestyle src/data_helper.py
pycodestyle src/data_helper.py
git stash drop
la
python -m unittest
python -m coverage run -m unittest\
pip install coverage
python -m coverage run -m unittest
python -m coverage report
python -m coverage report
python -m unittest
python -m unittest
python -m unittest
python -m unittest
python -m unittest
python -m coverage run -m unittest
python -m coverage report
la
python -m coverage txt
coverage help
python -m coverage report
python -m unittest
python -m coverage run -m unittest
python -m coverage report
git push
git pull
python -m coverage run -m unittest
python -m coverage run -m unittest
python -m coverage run -m unittest
python -m coverage run -m unittest
python -m coverage report
make html
z docs
make html
firefox _build/html/index.html
z ../
z src
tokei src/*.py
tokei src tests
tokei
tokei . ../tests
tokei dataframe_helper.py
tokei data_helper.py
z ../
python -m unittest
z src
la
rip fourier.py
rip between_years.py
../
git fetch origin
git checkout -b 'simplePlot' 'origin/simplePlot'\
la
git mergetool
git merge-index
z ../
python -m unittest
python -m unittest
python -m unittest
python -m unittest
python -m unittest
python -m unittest | grep dwd
python -m unittest
\:q
hx ../config.yaml
z ../
z src
hx dataframe_helper.py
hx raindeer.py
z ../
la
hx README.md
z src
hx data_helper
hx data_helper.py
la
hx data_helper.py
git checkout main
git pull
bat raindeer.py
la
hx dataframe_helper.py
la
hx dataframe_helper.py
hx test.py
z ../
la
git pull
la
python -m unittest
hx dwd_downloader.py
pycodestyle dataframe_helper.py
pycodestyle dataframe_helper.py
pycodestyle dataframe_helper.py
pycodestyle dataframe_helper.py