-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bash_history
8571 lines (8559 loc) · 247 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
sudo apt update
sudo apt upgrade
sudo apt update
sudo apt upgrade
inxi -Fxxxrz && rfkill list && iwconfig && mokutil --sb-state
sudo apt update && sudo apt upgrade
sudo apt update --fix-missing
sudo apt -f install
lshw -C network
sudo apt install rtl8812au-dkms
sudo apt update
sudo apt upgrade
sudo apt update
sudo apt upgrade
sudo apt -f install
sudo apt update
sudo apt install rtl8812au-dkms
sudo ./dkms-install.sh
sudo apt update
sudo apt upgrade
lshw -C network
sudo apt remove rtl8812au-dkms
sudo apt autoremove
sudo apt install bc module-assistant build-essential dkms
sudo m-a prepare
sudo apt install ubuntu-mate-desktop ubuntu-mate-core ubuntu-mate-
sudo apt install ubuntu-mate-desktop ubuntu-mate-core
sudo apt install vlc ubuntu-restricted-extras
sudo apt install chromium-browser
sudo apt install okular kdenlive
sudo apt install i3
sudo apt install dconf-editor
sudo apt remove magnus
exit
ifconfig
wzit
exit
sudo shutdown -h now
sudo apt install openssh-server
sudo apt update
sudo apt upgrade
sudo apt find latex
apt find latex
apt search latex
sudo apt install texlive-latex-base texlive-latex-extra texlive-latex-recommended
exit
cp -r -p C6W/ ~/
exit
cp -r -p C6W/ ~/
exit
cd ~/
du -hcs C6W/
exit
sudo dpkg -i opera-stable_84.0.4316.42_amd64.deb
exit
sudo dpkg -i nautilus-megasync-xUbuntu_21.10_amd64.deb
sudo apt -f install
exit
sudo dpkg -i nautilus-megasync-xUbuntu_21.10_amd64.deb
cd Downloads/
sudo dpkg -i nautilus-megasync-xUbuntu_21.10_amd64.deb
sudo apt -f install
exit
sudo apt upgrade
exit
sudo apt install git
exit
apt find latex
apt search latex
apt search texlive
sudo apt install texlive
sudo apt install texlive-extra-utils
sudo apt install texlive-latex-extra
sudo apt install texlive-latex-base
sudo apt install texlive-latex-recommended
sudo apt install texlive-bibtex-extra
exit
sudo apt install virtualbox virtualbox-guest-additions-iso
sudo apt install htop
sudo apt autoremove
htop
sudo apt install emacs
sudo apt install python python-dev build-essential curl virtualenv python-pip pylint ruby silversearcher-ag sqlformat
sudo apt install python python3-dev build-essential curl virtualenv python-pip pylint ruby silversearcher-ag sqlformat
sudo apt install python3 python3-dev build-essential curl virtualenv python-pip pylint ruby silversearcher-ag sqlformat
sudo apt install python3 python3-dev build-essential curl virtualenv python3-pip pylint ruby silversearcher-ag sqlformat
sudo add-apt-repository ppa:ubuntu-elisp/ppa
sudo apt update
htop
sudo apt update
sudo apt install opera
sudo apt install opera-stable
sudo apt install tilda
emacs
sudo apt update
sudo apt upgrade
sudo apt install emacs
apt search emacs
sudo apt install emacs
sudo apt install texlive-full
exit
cd C6W/
chown -R timol .
l
cd ../
l
cd ..
cp dotfiles/bashrc ./.bashrc
exit
sudo apt install inkscape
exit
l
chown -R timol C6W/
l
chmod -R timol C6W/
exit
l
chown -r timol .
chown -R timol .
l
exit
l
chown --reference=work/ C6W/
ks
l
sudo chown --reference=work/ C6W/
l
chmod --reference=work/ C6W/
l
l C6W/
cd ../
chmod -r --reference=work/ C6W/
chmod -R --reference=work/ C6W/
cd ../
chmod -R --reference=work/ C6W/
ll
l
cd /home/timol/
chmod -R --reference=work/ C6W/
l
cd C6W/
l
cd ../
mkdir tmp
exit
caja .
git status
git add .
cd ../
git status
git add .
git commit -m "updated draft "
git config user.enmail "[email protected]"
git config user.email "[email protected]"
git config user.name "Zaheer"
git commit -m "updated draft "
git push origin draft
git status
exit
python3 -m env venv
python3 -m benv venv
python3 -m venv venv
sudo apt install python3.10-venv
python3 -m venv venv
source venv/bin/activate
pip install matplotlib scipy numpy mdanalysis
cd C6W/Studies/structure_analysis/
cd images/
python3 scatter_plot_heat_map.py
exit
git status
cd ../
git status
caja .
caja --no-desktop .
sudo apt update
sudo apt upgrade
exit
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress -dNOPAUSE -dQUIET -dBATCH -sOutputFile=small.pdf main.pdf```
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress -dNOPAUSE -dQUIET -dBATCH -sOutputFile=small.pdf main.pdf
exit
git status
git add .
git commit -m "updated draft "
cd ~/
ssh-keygen
ssh-add ~/.ssh/id_rsa
git push origin draft
cd C6W/Writeup/latex/
git push origin draft
git status
git add .
git commit -m "updated draft "
git push origin draft
exit
source ~/.venv/bin/activate
python3 line_plot.py
pip3 install matplotlib
python3 line_plot.py
pip3 install scipy numpy
python3 line_plot.py
(venv) timol@CoreBook-X:~/C6W/Studies/structure_analysis/images$
python3 line_plot.py
exit
sudo apt update
sudo apt install pdfarranger
sudo apt install network-manager-openconnect-gnome
ip link ls
exit
ip link ls
sudo apt install openconnect
sudo apt remove
sudo apt autoremove
apt search openconnect
sudo apt install network-manager-openvpn-gnome
sudo apt install network-manager-openconnect-gnome
exit
sudo apt update && sudo apt upgrade
sudo apt upgrade
sudo systemctl restart NetworkManager
exit
caja --no-desktop .
sudo apt update
sudo apt upgrade
sudo apt update
sudo apt upgrade
sudo apt update
sudo apt upgrade
source venv38/bin/activate
l
cd src/
python3 main.py
pip3 install pandas
deactivate
source ../venv38/bin/activate
pip3 install pandas
pip install pandas
pip3 install pandas
deacivate
deactivate
cd ../
pyhon3 -m venv venv
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
exitr
exit
sudo apt update
sudo apt upgrade
l
sudo chown -R timol .
l
exit
docker ps
docker run ubuntu:20.04
docker images
docker run ubuntu:20.04
docker ps
docker
docker ps
cd work/esp/sapp_transmission_study/sapp_transmission_pricing_app/app/
l
rm -r venv
docker run -v ./:/home/app ubuntu:20.04 /bin/bash
docker run -v ./=/home/app ubuntu:20.04 /bin/bash
docker ps
l
docker ps -a
docker rm 293840a0c4f8 bfb96d7cb234
docker run -d -v ./=/home/app ubuntu:20.04 bash
docker ps
docker ps -a
docker rm f66c28185c3f
docker run -d -v .:/home/app ubuntu:20.04 bash
docker run -d -v ./:/home/app ubuntu:20.04 bash
docker run -d -v "./":"/home/app/" ubuntu:20.04 bash
docker run -d -v ../:/home/app/ ubuntu:20.04 bash
docker run -d -v /home/timol/work/esp/sapp_transmission_study/sapp_transmission_pricing_app/app:/home/app/ ubuntu:20.04 /bin/bash
docker ps
docker ps -a
docker rm df5391efb577
docker ps -a
l
docker run -d -v /home/timol/work/esp/sapp_transmission_study/sapp_transmission_pricing_app/app:/home/app/ ubuntu:20.04 bash
docker ps
docker ps -a
docker rm 533
docker run -d -v /home/timol/work/esp/sapp_transmission_study/sapp_transmission_pricing_app/app:/home/app/ -it ubuntu:20.04
docker ps
docker exec -it 0e59 bash
exit
docker ps
sudo apt install docker.io
docker compose
docker -vcompose
docker -compose
sudo apt install docker-compose
sudo apt install autoremove
sudo apt autoremove
sudo groupadd docker
sudo gpasswd -a $USER docker
newgrp docker
exit
source venv/bin/activate
pip install -r requirements.txt
python -m pip install --upgrade pip
pip install -r requirements.txt
git status
exit
docker ps
docker ps -a
docker start0e591bbfa216
docker start 0e591bbfa216
cd Downloads/
l
sudo dpkg -i teams_1.4.00.26453_amd64.deb
sudo apt -f install
eit
exit
docker ps
docker exec -it 0e591bbfa216 bash
exit
docker ps -a
docker start 0e591bbfa216
docker exec -it 0e591bbfa216 bash
exit
git status
docker exec -it 0e591bbfa216 bash
exit
sudo apt update
reset
sudo apt update
sudo apt upgraade
sudo apt upgrade
docker ps
docker ps -a
docker exec -it 0e591bbfa216 bash
docker start 0e591bbfa216
exit
docker exec -it 0e591bbfa216
docker exec -it 0e591bbfa216 bash
exit
docker ps
docker exec -it 0e591bbfa216 bash
exit
cd Downloads/
l
sudo dpkg -i microsoft-edge-stable_99.0.1150.55-1_amd64.deb
rm -r microsoft-edge-stable_99.0.1150.*
htop
docker ps
docker exec -it 0e591bbfa216 bash
exit
git status
git add calculators/
git diff controllers/
git checkout controllers/scenario_controller.py
git status
git diff data_managers/
git add data_managers/
git status
git diff validators/
git add validators/
git commit -m "adding dc"
git config user.email "[email protected]"
git config user.name "Zaheer"
git status
git commit -m "adding dc"
git push origin feature/dc
exit
sudo apt update
sudo apt upgradw
sudo apt upgrade
sudo apt autoremove
sudo apt update
sudo apt upgrade
htop
docker ps
sudo chown -r timol .
sudo chown -R timol .
exit
sudo chown -R timol .
exit
htop
exit
sudo dpkg -i nautilus-megasync-xUbuntu_21.10_amd64.deb
sudo apt -f install
sudo chown -R timol .
exit
docker ps -a
docekr start 0e591bbfa216
docker start 0e591bbfa216
docker exec -it 0e591bbfa216 bash
htop
vboxmanage setextradata "Windows 10" GUI/ScaleFactor 1.15
vboxmanage setextradata "Windows 10" GUI/ScaleFactor 1.20
exit
cd Downloads/
sudo dpkg -i megasync-xUbuntu_21.10_amd64.deb
sudo apt -f install
sudo dpkg -i nautilus-megasync-xUbuntu_21.10_amd64.deb
sudo apt update
sudo apt upgrade
caja --no-desktop .
exit
docker exec -it 0e591bbfa216 bash
exit
git tsatus
git status
git add calculators/bialek_calculator.py
git add config/settings.py
git add data_managers/
git commit -m "adding dc calc"
git push origin dev
git push origin feature/dc
git status
git add calculators/marginal_participation_calculator.py calculators/bialek_calculator.py
git commit -m "adding dc calc"
git push origin dev
git checkout -b feature/dc_cost
git push origin feature/dc_cost
exit
git status
git add ../
git commit -m "updated draft"
git push origin draft
git status
git add ../
git commit -m "updated draft"
git push origin draft
exit
sudo apt update
sudo apt upgrade
sudo apt update
sudo apt upgrade
sudo apt update
sudo apt upgrade
sudo apt install anyconnet
sudo apt install anyconnect
sudo apt install openconnect
sudo apt install openconnect
sudo apt install any
chmod +x restart_wifi.sh
./restart_wifi.sh
sudo rmmod rtw88_8821ce && sudo modprobe rtw88_8822ce
sudo rmmod rtw88_8821ce && sudo modprobe rtw88_8822c
sudo rmmod rtw88_8821ce && sudo modprobe rtw88_8822ce
sudo modprobe rtw88_8822ce
sudo rmmod rtw88_8821ce && sudo modprobe rtw88_8822ce
sudo service NetworkManager stop
sudo service NetworkManager start
nmcli nm sleep false
lshw -C network
exit
sudo apt update && sudo apt upgrade
sudo apt upgrade
exit
./configure
make install
cd src/
make install
sudo amek install
sudo make install
exit
md
vmd
exit
htop
htop
git status
git add .
git commit -m "updated draft"
git push origin draft
git status
git add ../
git status
git commit -m "updated draft"
git push origin draft
exit
source ~/.venv/bin/activate
python3 base.py -f config_files/bDGlc13_aDGlc14_bDGlcNAc.conf
l
pip install -r requirements.txt
python3 base.py -f config_files/bDGlc13_aDGlc14_bDGlcNAc.conf
python3 base.py -f config_files/bDGlc13_aDGlc14_bDGlcNAc_glycam.conf
python3 base.py -f config_files/aDGlc13_bDGlc14_bDGlcNAc_glycam.conf
python3 base.py -f config_files/aDGlc13_bDGlc14_bDGlcNAc.conf
python3 base.py -f config_files/bDGlc13_bDGlc14_bDGlcNAc.conf
python3 base.py -f config_files/bDGlc13_bDGlc14_bDGlcNAc_glycam.conf
cd custom_scripts/
python3 blockAveragingAnalysis_MK.py
exit
htop[
htop
vmd -psf bDGlc13_bDGlc14_bDGlcNAc.psf -pdb bDGlc13_bDGlc14_bDGlcNAc.pdb
vmd -psf bDGlc13_bDGlc14_bDGlcNAc.psf -dcd bDGlc13_bDGlc14_bDGlcNAc_0-2000ns.dcd
exit
teams
exit
ping google.com
exit
sudo apt install heif-gdk-pixbuf
sudo apt install heif-thumbnailer
exit
git status
git add .
git commit -m "updated draft"
git push origin dev
git push origin draft
git status
git add .
git commit -m "updated draft"
git push origin draft
exit
sudo apt update
sudo apt upgrade
sudo apt install xmgrace
sudo apt install grace
sudo apt update
ping google.com
caja .
exit
source ~/.venv/bin/activate
cd images/
python3 cp_torsion_heat_map_plot.py
python3 scatter_plot_heat_map.py
exit
wget https://s3.us-west-2.amazonaws.com/secure.notion-static.com/186d2481-a498-44b1-9a71-023ee362add8/Elaine_N._Marieb_Katja_Hoehn_-_Human_Anatomy_and_Physiology_%280%29_-_libgen.lc.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIAT73L2G45EIPT3X45%2F20220404%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20220404T160208Z&X-Amz-Expires=86400&X-Amz-Signature=e0ce63af0ca1315209dbe1217e57bb8ec56bad7b42f9b6a4eb794d328b671784&X-Amz-SignedHeaders=host&response-content-disposition=filename%20%3D%22Elaine%2520N.%2520Marieb%252C%2520Katja%2520Hoehn%2520-%2520Human%2520Anatomy%2520and%2520Physiology%2520%280%29%2520-%2520libgen.lc.pdf%22&x-id=GetObject
curl 'https://s3.us-west-2.amazonaws.com/secure.notion-static.com/186d2481-a498-44b1-9a71-023ee362add8/Elaine_N._Marieb_Katja_Hoehn_-_Human_Anatomy_and_Physiology_%280%29_-_libgen.lc.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIAT73L2G45EIPT3X45%2F20220404%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20220404T160316Z&X-Amz-Expires=86400&X-Amz-Signature=b8be5a7c206557872e305da9af51da707a7719e408b4a00b9aab9f9c63c49eaa&X-Amz-SignedHeaders=host&response-content-disposition=filename%20%3D%22Elaine%2520N.%2520Marieb%252C%2520Katja%2520Hoehn%2520-%2520Human%2520Anatomy%2520and%2520Physiology%2520%280%29%2520-%2520libgen.lc.pdf%22&x-id=GetObject' -H 'User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:98.0) Gecko/20100101 Firefox/98.0' -H 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8' -H 'Accept-Language: en-US,en;q=0.5' -H 'Accept-Encoding: gzip, deflate, br' -H 'DNT: 1' -H 'Connection: keep-alive' -H 'Upgrade-Insecure-Requests: 1' -H 'Sec-Fetch-Dest: document' -H 'Sec-Fetch-Mode: navigate' -H 'Sec-Fetch-Site: none' -H 'Sec-Fetch-User: ?1'
curl 'https://s3.us-west-2.amazonaws.com/secure.notion-static.com/186d2481-a498-44b1-9a71-023ee362add8/Elaine_N._Marieb_Katja_Hoehn_-_Human_Anatomy_and_Physiology_%280%29_-_libgen.lc.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIAT73L2G45EIPT3X45%2F20220404%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20220404T160316Z&X-Amz-Expires=86400&X-Amz-Signature=b8be5a7c206557872e305da9af51da707a7719e408b4a00b9aab9f9c63c49eaa&X-Amz-SignedHeaders=host&response-content-disposition=filename%20%3D%22Elaine%2520N.%2520Marieb%252C%2520Katja%2520Hoehn%2520-%2520Human%2520Anatomy%2520and%2520Physiology%2520%280%29%2520-%2520libgen.lc.pdf%22&x-id=GetObject' -H 'User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:98.0) Gecko/20100101 Firefox/98.0' -H 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8' -H 'Accept-Language: en-US,en;q=0.5' -H 'Accept-Encoding: gzip, deflate, br' -H 'DNT: 1' -H 'Connection: keep-alive' -H 'Upgrade-Insecure-Requests: 1' -H 'Sec-Fetch-Dest: document' -H 'Sec-Fetch-Mode: navigate' -H 'Sec-Fetch-Site: none' -H 'Sec-Fetch-User: ?1' --output x.pdf
exit
source ~/.venv/bin/activate
cd images/
python3 scatter_plot_heat_map.py
exit
sudo apt update
sudo apt upgrade
sudo apt remove teams
sudo apt autoremove
snap install teams
sudo apt update
sudo apt upgrade
sudo apt autoremove
git status
cd ..
git status
git add .
git commit -m "updated draft"
git push origin draft
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress -dNOPAUSE -dQUIET -dBATCH -sOutputFile=small.pdf main.pdf
gs --verbose -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress -dNOPAUSE -dQUIET -dBATCH -sOutputFile=small.pdf main.pdf
gs -v -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress -dNOPAUSE -dQUIET -dBATCH -sOutputFile=small.pdf main.pdf
exit
htop
exit
git status
git add .
git commit -m "updated draft"
git push origin draft
gs -v -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress -dNOPAUSE -dQUIET -dBATCH -sOutputFile=small.pdf main.pdf
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/prepress -dNOPAUSE -dQUIET -dBATCH -sOutputFile=small.pdf main.pdf
htop
exit
sudo apt update
sudo apt upgrade
exit
ssh-add ~/.ssh/id_rsa
cd C6W/Studies/Dynamics/NAMD_plumed/MD/solution/PMF/pucker/bDGlc13_aDGlc14_bDGlcNAc/trajectories/
l
scp -r [email protected]:/scratch/ztimol/Studies/Dynamics/NAMD_glycam_plumed/PMF/solution/pucker/bDGlc13_aDGlc14_bDGlcNAc/simulations/bDGlc13_aDGlc14_bDGlcNAc_r1/run_output/metaD_sol_out_plumed.pmf .
l
exit
htop
exit
exit
source ~/.venv/bin/activate
python3 pmf_multi_plumed.py
pwd
~/C6W/Studies/Dynamics/NAMD_plumed/MD/solution/PMF/pucker/aDGlc13_aDGlc14_bDGlc/Analysis/ring_pucker/
cds ~/C6W/Studies/Dynamics/NAMD_plumed/MD/solution/PMF/pucker/aDGlc13_aDGlc14_bDGlc/Analysis/ring_pucker/
cd ~/C6W/Studies/Dynamics/NAMD_plumed/MD/solution/PMF/pucker/aDGlc13_aDGlc14_bDGlc/Analysis/ring_pucker/
cd tmp
cd ~/tmp
python3
exit
sudo apt update
sudo apt upgrade
sudo apt-get install mpack
cd Downloads/
munpack -t ATP\ Scan\ In\ Progress.eml
firefox
sudo apt update
sudo apt upgrade
snap update
snap refresh
snap refresh --time
env BAMF_DESKTOP_FILE_HINT=/var/lib/snapd/desktop/applications/firefox_firefox.desktop /snap/bin/firefox %u
exit
docker ps
docker ps -a
docker exec -it 0e591bbfa216 bash
chown -R timol .
sudo chown -R timol .
exit
snap install anydesk
anydesk
sudo apt install libpangox-1.0-0
sudo apt install libpangoxft-1.0-0
sudo apt autoremove
anydesk
cd Downloads/
sudo dpkg -i libpangox-1.0-0_0.0.2-5.1_amd64.deb
anydesk
sudo chown -r timol .
sudo chown -R timol .
exit
sudo chown -R timol .
exit
sudo apt update
sudo apt upgrade
sudo apt update
sudo apt upgrade
sudo apt update
sudo apt upgrade
sudo apt update
cd Downloads/
sudo dpkg -i anydesk_6.1.1-1_amd64.deb
sudo apt -f install
cd ../
exit
sudo chown -R timol .
exit
sudo chown -R timol .
git status
git add ../
git status
git commit -m "updated draft"
git push origin draft
exit
source ~/.venv/bin/activate
python3 calc_energies.py
python3 energies_from_pmf.py
python3 pucker_and_torsion.py
x
python3 pucker_and_torsion.py
python3 energies_from_pmf.py
exit
htip
htop
exit
htop
exit
docker ps -a
docker ps -a 0e591bbfa216
docker start 0e591bbfa216
docker exec -it 0e591bbfa216 bash
docker ps
docker restart 0e59
docker exec -it 0e591bbfa216 bash
exit
git status
git diff calculators/ptdf_calculator.py
git checkout calculators/ptdf_calculator.py
git status
git diff controllers/scenario_controller.py
git status
git diff main.py
git status
git diff analysis.py
git status
git diff get_psse_scenarios_data.py
git checkout get_psse_scenarios_data.py
git status
git diff get_psse_scenarios_data.py
git add get_psse_scenarios_data.py
git commit -m "temp disable impedance check"
git status
git diff psse_middleware/psse_middleware.py
git add psse_middleware/psse_middleware.py
git commit -m "only changing branch resistance"
git status
git diff controllers/study_controller.py
git checkout controllers/study_controller.py
git status
git diff controllers/study_controller.py
git status
git diff controllers/scenario_controller.py
git checkout controllers/scenario_controller.py
git status
git push origin dev
git status
git branch
git status
git add calculators/
git commit -m "updating cost calc"
git push origin draft
git push origin dev
git status
git diff data_managers/scenario_data_manager.py
git add data_managers/scenario_data_manager.py
git commit -m "fix to reading in branch data"
git status
git diff validators/
git status
git add validators/
git commit -m "added one way check of psse data in cost db"
git push origin dev
git status
git push origin feature/dc_cost
git status
cd ../
l
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
source venv38/bin/activate
pip install -r requirements.txt
pip3 install -r requirements.txt
deactivate
source venv38/bin/activate
pip3 install -r requirements.txt
deactivate
exit
sudo apt update
sudo apt upgrade
sudo apt update
snap install sublime-text
snap install sublime-text --classic
sudo apt upgrade
sudo chown -R timol .
exit
sudo chown -R timol .
exiot
exit
docker ps
docker ps -a
docker start 0e591bbfa216
docker exec -it 0e591bbfa216 bash
exit
git status
pwd
exit
sudo chown -R timol .
docker ps
docker ps -a
docker start 0e59
docker ps
docker exec -it 0e591bbfa216 bash
exit
git status
git add ../calculators/bialek_calculator.py
git commit -m "fix to dc"
git push origin feature/dc_cost
git status
git ../calculators/
git commit -m "updated costs"
git add ../calculators/
git commit -m "updated dc calc and costs"
git push origin dev
git push origin feature/dc_cost
exit
sudo apt update
htop
sudo apt upgrade
sudo apt autremove
sudo apt autoremove
caja .
exit
mkvmerge -o "HUB1022F - Gases - Video 2" "Screen_Recording_20220412-205332_Samsung Notes.mp4" +"Screen_Recording_20220413-202904_Samsung Notes.mp4" +"Screen_Recording_20220413-205735_Samsung Notes.mp4"
mkvmerge -o "HUB1022F - Gases - Video 2" "Screen_Recording_20220412-205332_Samsung Notes.mp4" --append-to "Screen_Recording_20220413-202904_Samsung Notes.mp4" --append "Screen_Recording_20220413-205735_Samsung Notes.mp4"
mkvmerge --help
mkvmerge -o "HUB1022F - Gases - Video 2" "Screen_Recording_20220412-205332_Samsung Notes.mp4" +"Screen_Recording_20220413-202904_Samsung Notes.mp4" +"Screen_Recording_20220413-205735_Samsung Notes.mp4"
exit
mkvmerge -o "HUB1022F - Gases - Video 3.mkv" +"Screen_Recording_20220414-205258_Samsung Notes.mp4" +"[200~Screen_Recording_20220414-205811_Samsung Notes.mp4" +
mkvmerge -o "HUB1022F - Gases - Video 3.mkv" +"Screen_Recording_20220414-205258_Samsung Notes.mp4" +"[200~Screen_Recording_20220414-205811_Samsung Notes.mp4" +"Screen_Recording_20220416-205836_Samsung Notes.mp4" +"Screen_Recording_20220418-202545_Samsung Notes.mp4"
mkvmerge -o "HUB1022F - Gases - Video 3.mkv" +"Screen_Recording_20220414-205258_Samsung Notes.mp4" +"200~Screen_Recording_20220414-205811_Samsung Notes.mp4" +"Screen_Recording_20220416-205836_Samsung Notes.mp4" +"Screen_Recording_20220418-202545_Samsung Notes.mp4"
mkvmerge -o "HUB1022F - Gases - Video 3.mkv" "Screen_Recording_20220414-205258_Samsung Notes.mp4" +"200~Screen_Recording_20220414-205811_Samsung Notes.mp4" +"Screen_Recording_20220416-205836_Samsung Notes.mp4" +"Screen_Recording_20220418-202545_Samsung Notes.mp4"
mkvmerge -o "HUB1022F - Gases - Video 3.mkv" "Screen_Recording_20220414-205258_Samsung Notes.mp4" +"Screen_Recording_20220414-205811_Samsung Notes.mp4" +"Screen_Recording_20220416-205836_Samsung Notes.mp4" +"Screen_Recording_20220418-202545_Samsung Notes.mp4"
source ~/.venv/bin/activate
python3 energies_from_pmf.py
exit
git status
git add ../
git commit -m "updated draft"
git push origin draft
exit
gnome-screensaver-command -l
sudo apt update
sudo apt upgrade
sudo apt install mkvtoolnix
sudo apt update
sudo apt upgrade
sudo apt updatesudo apt update
sudo apt update
sudo apt upgrade
sudo chown -R timol .
exit
cd /home/timol/work/esp/sapp_transmission_study/sapp_transmission_pricing_app/app
source venv/bin/activate
pip install -r requirements.txt
sudo apt install python3-dev
pip install -r requirements.txt
pip uninstall numpy
pip uninstall pandas
reset
ls
deactivate
rm -r venv/
mv venv.old/ venv
exit
htop
exi
exit
sudo chown -R timol .
docker ps
docker start 0e59
docker exec -it 0e591bbfa216 bash
exit
git status
cd ../
ls
chown -R timol venv
sudo chown -R timol venv
python3 -m venv venv
l
source venv/bin/activate
pip install -r requirements.txt
python -m pip install --upgrade pip
pwd
git status
git diff src/get_psse_scenarios_data.py
git add src/get_psse_scenarios_data.py
git commit -m "adding zero impedance config settings"
git push origin dev
git status
git push origin feature/dc_cist
git push origin feature/dc_cost
git status
git diff src/calculators/cost_calculator.py
git statatus
cd src/
git status
gi add calculators/cost_calculator.py
git add calculators/cost_calculator.py
git commit -m "updating cost calc"
git status
git diff config/
git add config/
git commit -m "added constants to config"
git status
git diff controllers/study_controller.py
git status
git add controllers/study_controller.py
git commit -m "clean study controller"
git status
git add data_managers/scenario_data_manager.py
git status
gitk
sudo apt install gitk
gitk
git commit -m "added max gen peak load for all scenarios"
git status
git diff data_managers/study_data_manager.py
git stastus
git status
git diff data_managers/
git commit -m "cleaned study data manager"
git status
git add data_managers/
git commit -m "cleaned study data manager"
git push origin feature/dc_cost
git status
git add calculators/
git commit -m "updated costs"
git push origin feature/dc_cost
git status
git checkout calculators/marginal_participation_calculator.py
git status
git checkout calculators/marginal_participation_calculator.py
git diff calculators/marginal_participation_calculator.py
git checkout calculators/marginal_participation_calculator.py
git status
git diff calculators/marginal_participation_calculator.py
git add calculators/marginal_participation_calculator.py
git commit -m "fix to marginal calc"
git push origin feature/dc_cost
git status
git add calculators/weighted_cost_calculator.py
git commit -m "added non ajdusted costs"
git add config/settings.py
git commit -m "updated file names"
git status
git diff data_managers/base_data_manager.py
git diff data_managers/cost_data_manager.py
git status
git diff data_managers/scenario_data_manager.py
git add data_managers/
git commit -m "updated file read/write"
git status
got diff controllers/
git diff controllers/
git add controllers/
git commit -m "updated weighted calcs"
git push origin feature/dc_cost
exit
sudo apt update && sudo apt upgrade
b exit
exit
sudo chown -R timol venv
sudo chown -R timol .
exit
sudo chown -R timol .
exit
sudo chown -R timol .
git status
git diff calculators/cost_calculator.py
git status
git add calculators/cost_calculator.py data_managers/cost_data_manager.py config/settings.py
git commit -m "writing out files"
git push origin feature/dc_cost
git status
git add calculators/ config/
git status
git commit -m "doing weighted calcs"
git push origin feature/dc_cost
git status
git add calculators/ config/
git commit -m "doing weighted calcs"
git push origin feature/dc_cost
git status
git add calculators/weighted_cost_calculator.py data_managers/
git status
git commit -m "doing weighted calcs"
git push origin feature/dc_cost
git status
git add data_managers/ config/ calculators/
git commit -m "doing weighted calcs"
git push origin feature/dc_cost
git status
git add calculators/cost_calculator.py
git add config/
git add data_managers/
git commit -m "doing weighted calcs"
git push origin feature/dc_cost
git status
git add calculators/ git add data_managers/ git add config/
git status
git add data_managers/ git add config/
git add data_managers/ calculators/ data_managers/
git add config/
git status
git commit -m "doing weighted calcs"
git push origin feature/dc_cost
git status
git diff calculators/
git diff controllers/
git add calculators/ controllers/
git commit -m "doing weighted calcs"
exit
docker start 0e59
docker exec -it 0e591bbfa216 bash
exit
mkvmerge -o "HUB1022F - Chemical Equilibrium - Video 2.mkv"
mkvmerge -o "HUB1022F - Chemical Equilibrium - Video 2.mkv" "Screen_Recording_20220419-202910_Samsung Notes.mp4" +"Screen_Recording_20220419-210118_Samsung Notes.mp4"
exit
ping google.com
exit
caja --no-desktop .
cd ../
git status
git diff
git status
git add .
git commit -m "updated draft"
git push origin draft
exit
source ~/.venv/bin/activate
python3 energies_from_pmf.py
exit
sudo apt update && sudo apt upgrade
git status
docker exec -it 0e591bbfa216 bash
docker start 0e59
docker exec -it 0e591bbfa216 bash
exit
exit
sudo chown -R timol .
ewxit
exit
sudo chown -R timol .
exit
cd ../
git status
caja --no-desktop .
exit
docker exec -it 0e591bbfa216 bash
exit
git status