-
Notifications
You must be signed in to change notification settings - Fork 0
/
history.txt
7856 lines (7855 loc) · 184 KB
/
history.txt
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
nvim ~/.config/nushell/config.nu
nvim ~/.config/nushell/env.nu
echo $EDITOR
echo $env.EDITOR
echo $env.XDG_CONFIG_HOME
echo $env.LC_ALL
lazygit
whereis lazygit
ls .cargo/bin/
bat
echo $env.HOME/bin
cd .config/nushell/
man nu
def --env mkcd [dir: path] { mkdir -p $dir && cd $dir }
def --env mkcd [dir: path] { mkdir -p $dir ; and cd $dir }
def --env mkcd [dir: path] { mkdir $dir ; and cd $dir }
mkdir temp/temp
rmdir temp/temp/
echo ($env.HOME + "hello")
alias nvif = nvim \(fzf)
echo $env.config
echo $env.config-path
echo $nu.config-path
yay -Ss nu-lsp
yay -Ss nu
yay -Ss nushell
nvim ../nvim/lua/autocmd.lua
exec alias.nu
nvim alias.nu
eval ls
nohup neovide alias.nu out+err>/dev/null &
n nohup.out
disown
launch neovide alias.nu
ggrks how to config nushell
ls | where extension == 'nu'
ls | where name ends-with .nu
rm nohup.out
fname.zip | str ends-with .zip
exho fname.zip | str ends-with .zip
echo fname.zip | str ends-with .zip
echo fname.zip | str ends-with .zi
mkcd temp
if "fname.zip" | str ends-with 'zip' { echo 'true' }
true && false
true || false
mkdir temp and cd temp
rmdir temp/ and/ cd
mkdir temp ; cd temp
false ; cd temp
test 5 < 3
test '5 < 3'
test '5 > 3'
true ; echo 'true'
false ; echo 'true'
false and echo 'true'
false try echo 'true'
try
and
$env.LAST_EXIT_CODE
../../project/c/rpx
alias cd = cd
^cd -
match 'hello.zip' { (_ + '.zip') => echo 'true', _ => false }
match 'hello.zip' { (_ + '.zip') => echo 'true' }
match 'hello.zip' { (_ + '.zip') => true }
match 'hello.zip' { (_ + '.zip') => true, _ => false }
match 'hello.zip' { (str end-with .zip) => true, _ => false }
match 'hello.zip' { (str 'hello.zip' end-with .zip) => true, _ => false }
if (hello.zip | str end-with .zip) {true}
if (hello.zip | str end-with '.zip') {true}
if ('hello.zip' | str end-with '.zip') {true}
if ('hello.zip' | str ends-with .zip) {true}
if ('hello.zip' | str ends-with .zip) {false}
match 'hello.zip' { (str ends-with .zip) => true, _ => false }
nvim .zshrc
zoxide init nushell | save -f zoxide.nu
n zoxide.nu
zoxide query
z ar
ls | get modified
ls | get name | str join
ls | get name | str join ' '
ls -al
rmdir temp/
date now | $in + iday
date now | $in + 1day
date now | $in + 1month
date now | $in + 1m
date now | $in + 10day
date now | $in + 10min
alias.nu | path parse
echo alias.nu | path parse
echo alias.nu | path parse | pick extension
echo alias.nu | path parse | get extension
echo ~/alias.nu | path parse | get extension
extract alias.nu
echo 'abc.tar.gz' | path parse
path parse -h
nu --ide-ast alias.nu
shut
bat project/c/rpx/README.md
fastfetch --fake windows
fastfetch --list-logo
man fastfetch
fastfetch --list-logos
fastfetch --logo nixos
ansi blue
echo hello(ansi blue)world
starshop
starship init nushell
starship init nu
starship init nu | source
starship init nu | exec
./.config/nushell/
starship init nu | save -f starship.nu
let $val = (echo 'hello world')
decode -h
../.config/nushell/
open alias.nu
bat makefile
open /etc/keyd/default.conf
/etc/keyd/default.conf | get newlayer
open /etc/keyd/default.conf | get newlayer
open ~/keylayout.json
open ~/keylayout.json | get keys
ps | get mem
ps | get name | get vivaldi
ps | get name | get systemd
get -h
ps | get name.vivaldi
ps | get name.systemd
ps | get name | get 296
ps | get name.296
open compile_commands.json
open compile_commands.json|to toml
open compile_commands.json|to csv
open compile_commands.json|to text
open compile_commands.json|to xml
open compile_commands.json|to yaml
in -h
ps | find nu | get pid
ps | find nua | get pid | is-empty
ps | find nu | get pid | is-empty
z ../../../.config/nushell/
mut $val = null
echo $val
$val = 4
ps | get pid name | find nu
ps | select pid name | find nu
wait-for-process-done-byname nu
wait-for-process-done-byname nvim
ps | select name | where nu
ps | select name | where name == nu
ps | where name == nu
wait-for-process-done pid 33957
ps | where pid == 33957
ps | where pid == 33957 | is-not-empty
ps | where pid == 39857 | is-not-empty
ps | where name == 50 | is-not-empty
ps | where pid == '33957'
waitpid -h
man waitpid
wait-for-process-done name nu
ps | where 'name' == 'vivaldi-bin'
wait-for-process-done 'name' 'vivaldi-bin'
ps | where 'name' == 'vivaldi-bin' | is-not-empty
ps | select name | where vivaldi-bin
ps | select name | where name == vivaldi-bin
ps | select name | where name ==vivaldi-bin
wait-for-process-done name vivaldi-bin
wait-for-process-done pid 42591
shutdown-when-done
source shutdown-when-done.nu
wait-for-process-done name vivaldi
def f [--o: int] { ^echo $o }
def f [--o: int] { if $o {^echo $o} }
def f [--o: int] { if $o? {^echo $o} }
def f [--o: int] { if $o.? {^echo $o} }
def f [--o: int] { if $o != null {^echo $o} }
null | into bool
../neovim/
ps | find zsh
ps | find nu
open monster-vimmer.txt
n monster-vimmer.txt
sys
sys net
cpufreq-bench
cpupower
cpupower info
cpupower nonitor
cpupower monitor
sys users | table
ls **/*.json
open CMakePresets.json
http -h
help download
help curl
http get https://ourworldindata.org/life-expectancy
http get https://ourworldindata.org/life-expectancy | from xml
http get 'https://ourworldindata.org/life-expectancy' | from xml
http get 'https://ourworldindata.org/life-expectancy' | query db
http get 'https://ourworldindata.org/life-expectancy' | query web
http get 'https://ourworldindata.org/life-expectancy' | query web -h
query web -h
ps | uniq | wc
ps | wc
ps | select name | uniq
ps | select name | uniq | wc
ls **/*.zig
kill 104930
kill -h
ps | sort-by mem
memusage
memusage -h
memusage --help
yay -Ss emacs
yay -S emacs-wayland
smacs
rmf .emacs.d/
git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d
n .spacemacs
emacs
emacs -nw
yay -S superfile
yay -S go
z .config/superfile/
n config.toml
yay -S television
television
tv ~
tv env
tv -h
tv alias
../nushell/
n ../superfile/config.toml
term -h
term size
help term
yay -S dunst
dunst -h
dunst -print hello
dunstctl
dunstctl -h
dunstctl history
dunst
n ../mako/config
ls -l /etc/tlp.conf
^ls -l /etc/tlp.conf
n ~/rc/defaults.conf
nvimsudo /etc/tlp.conf
l /usr/share/tlp/defaults.conf
n ../hypr/hyprland.conf
yay -S fufexan
yay -Ss fufexan
yay -Ss fufexanrm `~/Downloads/audio (3).mp3`
rm `~/Downloads/audio (3).mp3`
ls -ald
ls -adl
ls -adlt
cd .emacs.d/
n init.el
n core/core-configuration-layer.el
nu --version
vi
which vi
version
version | pivot
glob **/*.c --depth 2
glob **/*.c --depth 3
glob -h
du -h
watch -h
loop -h
touch -h
echo 'hello' 'world'
echo 'hello<\n>'
echo -h
scope
uname | columns
columns -h
uname | describe
[[name, mem]; [1, 2]]
[[name, mem]; [1, 2]] | describe
drop -h
l | drop column 4
each -h
[[1 2 3 4 5]; [6 7 8 9 0]] | each {|l, r| $l + $r }
[[1, 2, 3, 4, 5]; [6, 7, 8, 9, 0]] | each {|l, r| $l + $r }
[[z, o, t, th, f]; [1, 2, 3, 4, 5]; [6, 7, 8, 9, 0]] | each {|l, r| $l + $r }
[1 2 3]
[1 2 3] | enumerate
[1 2 3] | each --keep-empty {|e| if $e == 2 { "found 2!"} }
[1 2 3] | each --keep-empty {|e| if $e == 2 { "found 2!"} } | describe
every -h
[["c1" "c2" "c3"];[1 2 3] [4 5 6]]
[[1 2 3] [4 5 6]] | each {|l, r| $l + $r }
[[1 2 3] [4 5 6]] | each {|l| $l }
[[1 2 3] [4 5 6]] | each {|l| each { |r| $l + $r } }
[[1 2 3] [4 5 6]] | each {|l| each { |r| $l.item + $r } }
[[1 2 3] [4 5 6]] | enumerate | each {|l| each { |r| $l.item + $r } }
[[1 2 3] [4 5 6]] | each {|l| each { |r| $l.$r + $r } }
[[1 2 3] [4 5 6]] | each {|l| each { |r| $l.0 + $r } }
[[1 2 3] [1 2 3]]
[[1 2 3]; [1 2 3]]
[[1 4] [2 5] [3 6]] | each {|l| echo $l }
[[1 4] [2 5] [3 6]] | each {|l| $l.0 + $l.1 }
[[1 2] 3 4]
sys cpu
sys disks
sys temp
sys users | flatten
sum -h
ls | group-by type
items -h
history | length
history
history -h
history | were command =~ yay
history | where command =~ yay
echo 'a' 'b'
echo 'a' 'b' | lines
echo 'a' 'b' | str join |lines
(^echo a; ^echo b) | lines
roll -h
ls | split-by type
sys mem
sys mem | split-by 1
sys mem | split-by total
ls -dt
take -h
[[name mem]; [hello 1]]
[[name mem]; [hello 1]] | describe
[[name mem]; [hello 1]] | first
[[name mem]; [hello 1]] | take 1
[[name mem]; [hello 1] [world 2]] | take 1
[[name mem]; [hello 1] [world 2]] | first 2
[[name mem]; [hello 1] [world 2]] | take 2
first -h
1..100
tee {1..100 | print}
tee {1..100 | print} | $in * 5
tee -h
print -h
100 | print 10
ps | where name =~ vivaldi
port 3121 4000
port 0 4000
port -h
[{x:12, y:15}, {x:8, y:9}], [[x, y]; [12, 15], [8, 9]]
[[{x:12, y:15}, {x:8, y:9}], [[x, y]; [12, 15], [8, 9]]]
{name:"Nushell", lang: "Rust"}
[[{x:12, y:15}, {x:8, y:9}], [[x, y]; [12, 15], [8, 9]]] | describe
desc -h
describe -h
ls | describe -d
{shell:'true', uwu:true, features: {bugs:false, multiplatform:true, speed: 10}, fib: [1 1 2 3 5 8], on_save: {|x| $'Saving ($x)'}, first_commit: 2019-05-10, my_duration: (4min + 20sec)}
*.c | describe
echo *.c | describe
echo *.c
echo *.c | into glob | describe
echo *.c | into glob
let b = { $in.name.0 | path exists }
ls | do $b
[[name, age]; [a 1] [b 2] [c 3]]
'apl' =~ '^\w{4}'
'apl' =~ '^\w{3}'
ansi -h
whoami -h
$"Captain (whoami)"
whereis nvim
which nvim -a
which -a nvim
which -a vim
which vim
which vim -a
which which -a
1..3..10
10..1
10..3..1
vivaldi in (ps)
vivaldi in (ps | get name)
ps | get name
ps | get name | describe
help in
help operators in
let psn = (ps | get name)
vivaldi in $psn
$psn
date now | date to-record
date now | date to-record | $in.year
let carapace_completer = {|spans|<\n>carapace $spans.0 nushell ...$spans | from json}
do $carapace_completer git
open .config/nushell/history.txt
cd (tv | path dirname)
ls | where type == dir | each { |it| $it.name} | str join (char nl) | tv
ls -r | where type == dir | each { |it| $it.name} | str join (char nl) | tv
../../../.config/nushell/
source $nu.config-path
git remote add origin https://github.com/koyamahayato2357/nushell.git
g log --name-only --graph --all --date=format-local:'%Y-%m-%d %H:%M:%S' --format='%C(auto)%h%d %cd %s'
g l --name-only
random dice
random dice -d 100 -n 10
random dice -d 100 -s 10
random chars
random binary
random binary 10
debug
debug info
man exec
banner -h
banner
create_left_prompt -h
create_right_prompt
math -h
5 ** 5
5 ** 5 ** 2
5 ** 5 ** 3
5 ** 5 ** 4
5 ** 5 ** 5
5 ** 5 ** 6
5 ** (5 ** 5)
do -i -h
../project/
mkcd shell
cd shell/
n ../../.config/nushell/alias.nu
rmdir ../and/ ../cd/
g cl https://github.com/nushell/nu_scripts.git
cd nu_scripts/modules/git/
source git.nu
gl 50
git age
'git age'
git\ age
../nvim/
n mod.nu
../prompt/
source starship.nu
create_left_prompt
gl
z project/shell/nu_scripts/modules/prompt/
n full-line.nu
spf
cd weather/
source get-weather.nu
get_my_location
get_my_location 0
get_my_location 1
get_my_location 2
weather_emoji_table
n get-weather.nu
get_weather
clip
cat $nu.current-exe
kill 109707
z project/shell/nu_scripts/
cd aliases/
n bat/bat-aliases.nu
n git/git-aliases.nu
cd modules/
n fuzzy/
cat $nu.history-path
source fuzzy/fuzzy_command_search.nu
fuzzy-command-search
help commands
help commands | get name
help commands | select name
n fuzzy/fuzzy_command_search.nu
help commands | select name | str join
help commands | select name | describe
help commands | select name | each {|it| echo $it.name }
help commands | select name | each {|it| ^echo $it.name }
help commands | select name | to toml
help commands | select name | to json
help commands | select name | to json | to toml
help commands | select name | to json | to text
help commands | select name | to json | to csv
help commands | select name | to csv
help commands | select name | to csv | head
help commands | select name | to csv | tail -n +2
help commands | select name | to csv | tail -n +2 | uniq | head
help commands | select name | to csv | tail -n +2 | ^uniq | head
help commands | select name | to csv | tail -n +2 | ^uniq
help commands | select name | to csv | tail -n +2 | head
help commands | select name | to csv | tail -n +2 | tv
(help commands | select name | to csv | tail -n +2 | ^uniq | tv)
kill 113663
exec -h
xargs uniq
xargs ls
xargs
xargs xargs
ps | where name =~ nu
kill 125554
help commands | select name | to csv | tail -n +2 | ^uniq | tv
^fzf
cat $nu.history-path | ^fzf
z .config/nushell/
cat history.txt | uniq | wc
cat history.txt | ^uniq | wc
cat history.txt
cat history.txt | uniq
^uniq -h
^uniq --help
cat history.txt | awk '!seen[$0]++ { line[NR] = $0 } { delete line[NR-1] } END { for (i in line) print line[i] }'
open history.txt | uniq-by name
open history.txt | to toml | uniq-by name
open history.txt | to toml
open history.txt | to csv
open history.txt | to json
cat history.txt | to json
[(cat history.txt)]
[(cat history.txt)] | split -h
[(cat history.txt)] | lines
[(cat history.txt)] | split cell-path
[(cat history.txt)] | split row
[(cat history.txt)] | split list
[(cat history.txt)] | uniq
[(cat history.txt)].0
cat history.txt | table
cat history.txt | table -i
cat history.txt | table -i name
cat history.txt | table -i 0
[[name]; (cat history.txt)]
[[name]; [(cat history.txt)]]
cat history.txt | sort -u
sort -h
cat history.txt | sort | uniq
cat history.txt | ^sort -u
cat history.txt | ^sort | ^uniq
^echo -e 'apple\napple\nbanana'
^echo -e 'apple\napple\nbanana' | ^uniq
cat history.txt | sed 's/ \+$//' | ^sort | ^uniq
cat history.txt | sed 's/ \+$//' | ^sort | ^uniq | tv
save -g
z ../.config/nushell/
rg ansi
n env.nu
echo -e 'hello ' | str replace ' \+$' ''
echo 'hello ' | str replace ' \+$' ''
echo 'hello ' | str replace ' +$' ''
echo 'hello ' | str replace ' $' ''
echo 'hello ' | str replace (' $' | into glob) ''
echo 'hello ' | str replace ' +$' '' -r
cat $nu.history-path | str replace -r ' +$' ''
cat $nu.history-path | str replace -r ' +$' '' | ^sort | ^uniq
cat $nu.history-path | str replace ' +$' '' -r | ^sort | ^uniq
cat $nu.history-path | str replace ' +$' '' -r | ^sort -u
^echo 'hello\nhello'
^echo -e 'hello\nhello'
^echo -e 'hello\nhello' | str replace 'h' 'a'
^echo -e 'hello\nhello' | str replace 'h' 'a' -a
cat $nu.history-path | str replace ' +$' '' -ar | ^sort -u
^echo -e 'hello\nhello' | str replace 'o$' 'a' -a
^echo -e 'hello\nhello' | str replace 'o$' 'a' -ar
starship prompt --cmd-duration $env.CMD_DURATION_MS $"--status=($env.LAST_EXIT_CODE)" --terminal-width (term size).columns
starship prompt --right --cmd-duration $env.CMD_DURATION_MS $"--status=($env.LAST_EXIT_CODE)" --terminal-width (term size).columns
source config.nu
sys users
mkcd ~/project/zig/uniqu
zig build run src/main.zig
zig build run -- src/main.zig
zig test src/main.zig -- src/main.zig
zig test -h
zig test -h | grep arg
lldb zig-out/bin/uniqu
n /usr/lib/zig/std/mem/Allocator.zig
zig run src/main.zig -- temp.txt
zig run src/main.zig -- src/main.zig
valgrind zig-out/bin/uniqu
valgrind zig-out/bin/uniqu src/main.zig
rg uniq
./zig-out/bin/uniqu
cat src/main.zig | ./zig-out/bin/uniqu
mv ../uniqu/ ../superuniq
cd .
../../project/zig/superuniq/
zig clean
rmf .zig-cache/ zig-out/
$env.PATH
mkdir ~/bin
cp zig-out/bin/superuniq ~/bin/
superuniq
which superuniq
l ~/bin/
l zig-out/bin/
z nushell/
cat history.txt | superuniq > his.txt
cat history.txt | superuniq | save -f his.txt
n his.txt
rm his.txt
z project/zig/superuniq/
cat src/main.zig | wl-copy
n src/root.zig
rm src/root.zig
rm temp.txt
n src/version.c
~/proc/ChezScheme/
n s/cptypes.ss
n test/tests.zig
rmf .nix*
ls /
rm keylayout.json
l fonts/
rmf fonts/bdf/
yay -S platformio
pio
cd project/club/ctrlr/
python --version
yay -Ss python
yay -Ss python3
yay -S python310
n youken.txt
yay -S python36
l /usr/lib/python3.6/
grib --help
grid -h
n .config/hyprpanel/config.json
cd Pictures/
cd `Vivaldi Captures/`
lsix `2024-12-01 21.59.33 teams.microsoft.com 61bdaaae0d2f.png`
yay -S pinta
launch pinta
wl-copy --version
wl-copy --help
man wl-clipboard
cat "Pictures/Vivaldi Captures/2024-12-01 21.59.33 teams.microsoft.com 61bdaaae0d2f.png" | wl-copy
pinta
yay -Rsc pinta
yay -S krita
krita
yay -Rsc krita
yay -Ss tux paint
yay -S tuxpaint
tuxpaint
yay -Rsc tuxpaint
yay -S gimp
yay -Ss gimp
yay -Ss gimp wayland
gimp
yay -Rsc gimp
n `Downloads/test_1 1.ino`
cat youken.txt
z ../../zig/superuniq/
zoxide
echo $env.__zoxide_hooked
zoxide add
zoxide add ~/project/zig/superuniq/
zoxide add ~/.config/nushell/
wc history.txt
find -h
n cc.nu
n --clean src/evalfn.c
rg argc
rg spr
rg `=`
rg '`=`'
mkcd ~/project/club/
g cl https://github.com/ZigEmbeddedGroup/microzig.git --depth 1
cd microzig/
cd examples/stmicro/stm32/
l zig-out/firmware/STM32F103C8.elf
rg f446re
rg f446re -i
./examples/stmicro/stm32/
python3 gpt_repository_loader.py ~/project/c/rpx/ -o rpx.txt
ls *.mp3 | get name
ls *.mp3 | get name | each { |it| mv $it $"../Music/($it + 2.mp3)" }
l ../Music/
rmf Pinta/
rmf sway*
rmf neofetch/ GIMP/
rmf wofi/ unity3d/
mkcd starship
rmdir starship
touch starship.toml
echo $env.STARSHIP_SHELL
echo $env.STARSHIP_SESSION_KEY
rm starship.toml
n kritarc
rm krita*
n kxkbrc
n kscreenlockerrc
l ibus/
ps | find ibus
ibus
rmf ibus/
sway --help
l autostart/
rmdir autostart/
l dconf/
n zsh/fzf.zsh
n zsh/zoxide.zsh
fcitx --help
l fcitx/
n Trolltech.conf
l Kitware/
n Kitware/CMakeSetup.conf
yay -Ss baloo
rmf baloofilerc
^ls -R | grep baloo
yay -Rsc firefox
rm `Downloads/stm32f446re (1).pdf`
yay -Ss arm-none-abi
yay -Ss arm
yay -Ss arm-none-eabi
yay -S arm-none-eabi-gcc
arm-none-eabi-gcc --version
clang --target=arm-none-eabi
clang --target
mkcd project/club/raw
clang --target=arm-none-eabi -mcpu=cortex-m4 -mthumb -O2 -c main.c -o main.o
clang --target=arm-none-eabi -mcpu=cortex-m4 -mthumb -TSTM32F446RE.ld -o firmware.elf main.o -lnosys
clang --target=arm-none-eabi -mcpu=cortex-m4 -mthumb -TSTM32F446RE.ld -o firmware.elf main.o -lc -lnosys
n STM32F446RE.ld
ld --verbose
readelf -r .build/2411f779628ef21a6715c81b438f0b46/target/ansiesc.o
file .build/2411f779628ef21a6715c81b438f0b46/target/ansiesc.o
file .build/441c49f43cf3b6c23fb8af6cf506705c/target/ansiesc.o
readelf -r .build/441c49f43cf3b6c23fb8af6cf506705c/target/ansiesc.o
ls .cache/
readelf -r .build/441c49f43cf3b6c23fb8af6cf506705c/target/main.o
readelf -l .build/441c49f43cf3b6c23fb8af6cf506705c/target/main.o
readelf -l .build/441c49f43cf3b6c23fb8af6cf506705c/target/rpx
zoxide add ../../club/microzig/
z micro
cd port/stmicro/
cd stm32/
n src/generate.zig
rg linker
n tools/generate_linker_script.zig
z examples/stmicro/stm32/
rg f103c8
rg f103c8 -i
vim port/stmicro/stm32/src/chips/all.zig
n port/stmicro/stm32/src/chips/all.zig
n port/stmicro/stm32/src/Chips.zig
rg GlobalConfiguration
rg Target
ls port/stmicro/stm32/src/chips/all.zig
rg 103C8 port/stmicro/stm32/src/chips/all.zig
rg 446RE port/stmicro/stm32/src/chips/all.zig
n src/blinky.zig
l /usr/share/keyd/layouts/
ld.lld --verbose
ldconfig --help
lldb zig-out/bin/rpx
z blink
sudo rm -rf .deps/ build/
rg clang
rg CC
rg CC Makefile
rg CC CMakeLists.txt
echo $env.CC
n --clean src/main.c
rg feature
rg '3.0.x'
rg Feature
n CHANGELOG.md
z plugins/CopilotChat.nvim/
n lua/CopilotChat/init.lua
rg warn
n lua/CopilotChat/health.lua
rg removed
rg CopilotChat lua/
rmf plugins/CopilotChat.nvim/
rg nui
zig build run -t=bench
make run OL=3 T=bench
rg get_rtinfo
make run T=bench OL=2
zig build run -DT=bench --release=debug
cmake . --target build
cmake . build
rm -h
l ~/.local/share/Trash/
rmf llvm-project/
g cl https://github.com/llvm-project/llvm-project --depth 1
g cl https://github.com/llvm/llvm-project --depth 1
cd llvm-project/
cmake -G "Ninja" ../llvm -DLLVM_ENABLE_PROJECTS="clang;lld;clang-tools-extra" -DLLVM_TARGETS_TO_BUILD="X86" -DCMAKE_BUILD_TYPE=Release
cd proc/llvm-project/
ps | hypr
ps | find hypr
sudo systemctl stop hyprland
sudo systemctl stop hyprctl
kill 852
kill 664
ps | find ly
sudo kill 664
cat .histfile | awk '{ print $2 }'
cat .histfile | awk '{ print $2 }' | head
cat .histfile | awk '{ print $1 }' | head
cat .histfile | cut -d';' -f1 | head
cat .histfile | cut -d';' -f2 | head
yay -S pueue
pueue completions nu
pueue completions nushell
source -h
(which clang).path
(which clang).path | ls
ls /usr/local/bin/clang
readlink /usr/local/bin/clang
which clang-20
ls /usr/local/bin/clang20
ls /usr/local/bin/clang-20
pueue -h
pueue completions nushell | save -f pueue.nu
n pueue.nu
n build.zig.zon
zig build --release=fast -Tuse-llvm
rg 19\.x
n cmake/Findclang.cmake
cat ~/.histfile | cut -d';' -f2-
yay -S zap
zap
plug
zap update
yay -Rsc zap
yay -Rsc zap-git
yay -Rsc zap-git-debug
zsh <(curl -s https://raw.githubusercontent.com/zap-zsh/zap/master/install.zsh) --branch release-v1
sudo pacman -S fzf
cd /home/sundo/.local/share
git clone https://github.com/zap-zsh/zap.git
cd zap
sudo nvim /etc/wsl.conf
sudo vim /etc/wsl.conf
sudo pacman -S lazygit
cargo install asm-ls
CARGO_TARGET_DIR=/tmp/cargo-install8A1fuU cargo install asm-lsp
cargo install --git https://github.com/bergercookie/asm-lsp
mkcd ~/temp
git clone https://github.com/bergercookie/asm-lsp.git
cd asm-lsp
rmf asm-lsp
mkcd tool
git clone https://gitlab.com/jallbrit/cbonsai
cd cbonsai
sudo pacman -S make cmake
cbonsai --help
./cbonsai
./cbonsai -i
./cbonsai --help
./cbonsai -il
git clone https://github.com/pipeseroni/pipes.sh.git
cd pipes.sh
helix pipes.sh
./pipes.sh -p 3
./pipes.sh -p 100
./pipes.sh -p 10
cd ~/project
mkcd pro
mkcd pro2
git clone git@github.com:s2201050/Pro2-First-Report.git
./Pro2-First-Report
z li
z pro2
../fibonacci
du --help
vl
cargo new overflow_test
ssh --help
ssh -T git@github.com -i ~/.ssh/private
ssh -T git@github.com -i ~/.ssh/arch
mkcd ~/project/c/brain\*\*\*\*
cp ../../makefile-formats/makefile-c ./Makefile
n makefile-c
n main.bf
cp main.bf test.bf
./a.out main.bf
rm main.bf
cd ~/project/c/brain\*\*\*\*
cat test.bf
./a.out test.bf| wc -l
factor 117
./a.out test.bf|head -n 10
./a.out test.bf|head -n 100
sudo pacman -S bf
mkcd ~/tool
git clone https://github.com/fabianishere/brainfuck.git
cd brainfuck
brainfuck test.bf
gcc main.c -O3
cat <<EOF > test.bf\
n ../.gitignore
rm .gitignore
n ../../.gitignore
../../inner_outer_product
sudo pacman -S texlive-latexextra
uplatexx main.tex
n Session.vim
vim -S Session.vim
n -S Session.vim
rm main.c.tex mainouter.c.tex
z in
z inn
cat main.tex
./a.out -1
./a.out 7
./a.out 10
./a.out 30
sudo su
n ../inner_outer_product/IS16_log.log
rm IS16_log.log
n m
rm m
factor
sudo pacman -S man man-db
sudo pacman -S man-pages
man 3 printf
cp /mnt/c/Users/sundo/Downloads/gpio_* .
mkdir -p project/arduino/kumikomisystem
mv ./gpio_* project/arduino/kumikomisystem
cd project/arduino/kumikomisystem
cp gpio_single-01.ino kadai1.ino kadai2.ino
cp gpio_single-01.ino kadai1.ino
cp gpio_single-01.ino kadai2.ino
cp gpio_multi-01.ino kadai3.ino
cp gpio_multi-01.ino kadai4.ino
n kadai1.ino
rm kadai{1,2}*
rm gpio_single-01.ino
./a.out test.bf
n test.bf
mkdir test
mv test.bf test/memorysize.bf
../a.out power.bf
z rust
cargo new brain\*\*\*\*
cargo new brainfuc
cd brainfuc
../../c/brain\*\*\*\*
z sys
cat kadai3.ino
z line
bat main.c
z fib
z inner
z bra
git clone git@github.com:koyamahayato2357/source.git
mkdir gameoflife && cp source/reliablelife.c gameoflife
cd gameoflife
mv reliablelife.c main.c
git config --global init.defaultBranch main
git remote add origin git@github.com:koyamahayato2357/gameoflife.git
mkdir frequency-analysis && cp source/word_percentage.c frequency_analysis/main.c
cp source/word_percentage.c frequency-analysis/main.c
cd frequency-analysis
git remote add origin git@github.com:koyamahayato2357/frequency-analysis.git
git commit -m "first commit"
git push --set-upstream origin main
../source
n sosuu.c
bat -p ackermann.c
bat ackermann.c
z sou
gcc getch.c
bat --list-languages
man ls
z editor/neovim
grep "\\033[H\\033[J" -r **/*.[ch]
grep "\\033\[H\\033\[J" -r **/*.[ch]
grep "\033\[H\033\[J" -r **/*.[ch]
grep ".033\[H.033\[J" -r **/*.[ch]
grep ".033\[H.033\[J" -r **/*.c
grep ".033\[H.033\[J" -r *
grep "033" -r *
bat --list-themes
sudo make CMAKE_INSTALL_PREFIX=/usr/local/nvim install
/usr/local/nvim/bin/nvim --version
n kadai4.ino
z syst
gcc test.c
man 3 tcsetattr
man 3 fgetc
man 3 unfgetc
sudo pacman -S lv
man more
man more| bat
man 3 ungetc| bat
man 3 ungetc| bat -p -l man
MANPAGER=less
man 3 ungetc
batman ungetc
man 3 ungetc| bat -p -l man --color=always
man 3 ungetc| bat -p
batman 6
batman /etc/passwd
batman puts
cd project/makefile-formats
z local
z .local/share/nvim/lazy/vim-repeat
n ../README.markdown
cat repeat.vim
n repeat.vim
touch lua/repeat.lua