-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bash_history
2137 lines (2137 loc) · 57 KB
/
.bash_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
ls
lilypond test.ly
git add .gitignore test.ly
git remote add origin [email protected]:lurco/autumn_leaves_walking_bass.git
cd travelian/
mkdir autumn_leaves
mv autumn_leaves 01autumn_leaves
mv 01autumn_leaves 01_autumn_leaves
mv * 01_autumn_leaves
mv .git* 01_autumn_leaves
s
git branch AL_001_readme
git checkout AL_001_readme
git commit -m 'added a README.MD with basic explanations'
git push -u origin AL_001_readme
git merge master
git merge AL_001_readme
git branch AL_002_fixing_README
git checkout AL_002_fixing_README
git commit -m 'added link to lilypond and fixed minor typos'
git merge AL_002_fixing_README
vim test.ly
rm test.pdf
git mv test.ly al_walking.ly
lilypond al_walking.ly
vim al_walking.ly
lily al_walking.ly
vim new.ly
lilypond new.ly
git add al_walking.ly
git commit -m 'renamed file, added chord progression and tabs'
cd andrz/projects/
mkdir 02_nav_bar_active
git remote add origin [email protected]:lurco/nav_bar_active.git
cat .gitignore
git commit -m "init"
git commit -m 'added the README.MD file'
git branch NM_001_CREATING_BASIC_FILES
git checkout NM_001_CREATING_BASIC_FILES
git add index.html
git add style/*
git add src/*
git commit -m 'created basic index.html and style.css for the nav bar effect'
git push -u origin NM_001_CREATING_BASIC_FILES
git merge NM_001_CREATING_BASIC_FILES
git commit -m 'added animation for hover and removed font-weight change'
fd
sudo apt install hstr
sudo echo -e "\ndeb https://www.mindforger.com/debian stretch main" >> /etc/apt/sources.list
sudo vim /etc/apt/sources.list
sudo nano /etc/apt/sources.list
wget -qO - https://www.mindforger.com/gpgpubkey.txt | sudo apt-key add -
sudo apt-install hstr
sudo apt apt-transport-https
sudo apt install apt-transport-https
vim .bashrc
hstr --show-configuration >> ~/.bashrc
ihstr --
hstr --
git add README.MD .gitignore
git commit -m 'fixed README.MD'
lilypond -v
uninstall-lilypond
cd Downloads/
sudo sh lilypond-2.22.2-1.linux-64.sh
cd ../projects/git_repos_training/01_autumn_leaves/
cd lilypond/
git clone https://github.com/OpenLilyPondFonts/lilyjazz.git
cd lilyjazz/
whereis lilypond
ls /usr/bin/lilypond
ls /usr/bin/lilypond/
ls /usr/local/bin/lilypond
ls /usr/local/lilypond/
ls /usr/local/lilypond/usr/share/lilypond/current/fonts/
mv otf /usr/local/lilypond/usr/share/lilypond/current/fonts/
mv otf/* /usr/local/lilypond/usr/share/lilypond/current/fonts/otf/
sudo mv otf/* /usr/local/lilypond/usr/share/lilypond/current/fonts/otf/
sudo mv svg/* /usr/local/lilypond/usr/share/lilypond/current/fonts/svg
cd ~/andrz/projects/git_repos_training/01_autumn_leaves/
cd ~/andrz/Downloads/
cd ~/lilypond/
cd stylesheet/
cp * ~/andrz/projects/git_repos_training/01_autumn_leaves
cd ~/andrz/projects/git_repos_training/01_autumn_leaves
cp *.ily /usr/local/share/fonts/
sudo cp *.ily /usr/local/share/fonts/
rm *.ily
lilyhstr --
rm test.midi
git add al_walking.ly
git commit -m 'strung together chords names, notes, and tabs'
git branch NM_002_BEMYFING_STYLE.CSS
git checkout NM_002_BEMYFING_STYLE.CSS
git push -u origin NM_002_BEMYFING_STYLE.CSS
cd andrz/projects/layout/
git add src/css/style.css
git commit -m 'added BEM style selectors in css'
git remote add origin [email protected]:lurco/animated_car.git
mkdir css
cd css/
touch style.css
git branch A_001_HTML_AND_CSS_CREATION
git checkout A_001_HTML_AND_CSS_CREATION
git push -u origin A_001_HTML_AND_CSS_CREATION
git commit -m 'created the html and css files and the road image'
git merge A_001_HTML_AND_CSS_CREATION
git branch A_002_CREATE_CAR
git checkout A_002_CREATE_CAR
git push -u origin A_002_CREATE_CAR
git add index.html src/css/style.css
git commit -m 'created a static car'
git merge A_002_CREATE_CAR
git checkout -b 'A_003_ANIMATION'
git push -u origin A_003_ANIMATION
git commit -m 'added a looping animation'
git merge A_003_ANIMATION
git commit -m 'added front lights, fixed scaling and selectors'
cd andrz/projects/git_repos_training/
history | tail -20
cd ..,
vim untitled/
cd untitled/
vim style.css
rm -r untitled/
cd ../../
cd ../PhpstormProjects/
mv -r lotto ../projects
mv lotto ../projects
rm PhpstormProjects
rm -r PhpstormProjects
cd projects/git_repos_training/
mkdir 04_basic_js
touch .gitignored
git remote add origin [email protected]:lurco/js_basics.git
mv .gitignored .gitignore
git push -u origin
git checkout -b JS_001_all_base_files
mkdir src
touch css/style.css
git push -u origin JS_001_all_base_files
git commit -m 'created empty html, css and js files'
git commit --amend -m 'created basic html, css and js files'
git commit --amend 'pulled the remote'
git commit -m 'fixed a typo in the title in index.html'
gitk
sudo apt-get install gitk
git staus
git reset HEAD index.html
git log --oneline
git commit -m "fixed typo in .gitignore"
git log
git merge JS_001_all_base_files
git diff 2d77eb0 5c913e1
git whatchanged
git log -1 stat
git log -1 --stat
git checkout -b JS-002_feature
git push -u origin JS-002_feature
git commit -m "added a script tag for JS in index.html"
status
git commit -m "added a favicon link in head of index.html"
git branch -d JS_001_all_base_files
git checkout JS-002_feature
git reset --hard
git commit -m "added a boilerplate header to index.html"
git commit -m "added a boilerplate main article"
git commit -m "added a bp aside to main in index.html"
git merge JS-002_feature
git commit -m "merged feature with master"
git commit -m "cleared body in html file"
git checkout -b JS-003_testing_ff_merge
git push -u origin JS-003_testing_ff_merge
git commit -m 'added a boilerplate header'
git commit -m 'placeholder commit'
git merge JS-003_testing_ff_merge
git reset --hard HEAD^
git branch -d JS-003_testing_ff_merge
git branch -d origin/JS-003_testing_ff_merge
nvm version
npm -v
nvm uninstall v18.12.0
nvm use v16.18.0
git add src/images/*
git add src/sass/intro.scss src/sass/variables.scss
git checkout -b TL-003_entire_markup
git push -u origin TL-003_entire_markup
git commit -m "finished the html and added a max-width-px variable in sass"
git merge TL-003_entire_markup
git checkout -b TL-004_css
git push -u origin TL-004_css
git add src/sass/intro.scss
git commit -m "created empty selectors in intro.scss and corrected BEM naming in HTML"
git commit -m "preliminary styles for destinations and offer, not completed"
npm -version
nvm -version
nvm alias default v16.18.0
git add index.html src/css/*
git commit -m "destination imgs put into html instead of css, still not complete"
git rm src/css/*
git commit -m "added generated css to .gitignore and removed it from git tracking"
mkdir adopt_a_tree
cd adopt_a_tree/
touch README>MD
mv README README.MD
rm MD
git remote add origin [email protected]:lurco/adopt-a-tree.git
git checkout -b AT-001_boilerplate
git push -u origin AT-001_boilerplate
mkdir assets
cd assets/
mkdir scss
mkdir img
mkdir js
mkdir svg
mkdir font-icons
cd scss/
touch main.scss
npm init
npm install sass
npm view sass
npm i --save-dev [email protected]
npm sass
cd assets/scss/partials
mkdir assets/scss/partials
cd assets/scss/partials/
touch normalize.scss
git add assets/* index.html package-lock.json package.json
git commit -m "files project structure with sass transpilation"
git merge AT-001_boilerplate
git checkout -b AT-002_globals
git push -u origin AT-002_globals
touch variables.scss
touch functions.scss
cd assets/scss/
touch styleguide.scss
npm run sass:style-guide
touch assets/scss/partials/_colors.scss
git stauts
git add assets/scss/partials/_*
git add assets/scss/partials/variables.scss
git add assets/scss/styleguide.scss
git add README.MD assets/scss/main.scss
git add index.html package.json
git commit -m "adds styleguide, and a color map for it"
git commit -am "completed colors"
touch assets/scss/partials/_spacing.scss
git add assets/scss/* index.html
git commit -am 'adds spacing section to styleguide (html and css)'
touch assets/scss/partials/_typography.scss
git add assets/scss/*
git commit -m "added a typography section to styleguide"
touch assets/js/style-guide.js
git add assets/js/style-guide.js
git commit -m "replaces styleguide.scss with a finished one by PaweÃ… and adds a complete js file"
touch assets/scss/partials/_font-icons.scss
git add assets/font-icons/*
git commit -m "attached font-icons and additional html, but with incomplete styling e.g. no font-sizes"
git add structure.mmd
git commit -m "removed duplicated sass and initialized a .mmd diagram for html tree"
ls -R
ls -lR
git add index.html src/sass/*
git commit -m "starts restructurizing the DOM to be more BEM and more clear"
git add remote origin [email protected]:lurco/personal_website_JPG.git
git remote add origin [email protected]:lurco/personal_website_JPG.git
cp index.html about.html
cp index.html research.html
cp index.html contact.html
rm contact.html about.html research.html
git add bemtree.mmd
cd personal_website/
git commit -m "finishes about.html, adds styles and @media breakpoints to style.css"
cp index.html cv.html
cp index.html systema.html
git add contact.html cv.html research.html systema.html
git commit -m 'finishes htmls and changes colors to light mode'
hugo server -D
git add bemtree.mmd index.html src/sass/style.scss
git commit -m 'finishes redoing DOM to be BEM complaint also to bemtree'
git add src/sass/style.scss
git commit -m 'fully stylizes destinations (just the full viewport)'
git add index.html src/images/rating_star.svg src/sass/*
git commit -m 'stylizes special offer section and resizes rating_star.svg'
git add index.html src/sass/style.scss
git commit -m 'stylizes blog section'
git commit -m "redos vertical variables and finishes stylizing trip planners section"
git commit -m 'stylizes the gallery section'
git pus
git add index.html src/*
git commit -m "finishes the full default view with a few hiccups to be fixed (no RWD yet)"
mkdir 05_sass_practice
cd 05_sass_practice/
git merge TL-004_css
git remote add origin [email protected]:lurco/sass_pracice.git
git checkout -b SP-001_bold_on_hover
git push -u origin SP-001_bold_on_hover
rm -r src/
mkdir src/sass
mkdir -r src/sass
mkdir --help
mkdir -p src/sass
cd src/sass/
mkdir -p src/css
sass --version
npm sass --version
git add index.html package*
git add src/sass/main.scss
git statsu
git commit -m 'creates basic files for SASS and the webpage'
git merge SP-001_bold_on_hover
git checkout SP-001_bold_on_hover
pug --version
npm pug --version
npm pug-cli
touch src/sass/style.scss
git commit -m "creates stylized list with bold on hover issues"
git commit -m "fixes hero and footer menu hovers and hero's RWD and hover animations"
git checkout -b 'AT-003_buttons'
git push -u origin AT-003_buttons
git merge AT-002_globals
git checkout AT-003_buttons
touch assets/scss/partials/_buttons.scss
git add assets/scss/partials/_buttons.scss
git commit -ma 'stylizes buttons in styleguide'
git commit -am "stylizes buttons in styleguide"
touch assets/scss/partials/_forms.scss
git add assets/scss/partials/_forms.scss
git commit -am 'form styling with mixin with content blokc'
git merge AT-003_buttons
git commit -am 'adds forms as further html styleguide content'
git commit -am 'adds mixin for input, textarea and selects'
git add assets/svg/*
git commit -am 'creates textarea and form-text styling'
touch assets/scss/partials/_globals.scss
git add assets/img/*
git add assets/scss/partials/_globals.scss
git commit -am 'finishes forms (with a few hiccups to be fixed)'
git merge
git checkout -b AT-004_grid
git push -u origin AT-004_grid
touch assets/scss/partials/_grid.scss
git add assets/scss/partials/_grid.scss
git commit -am 'creates grid partial and classes for containers'
git checkout AT-004_grid
git commit -am 'adds row mixin and classes for grid'
git commit -am 'finishes grid col classes and pastes float and flex classes'
git merge AT-004_grid
git commit -am 'changes color scheme, removes borders and hard removes x scroll+few tinkers'
git commit -am 'fixed the codepen'
branch checkout -b TL-005_separating_scss
git branch checkout -b TL-005_separating_scss
git checkout -b TL-005_separating_scss
touch src/sass/l-grid.scss
touch src/sass/carousel-nav.scss
touch src/sass/destinations.scss
touch src/sass/offer.scss
touch src/sass/blog.scss
touch src/sass/planners.scss
touch src/sass/gallery.scss
touch src/sass/testimonial.scss
touch src/sass/newsletter.scss
touch src/sass/footer.scss
 git status
git add src/sass/*
git push -u origin TL-005_separating_scss
git commit -m "":
git commit --amend
git log -3
git merge TL-005_separating_scss
git add src/sass/carousel-nav.scss
git commit -m 'fixed transition animation for carousel-nav'
git add src/sass/hero.scss
git commit -m 'fixed pointer cursor on main menu items'
git commit -m 'adds transition in newsletter__btn and fixes cursor in contact footer menu'
ls -a
git rm .idea/*
git rm .idea
git rm -r .idea
git rm -r --cached .idea
git add README.md index.html src/*
git commit -m 'creates .gitignore, fixes the footer to bottom of screen through flex-shrink'
git remote add origin [email protected]:lurco/simplelayout.git
git remote add origin2 [email protected]:lurco/simplelayout.git
git push -u origin2 master
git remote mv origin2 origin
touch ./assets/scss/partials/
touch ./assets/scss/partials/_mixins.scss
bit AT-005_rwd_mixin
git checkout -b AT-005_rwd_mixin
git push -u origin AT-005_rwd_mixin
git commit -m 'Create mixin for handling media queries'
git merge AT-005_rwd_mixin
git checkout AT-005_rwd_mixin
git commit -m 'adds less common media query features'
git checkout -b AT-006_components
git push -u origin AT-006_components
touch assets/scss/partials/_main.scss
git commit -m 'creates main partial with default stylings'
git merge AT-006_components
git checkout AT-006_components
touch assets/scss/partials/_components.scss
git add assets/scss/partials/_components.scss
git commit -am 'creates components and remakes globals partials'
git commit -am 'adds loader animation'
touch assets/scss/partials/_glider-overrides.scss
touch assets/scss/partials/// ---------------------------------------------
@include list-reset;
touch assets/scss/partials/_tabby.scss
touch home.html
rm home.html
git add favicon/*
git commit -am 'adds js, favicon and final js-dependent components'
git checkout -b AT-007_home_webpage
git push -u origin AT-007_home_webpage
touch assets/custom-styles.scss
git add assets/scss/custom-styles.scss
git commit -am 'adds small fixes to styleguide and starts the proper project home.html'
ohstr -- monfichier
history 100
git reset
git statahs
git commit -m 'changed global font size from 16 to 14'
git commit -am 'changed global font size from 16 to 14'
send neofetch
sudo apt install neofetch
lame
sudo apt install lame
cd andrz/Desktop/Koncert\ Radio\ Krakow\ 101221/Render/
mkdir wave
rm wave
rm -r wave
lame -V2 *.wav *.mp3
lame -V2 *.wav
lame -V2 01_black_velvet_band.wav
lame -V2 02_feudin_banjos.wav
lame -V2 03_the_letter.wav
lame -V2 04_dead_skunk.wav
lame -V2 05_evangeline.wav
lame -V2 06_country_roads.wav
lame -V2 07_san_francisco_bay_blues.wav
lame -V2 08_goodnight_irene.wav
lame -V2 09_foggy_mountain_breakdown.wav
lame -V2 10_the_good_things.wav
lame -V2 11_will_the_circle_be_unbroken.wav
lame -V2 12_goin_down_the_river.wav
lame -V2 13_bring_it_on_home.wav
lame -V2 14_games_people_play.wav
lame -V2 15_piosenka_serafina.wav
mkdir dom_scripts
git clone https://github.com/JSUltimate/dom_scripts.git
git clone [email protected]:JSUltimate/dom_scripts.git
ls -al
mv -r .git ..
rm dom_scripts/
git remote add origin [email protected]:lurco/DOM-Scripts.git
git remote add origin2 [email protected]:lurco/DOM-Scripts.git
git remove origin
git rename origin2 origin
git origin
git remote
git checkout -b 'DS-004_nav_drawer_menu'
git push -u origin DS-004_nav_drawer_menu Q
git push -u origin DS-004_nav_drawer_menu
touch navigation.html
touch src/sass/components/navigation.scss
touch src/scripts/navigation.js
git add navigation.html src/*
git commit -m 'creates navigation files'
npm run scss
git remote add origin
git remote add origin [email protected]:lurco/BootstrapWorkshop.git
rm -r BootstrapWorkshop
git commit -m 'Adds inocomplete navigation files'
git merge DS-004_nav_drawer_menu
git checkout -b DS-005_modal
git push -u origin DS-005_modal
touch modal.html
touch src/scripts/modal.js
touch src/sass/modal.scss
mv src/sass/modal.scss src/sass/components/
git add modal.html src/*
git commit -m 'creates markup for modal and the file structure for modal'
git commit -m 'stylizes modal component with overlay active/non-active version'
git statuts
git commit -am 'adds js script for handling modal behaviour'
git commit -am 'adds animation for showing/hiding of modal/overlay'
git commit -am 'fixes RWD through media query and flexbox wrapping'
git checkout DS-005_modal
git merge DS-005_modal
mkdir sass
mkdir scripts
git remote add origin [email protected]:lurco/bootstrap_template.git
git add src/* .gitignore README.MD
git checkout -b BT-001_boilerplate
touch src/sass/main.scss
git add .gitignore package*
git commit -m 'adds bootstrap source files and transpilations for it'
git -u push origin
git push -u origin BT-001_boilerplate
git merge BT-001_boilerplate
git checkout BT-002_homepage
git checkout -b BT-002_homepage
git push -u origin BT-002_homepage
mkdir components
cd components/
touch navbar.scss
mkdir sections
touch src/sass/sections/_masthead.scss
mkdir variables
touch typography.scss
touch src/sass/variables/_colors.scss
touch src/sass/components/_buttons.scss
git -am 'stylizes hero and navbar'
git commit -am 'stylizes hero and navbar'
git commit -am 'creates and stylizes 1st section'
cd andrz/Desktop/
cd mat2.gryglaszewska/
cd zadania/
convert * zadania.pdf
convert *.jpg *.pdf
convert -auto-orient * zadania.pdf
rm zadania.pdf Thumbs.db
vim script.sh
./script.sh
git clone [email protected]:JSUltimate/sabra_strusie.git
cd sabra_strusie/
mv * ../
mv .git ../
mv .gitignore ../
rm -r sabra_strusie
nvm -v
npx -v
sudo npm install gulp-cli
npm install gulp-cli
cd Strus/
git checkout -b SS-002_boilerplate_al
git checkout SS-002_boilerplate_al
git push -u origin SS-002_boilerplate_al
npm view gulp
npm i [email protected] -D
gulp --version
touch gulpfile.js
gulp
\
npm i [email protected] -D
npm view del
npm i [email protected] -D
touch sass/main.scss
mv css sass src/
mv css src
mv src css
mv css src/
mv sas src/
mv sass src/
tree
mv index.html src/
gulp -v
npm i sass -D
git add gulpfile.mjs package* src/*
git add dist
git commit -m 'adds gulp with sass transpilation (faulty prototype_'
man python
cd projects/
mkdir python
cd python/
vim chords_ai.py
python chords_ai.py
rm .chords_ai.py.swp
python
python -v
sudo apt-get update
sudo apt-get upgrade python
vim chords_ai2.py
python chords_ai2.py
npm list gulp
cd andrz/projects/sabra_strusie/
touch gulpfile2.mjs
npm install gulp gulp-sass gulp-uglify gulp-clean-css
git reset --hard SS-002_boilerplate_al
python3
sudo apt upgrade python3
python --version
python3 version
python3 --version
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt install python3.8
sudo apt install dirmngr --install-recommends
sudo apt remove python python3
lilypond
sudo add-apt-repository --remove ppa:deadsnakes/ppa
add-apt-repository -remove ppa:deadsnakes/ppa
add-apt-repository ppa:deadsnakes/ppa
sudo apt install software-properties-common
sudo apt remove python
sudo apt autoremove
sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev
wget https://www.python.org/ftp/python/3.11.1/Python-3.11.1.tgz
tar -xf Python-3.11.1.tgz
cd Python-3.11.1/
./config
./configure
make
sudo make install
sudo apt install python3-pip
ipython
python3 -m pip list
pip3 list
sudo apt-get install build-essential checkinstall libreadline-gplv2-dev ibncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
find python3
whereis python3
cd /usr/bin/python3
cd /usr/bin/
cd /usr/local/lib/python3.11
whereis Setup
git remote origin
git remote origin get-url
git checkout -b SS-003_boilerplate_webpack_al
git push -u origin SS-003_boilerplate_webpack_al
npm I webpack webpack-cli -D
npm install webpack webpack-cli -D
npm view webpack
npm webpack --version
npm install [email protected]
mkdir src/scripts
mkdir dist
mv index.html dist/
npx webpack
touch webpack.config.js
npx --config webpack.config.js webpack
npx webpack --config webpack.config.js
git add src webpack.config.js package*
npm i style-loader css-loader -D
touch src/css/main.css
npm i sass sass-loader -D
npm i webpack-dev-server -D
npm run watch
npm run start
git add src/
git add webpack.config.js
git commit -m 'sets up basic webpack loader and hot reload server'
git commit -am 'refactors src/sass to src/scss'
apt-cache depends python2
apt-cache depends python
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 1
sudo update-alternatives --config python
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.11 1
ls /usr/bin/
ls /usr/bin/ | grep python
whereis python3.11
whereis 'python3.11'
whereis 'python3.11' | grep 3.11
sudo update-alternatives --install /usr/bin/python python /usr/local/bin/python3.11 1
sudo apt remove python3.5
update-alternatives --display python
sudo update-alternatives --set python /usr/local/bin/python3.11
sudo update-alternatives --remove python /usr/bin/python3
sudo apt-install ipython
sudo apt install ipython
man getty
man get
sudo apt install postman
rm -r Python-3.11.1
man rm
rm -rf Python-3.11.1
sudo rm -rf Python-3.11.1
sudo rm -rf python/
rm Python-3.11.1.tgz
cd andrz/projects_web/slider/
git log --abbrev-commit
git log -1 --oneline
pip3 ipython
pip3 install ipython
pip3 update
pip3 upgrade
pip3
pip3 show
sudo apt install openssl
openssl
man openssll
man openssl
pip
sudo update-alternatives --install /usr/bin/pip pip /usr/local/bin/pip3 1
pip -V
pip check
pip show
pip show pip
pip search ipython
sudo apt-get install python3-pip
pip3 -V
pip3 search ipython
pip3.7 search ipython
pip3.11.exe search ipython
pip3.11.exe check
pip3.11.exe list
pip3.11.exe install ipython
ipython.exe
ipython3.exe
ls -l
man grep
wsl.exe --update
history | LESS=-asrRix8
less
LESS=-asrRix8
export LESS='--mouse --wheel-lines=3'
less -V
sudo apt upgrade less
export LESS=-R
unset LESS
npm install normalize.css
npm install -D webpack-dev-server
npm i html-webpack-plugin -D
npm build
mkdir src/templates
cd src/templates/
mkdir includes
touch index.pug
touch layout.pug
touch head.pug
touch footer.pug
npm i pug-loader -D
npm star
npm install -D babel-loader @babel/core @babel/preset-env webpack
git add src/templates/*
git commit -am 'adds unfinished a broken webpack html generation with pug-loader, babel and other stuff'
git merge SS-003_boilerplate_webpack_al
git reset --hard HEAD~1
git origin name
git remote origin -n
git checkout SS-003_boilerplate_webpack_al
mkdir library
cd library/
python -V
python -m venv venv
source ./venv/bin/activate
pip index versions
pip install django==4.1.5
man source
where.exe terminal
terminal
man which
which python
which python3
which python3.11
which pip
which pip3
sudo add-apt-repository ppa:ultradvorka/ppa
sudo apt-get install hstr
git config
git config --get
git config --show
git config --show-origin
git config --global
git config --system
git config --lost
git config --list
man lm
man ls
man sl
ln /mnt/c/Users/andrz andrz
ln -s /mnt/c/Users/andrz andrz
cd COMPLETE/
cd lotto
cd layout/
git -am 'adds few entries to .gitignore'
git commit -am 'adds few entries to .gitignore'
vim .ssh/
cd .ssh/
rm id*
ssh-keygen -t ed25519 -C "[email protected]"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
clip < ~/.ssh/id_ed25519.pub
cat ~/.ssh/id_ed25519.pub
xclip < cat ~/.ssh/id_ed25519.pub
xclip < ~/.ssh/id_ed25519.pub
sudo apt-install xclip
sudo apt install xclip
cat
cat ~/.ssh/id_ed25519.pub > xclip
man xclip
cat ~/.ssh/id_ed25519.pub | xclip
echo 'hello' | xclip
cd andrz/projects_web/COMPLETE/layout/
python3 -V
sudo apt upgrade
sudo apt install python3.11
sudo apt remove python3.10
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1
sudo update-alternatives --install /usr/bin/python python /usr/local/bin/python3.11
sudo apt install python-is-python3
python3-pip -V
which lilypond
latex
tex
sudo apt install texlive
sudo apt install lilypond
python-pip
pip list
touch /home/al/.hushlogin
sudo apt install klavaro
klavaro
ls projects_python/
rm -r ide_pycharm_testing
rm -r vincent_api
cd projects_python/
cd ide_pycharm_testing/
rm -r *
sudo apt install lpe
lpe
lpe new.lpe
rm xclip
man lpe
sudo apt remove lpe
sudo apt install ipe
ipe
pip install ipython
man ipython
whereis ipython
python -m IPython
python -m pip uninstall ipython
python -m pip install ipython
export $PATH=/home/al/.local/bin
echo $PATH
export PATH=$PATH:/home/al/.local/bin
cat .bashrc
cat .gnuplot_history
cat .gnuplot_history 'trala'
cat .gnuplot_history .gnuplot_history
cat .gnuplot_history 'echo "gege"'
mkdir bash_exercises
sort > list.txt
sort < list.txt
list.txt > sort
cat list.txt > sort
cat list.txt
cat list.txt > sort >
cat list.txt > sort > 1
cat list.txt > sort > 2
cat list.txt > sort > 3
cat list.txt > sort >1
man sort
cat list.txt | sort
rm 1 2 3 sort
echo 'export PATH=$PATH:/home/al/.local/bin' >> .bashrc
git remote add origin [email protected]:lurco/webpack_training.git
touch README.MD .gitignore
mkdir src/sass src/js src/pug
mkdir -p src/{sass,js,pug}
git add src .gitignore README.MD
touch src/sass/main.sass
touch src/js/script.js
node -V
cd /home/al/
man sudo
lsof
man lsof
echo trala efef ef
gs='Andrzej Jerzy Legutko'
ech gs
echo gs
echo $gs
echo ${gs}
echo ${gs#Jerzy}
echo Nazywam siÄ ${gs#Jerzy}
echo Nazywam siÄ ${gs#Andrzej}
ls README.MD
ls README.MD*
curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt -s install nodejs
apt -V -s upgrade
apt -V -s install nodejs
sudo apt install nodejs
npm -V
npm install npm@latest
npm install -g [email protected]
rm -r node_modules
cd .npm
rm -r .npm
sudo npm install -g [email protected]
cd andrz/projects_web/webpack_training/
npm install
git commit -m 'initializes the newest npm with package.json'
npx license mit > LICENSE
npx
npx gitignore node
gitignore -types
npm gitignore -types
npx license mit
npx license
date +%Y
npx license --year 2023
npm config list
npm config edit
vim ${HOME}/.vimrc
vim ${HOME}/.vim/vimrc
rm .npmrc.swp
vim .npmrc
cd webpack_training/
ixt
eixt
echo pipa | sed 'p/c'
echo 'pipa' | sed 'p/c'
echo 'pipa' | sed 'p/c/'
echo 'pipa' | sed 's/p/c/'
echo 'pipa' | sed 's/p/c/g'
sed 's/1/pipa/g' < README.MD >tescik
cat tescik
rm tescik
rm .npmrc
git add LICENSE
git -am 'uses npx licence and npx gitignore to create a LICENSE and .gitignore files'
ech {1..5}
echo {1..5}
echo {15}
echo {1,5}\
echo {1,5,3}
echo {1,5-3}
echo {1-5,t}
echo {1-5}
echo {1..5,t}
npm pug -V
npm list pug
npm show pug
npm i [email protected] -D
npm i webpack webpack-cli webpack-dev-server -D
npm i sass sass-loader css-loader -D
npm i pug-plugin -D
webpack serve --hot-only
npm webpack serve
webpack-dev-server
git commit -am 'adds HMR, pug, sass, all the loaders, webpack and webpack.config.js, but doesn't work for now'
git commit -am 'adds HMR, pug, sass, all the loaders, webpack'
node
npm i pug-cli -D
npm run pug-watch
npm run pug-pretty
npx webpack serve
mkdir latex_docs
mkdir calki_michal_glanda
apt upgrade texlive
apt list --upgradable
man apt
apt show texlive
apt show texlive-base
sudo apt install texlive-lang-polish
sudo -i tlmgr update --list
man tlmgr
tlmgr update --list
tlmgr update --self
tlmgr init-usertree
tlmgr repository list
sudo apt install xzdec
tlmgr install framed
tlmgr hstr --
sudo apt purge texlive-base
sudo apt purge texlive-binaries
ls /etc/texmf
sudo rm -rf /etc/texmf
sudo apt install wget perl-tk
wget http://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz
tar -xzf install-tl-unx.tar.gz
cd install-tl-20230105/
sudo ./install-tl
sudo apt install equivs --no-install-recommends freeglut3
wget -O debian-equivs-2023-ex.txt https://www.tug.org/texlive/files/debian-equivs-2023-ex.txt
wget -O debian-equivs-2022-ex.txt https://www.tug.org/texlive/files/debian-equivs-2022-ex.txt
equivs-build debian-equivs-2021-ex.txt
equivs-build debian-equivs-2022-ex.txt
sudo dpkg -i texlive-local_2021.99999999-1_all.deb
sudo dpkg -i texlive-local_2022.99999999-1_all.deb
sudo apt install -f
sudo apt upgrade texlive
sudo tlmgr --gui
tlmgr
which tex
rm texlive-local_2022.99999999-1_a*
rm debian-equivs-202*
tlmgr --help
tlmgr update --all
sudo tlmgr update --all
env | grep ^PATH
sudo env | grep ^PATH
sudo -E env "PATH=$PATH" tlmgr update --all
cd latex_docs/calki_michal_glanda/
rm install-tl-*
rm -rf install-tl-*
mysudo tlmgr intall polski
mysudo tlmgr install polski
cd .vim/
vim vimrc
ls vimfiles/
ls syntax/
ls autoload
ls bundle
vim_exercises
mkdir vim_exercises