Session 0 - Overview of operating systems¶

Topics¶

  1. Microsoft Windows
  2. MacOS
  3. Linux

Microsoft Windows¶

  • On personal computers Microsoft Windows is the most used operating system (75.54%).
  • Some software is only available for Microsoft Windows

    • Computer-aided design: AutoDesk or SolidWorks
    • Data analysis: Statistica
    • Software for sensor or lab equipment
  • Closed source and licensed software

MacOS¶

  • Second most used operation system on personal computers (14.98%).
  • Widely used by graphic designers and artists, but more common for daily usage.
  • Closed source and licensed software

Linux¶

  • Linux as an operation system is not widely used on personal computer (2.45%).
  • Linux is open source and non-licensed software.
  • Not all software is available on Linux: MS Office, Adobe Photoshop, Corel Draw, and Adobe Reader
  • Many open source alternatives are available.

Virtual machines¶

A virtual machine is a container and one can run an operating system within another operating system. For example one can run Linux in a container within Windows. The guest operating system is using the resources, e.g. memory, CPU, or memory, of the host system.

Examples are: VirtualBox, Docker/Podman, vmware, Parallels Desktop, vmware Fusion, and many more.

vim

Why Linux?¶

Excellent question!

Let us have a look at the Top500, the list with the fastest supercomputer in the world.

Here none of the 500 supercomputer runs on Windows or macOS.

The supercomputers at LSU run all on Linux.

So if you ant to run large scale simulations, you need to use Linux and Bash to compile your code, move files, and run the simulations!

Session I - Introduction to Linux¶

Topics¶

  1. Bash
  2. Bash commands
  3. Editing files in the Bash
  4. Bash programming

Bash¶

Definitions¶

Bash

This is the command language interpreter, which is widely used on various operating systems and a default on most GNU/Linux systems. The name is an acronym for the ‘Bourne-Again SHell’.

Shell

This is the macro processor which allows the execution of bash commands.

Scripting

A collection of bash commands which would be executed interactively one-by-one.

Command shells¶

On the operating system, you open a terminal window and inside this window the shell is running. You will type the bash commands there interactively.

Bash

  • bash: Default on GNU\Linux and macOS
  • fish: Nice features by default, without doing configuration.

You can install Windows Subsystem for Linux (WSL) on Windows and run a GNU/Linux environment.

However, on most of the supercomputers the bash shell is the default.

Bash commands¶

In [1]:
!date
Fri Jun 10 11:06:11 AM CDT 2022
In [2]:
!cal
      June 2022     
Su Mo Tu We Th Fr Sa
          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      
                    
In [3]:
!pwd
/home/diehlpk/git/courses/MEDP-7098/1-intro-linux

Let us have a look at bash commands¶

First, let us check how many bash commands are on my computer

In [4]:
%%bash 

compgen -bakc| wc -l
6678

Oh, we will not look into over 6000 bash commands today. Better, we stick with a few widely used ones :)

ls¶

The command ls lists the files in the current directory, excluding the hidden files.

  • ls -a lists all the files in the current directory
  • ls -l lists the files, file size, owner, group, and date
In [5]:
!ls
bash.png@  convert.sh*  data_celcius.csv  Session1.ipynb  Session1.slides.html
In [6]:
!ls -a
./         convert.sh*       .gitignore.1         Session1.ipynb
../        data_celcius.csv  .gitignore.2         Session1.slides.html
bash.png@  .gitignore        .ipynb_checkpoints/
In [7]:
!ls -l
total 1128
lrwxrwxrwx. 1 diehlpk diehlpk     13 May 18 15:26 bash.png -> docs/bash.png
-rwxr-xr-x. 1 diehlpk diehlpk    195 Jun 10 10:43 convert.sh*
-rw-r--r--. 1 diehlpk diehlpk     69 Jun 10 10:43 data_celcius.csv
-rw-r--r--. 1 diehlpk diehlpk 562544 Jun 10 11:06 Session1.ipynb
-rw-r--r--. 1 diehlpk diehlpk 580133 May 18 12:55 Session1.slides.html

tree¶

The command tree lists all files in the current directory formated as a tree.

In [8]:
!tree ..
..
├── 1-intro-linux
│   ├── bash.png -> docs/bash.png
│   ├── convert.sh
│   ├── data_celcius.csv
│   ├── Session1.ipynb
│   └── Session1.slides.html
├── 24-theory-hpc
├── 25-intro-cluster
├── 26-intor-hpc-approaches
├── 2-intro-python
├── 3-examples-python
├── 6-intro-cpp
├── 7-example-cpp
├── data.csv
├── docs
│   ├── bash.png
│   ├── index,html
│   ├── index.html
│   ├── pandoc.css
│   ├── Session1.slides.html
│   └── vim.png
├── generate.sh
├── index.md
├── LICENSE
└── README.md

9 directories, 16 files

mkdir¶

The command mkdir creates a new directory in the current folder.

In [9]:
!ls
bash.png@  convert.sh*  data_celcius.csv  Session1.ipynb  Session1.slides.html
In [10]:
!mkdir myFolder
In [11]:
!ls
bash.png@    data_celcius.csv  Session1.ipynb
convert.sh*  myFolder/         Session1.slides.html

touch¶

The command touch creates new empty files or update the timestamp on existing files

  • touch -c newfile.txt Will update the timestamp, if the file exists
  • touch -a newfile.txt Will update the access timestamp
  • touch -m newfile.txt Will update the modified timestamp
In [12]:
!ls -a
./         convert.sh*       .gitignore.1         myFolder/
../        data_celcius.csv  .gitignore.2         Session1.ipynb
bash.png@  .gitignore        .ipynb_checkpoints/  Session1.slides.html
In [13]:
!touch newfile.txt
In [14]:
!ls 
bash.png@    data_celcius.csv  newfile.txt     Session1.slides.html
convert.sh*  myFolder/         Session1.ipynb

cd¶

The command cd is used to change the directory and navigate in the directory tree structure

  • cd .. navigates to the parent directory of the current one
  • cd ~ navigates to the user's home directory
In [15]:
!ls 
bash.png@    data_celcius.csv  newfile.txt     Session1.slides.html
convert.sh*  myFolder/         Session1.ipynb
In [16]:
%%bash
cd myFolder
ls -a
.
..

rm¶

The command rm is used to delete files and directories

  • rm is used to delete files
  • rm -r is used to delete directories
In [17]:
!ls -a
./           data_celcius.csv  .ipynb_checkpoints/  Session1.slides.html
../          .gitignore        myFolder/
bash.png@    .gitignore.1      newfile.txt
convert.sh*  .gitignore.2      Session1.ipynb
In [18]:
!rm newfile.txt
In [19]:
!ls -a
./         convert.sh*       .gitignore.1         myFolder/
../        data_celcius.csv  .gitignore.2         Session1.ipynb
bash.png@  .gitignore        .ipynb_checkpoints/  Session1.slides.html

Delete a directory¶

In [20]:
!ls
bash.png@    data_celcius.csv  Session1.ipynb
convert.sh*  myFolder/         Session1.slides.html
In [21]:
%%bash
ls 
echo "-----"
rm -r myFolder
ls
bash.png
convert.sh
data_celcius.csv
myFolder
Session1.ipynb
Session1.slides.html
-----
bash.png
convert.sh
data_celcius.csv
Session1.ipynb
Session1.slides.html

cp¶

The command cp copies a file or a directory including all the files within it.

  • cp -r copies a directory
In [22]:
!ls
bash.png@  convert.sh*  data_celcius.csv  Session1.ipynb  Session1.slides.html
In [23]:
!cp Session1.ipynb Backup.ipynb
In [24]:
!ls
Backup.ipynb  convert.sh*       Session1.ipynb
bash.png@     data_celcius.csv  Session1.slides.html

Copying a directory¶

In [25]:
!mkdir myFolder
In [26]:
!ls
Backup.ipynb  convert.sh*       myFolder/       Session1.slides.html
bash.png@     data_celcius.csv  Session1.ipynb
In [27]:
!cp -r myFolder myFolder2
In [28]:
!ls
Backup.ipynb  convert.sh*       myFolder/   Session1.ipynb
bash.png@     data_celcius.csv  myFolder2/  Session1.slides.html

mv¶

The command mv moves a file or a folder to a new one and deleting the old one

In [29]:
!mv Backup.ipynb ToDelete.ipynb
In [30]:
!ls
bash.png@    data_celcius.csv  myFolder2/      Session1.slides.html
convert.sh*  myFolder/         Session1.ipynb  ToDelete.ipynb
In [31]:
!mv myFolder myFolder2
In [32]:
!ls myFolder2
myFolder/

cat¶

The command cat print the file's content to the terminal.

In [33]:
!cat ../README.md
## Session I - Introduction to Linux

Topics:

* Bash  
* Bash commands
* Bash scripts

Material:

* [Slides](https://diehlpkteaching.github.io/MEDP-7098/Session1.slides.html)

### References

* Newham C. Learning the bash shell: Unix shell programming. " O'Reilly Media, Inc."; 2005 Mar 29. [Link](https://www.oreilly.com/library/view/learning-the-bash/0596009658/)
* Robbins A. Bash Pocket Reference: Help for Power Users and Sys Admins. " O'Reilly Media, Inc."; 2016 Feb 17. [Link](https://www.oreilly.com/library/view/bash-pocket-reference/9781491941584/)

## Session 2 - Introduction to Python

## Session 3 - Practical programming with Python

## Session 6 - Introcution to C++

## Session 7 - Practical programming with C++

## Session 24 - Introduction to theory of high performance computing 

## Session 25 - Introdcution to high performance computing clusters

## Session 26 - Introdcution to high performance programming approaches


<p style="text-align:center;"> <img src="https://mirrors.creativecommons.org/presskit/buttons/80x15/svg/by-nc-nd.svg" alt="CC"> </p>

head¶

The command head prints the first few lines if the file's content to the terminal.

In [34]:
!head ../README.md
## Session I - Introduction to Linux

Topics:

* Bash  
* Bash commands
* Bash scripts

Material:

tail¶

The command tail prints the last few lines if the file's content to the terminal.

In [35]:
!tail ../README.md
## Session 24 - Introduction to theory of high performance computing 

## Session 25 - Introdcution to high performance computing clusters

## Session 26 - Introdcution to high performance programming approaches


<p style="text-align:center;"> <img src="https://mirrors.creativecommons.org/presskit/buttons/80x15/svg/by-nc-nd.svg" alt="CC"> </p>

grep¶

The command grep searches for a string within the file.

In [36]:
!grep Session ../README.md
## Session I - Introduction to Linux
* [Slides](https://diehlpkteaching.github.io/MEDP-7098/Session1.slides.html)
## Session 2 - Introduction to Python
## Session 3 - Practical programming with Python
## Session 6 - Introcution to C++
## Session 7 - Practical programming with C++
## Session 24 - Introduction to theory of high performance computing 
## Session 25 - Introdcution to high performance computing clusters
## Session 26 - Introdcution to high performance programming approaches

wget¶

The command wget downloads a file or archive using the URL to it.

In [37]:
!wget  https://github.com/diehlpk/diehlpk.github.io/blob/main/.gitignore
--2022-06-10 11:06:16--  https://github.com/diehlpk/diehlpk.github.io/blob/main/.gitignore
Resolving github.com (github.com)... 140.82.114.4
Connecting to github.com (github.com)|140.82.114.4|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘.gitignore.3’

.gitignore.3            [ <=>                ] 135.44K   710KB/s    in 0.2s    

2022-06-10 11:06:17 (710 KB/s) - ‘.gitignore.3’ saved [138692]

which¶

The comand which shows the absolute path to the executable.

In [38]:
!which python3
/usr/bin/python3

history¶

The command history lists the last bas commands one typed

In [39]:
!history
cat convert.sh
./convert.sh
cd 1-intro-linux/
vim 1-intro-linux/convert.sh
./generate.sh
git push
git commit -a
git add 1-intro-linux/convert.sh
git status
git add docs/bash.png
cd ..
vim convert.sh
cat data_celcius.csv
ls
chmod a+x convert.sh
git add data.csv
vim data.csv
vim generate.sh
firefox docs/Session1.slides.html
cd git/courses/MEDP-7098/
pass -c lsu
ssh rostam
jupyter notebook
ipython notebook &
sudo dnf update
git pull
texmaker book.tex &
sudo dnf uodate
vim input-delta.yaml
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-pd.yaml --hpx::threads=10
vim input-pd.yaml
ls out-pd/
cd rect-crack/
cd paperPUMPD-part2/
./format.sh
git add ../appendix/shared_pointer.cpp
vim ../appendix/shared_pointer.cpp
./appendix/shared_pointer
make
vim ../appendix/CMakeLists.txt
aspell -c -l EN_us appendix.tex
git stash
vim ../appendix/unique_pointer.cpp
cd build/
cat appendix/unique_pointer.cpp
git add appendix/unique_pointer.cpp
git commit -0a
./appendix/unique_pointer
cmake ..
vim appendix/CMakeLists.txt
cd Examples/
cd git/book/
cd --
cd git/paperPUMPD-part2/
podman run -v $PWD:/output peridigm/peridigm Peridigm
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-delta.yaml --hpx::threads=10
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-delta.yaml --hpx::threads=20
rm out-delta/*
cp ~/Downloads/pum_mesh_coupling_16-all_step_50_sides_up_to_five_plus_delta.vtu .
git add .gitignore
mv TeX.gitignore .gitignore
wget https://raw.githubusercontent.com/github/gitignore/main/TeX.gitignore
evince book.pdf &
rm cefclient/ -rf
rm -rf recterm/ resources/
rm -rf flatex/ fifechan/
rm =rf flatex/ fifechan/
rm -rf hpx-1.5.0/
rm -rf hpx-1.6.0/
rm -rf hpx-1.4.1/
rm boost_1_78_0/ -rf
rm -rf ui/
rm -rf sys/
rm prf sys/
rm bin -rf
;s
rm extern/ -rf
rm extern/
rm -rf LC
rm remote/ -rf
rm VersionInfo.xml
rm *.zip
rm *.tar.gz
;
rm install
rm build-silo.sh
rm *.txt
rm *.pdf
rm -rf archives/
ls archives/
cp ~/Downloads/pum_mesh_coupling_16_step_50_sides_left_top_and_bottom_*_delta.vtu .
cp ~/Downloads/pum_mesh_coupling_16_step_50_sides_left_top_and_bottom_*_delta.vtu.
cp ~/Downloads/pum_mesh_coupling_16-all_step_20_sides_up_to_five_plus_delta.vtu .
rm pum_mesh_coupling_16_step_20_sides_left_top_and_bottom.vtu
rm pum_mesh_coupling_16-all_step_20_sides_up_to_five.vtu
./bin/PeriHPX
cd Compile/
make -j 30
make clean
cd PeriHPX/
cd git/perihpx/
la
cd modern-book/
paraview &
cp ~/Downloads/pum_mesh_coupling_32-all_step_20_sides_up_to_five_plus_delta.vtu .
sudo dnf system-upgrade reboot
sudo dnf system-upgrade download --releasever=36
sudo dnf remove libreoffice
podman system reset
podman rmi $(podman images -qa) -f
history  | grep sudo
clear
sudo dnf autoremove
diehlpk@localhost ~/git> history  | grep sudo
sudo dnf install texlive-fixme
sudo dnf install texlive-algpseudocodex
sudo dnf install texlive-algpseudocode
sudo dnf install texlive-subfigure
sudo dnf install texlive-todonotes
sudo dnf system-upgrade download --releasever=36
sudo dnf upgrade --refresh
sudo dnf update
sudo dnf install compgen
sudo dnf install python-autopep8
sudo dnf install autopep8
sudo dnf install autopep
sudo dnf install texlive-datetime
sudo dnf install texlive-datetime2
sudo dnf install texlive-newtx
sudo dnf install texlive-newtxtext
sudo dnf search texlive-newtxt
sudo dnf search newtx
sudo dnf search newtxtext
sudo dnf search texlive-newtxtext
sudo dnf install texlive-newtext
sudo dnf install texlive-framed
sudo dnf install texlive-ntheorem
sudo dnf install texlive-ulem
sudo dnf install texlive-titling
sudo dnf install texlive-tiling
sudo dnf install texlive-upquote
sudo dnf install texlive-tcolorbox
sudo reboot
sudo dnf uodate
sudo gem pristine ffi
sudo dnf --allowerasing distro-sync
sudo dnf module install ruby:2.7
sudo dnf module reset ruby
sudo dnf install libffi
sudo dnf install rubygems
sudo dnf install ruby-gems
sudo dnf install ruby
sudo bundle install
sudo gem install jekyll-sass-converter --version=1.5.2
sudo gem pristine ffi --version 1.15.5
sudo dnf install texlive-datatool
sudo dnf install texlive-imakeidx
sudo dnf install texlive-needspace
sudo dnf install texlive-tocbasic
sudo dnf install texlive-tocstyle
sudo dnf install texlive-toc
sudo dnf install octave
sudo dnf install lcov
sudo dnf install librecad
sudo dnf install libredraw
sudo dnf isntall libredraw
sudo dnf search nicefrac
sudo dnf install texlive-nicefrac
sudo dnf install
sudo dnf install texlive-type1cm
sudo dnf insta;;
sudo dnf install p7zip
sudo dnf install zoom_x86_64.rpm
sudo podman system prune --all --force && sudo podman rmi --all
sudo podman purge
sudo dnf install texlive-siunitx
sudo dnf install texlive-latex3
sudo dnf install texlive-moderncv
sudo dnf install texlive-fontawesome texlive-kurier texlive-ebgaramond
sudo dnf install fontawesome-fonts
sudo dnf remove texlive-moderncv
sudo dnf install fontawesome-fonts-web
sudo dnf install fontawesome-fonta
sudo dnf install texlive-enumitem
sudo dnf install texlive-arydshln
sudo dnf install texlive-arydshin
sudo dnf install texlive-multirow
sudo dnf install texlive-academicons
sudo dnf install texlive-xits
sudo dnf install texlive-dantelogo
sudo dnf install texlive-fetamont
sudo dnf install texlive-featmont
sudo dnf install texlive-dtk
sudo dnf install texlive-dtklogo
sudo dnf install texlive-dtklogos
sudo dnf install texlive-dtk-logos
sudo dnf install texlive-tweaklist
sudo dnf install texlive-luatex85
sudo dnf install texlive-standalone
sudo dnf install golang
sudo dnf install go-lang
sudo rm -rf .local/share/containers
sudo podman daemon --storage-opt dm.basesize=100G
sudo dnf remove swift-lang
sudo podman system prune
sudo dnf remove rust cargo
sudo podman system prune --volumes
sudo dnf install swift-lang
sudo dnf remove VirtualBox-6.1
sudo dnf remove VirtualBox-6.1*
sudo dnf remove VirtualBox-6.1 *
sudo dnf remove virtualbox
sudo snf update
sudo dnf install texlive-lipsum
sudo podman rm docker.io/diehlpk/modern-cpp-base:latest
sudo podman system prune -a
sudo dnf system-upgrade clean
sudo dnf clean packages
sudo journalctl --vacuum-size=100M
sudo du --exclude="/home" -x -h -a / | sort -r -h | head -30
sudo dnf install clang-tools-extra
sudo dnf install clang
sudo dnf install clang-
sudo dnf install clang-format
sudo dnf install texlive-a4wide
sudo dnf install texlive-multibib
sudo dnf install texmaker
sudo dnf install evince
sudo dnf install lilypond-texgyre-heros-fonts
sudo dnf install 
sudo dnf install google-roboto-fonts.noarch
sudo dnf install texlive-mathtools
sudo dnf install texlive-beamer
sudo dnf install texlive-pgfplotstable
sudo dnf install texlive-pgfplots
sudo dnf install texlive-doclicense
sudo dnf install texlive-lastpage
sudo dnf install texlive-scheme-minimal
sudo dnf install texlive-isodate
sudo dnf install latexmk
sudo dnf installlatexmk
sudo dnf remove @kde-desktop
sudo dnf groupremove "KDE"
sudo dnf install libreoffice gimp inkscape openshot
sudo dnf groups remove "Xfce Desktop"
sudo dnf system-upgrade reboot
sudo dnf system-upgrade download --releasever=35 --allowerasing
sudo dnf remove openshot
sudo dnf remove handbrake
sudo dnf remove handbreak
sudo dnf remove inkscape ape
sudo dnf remove gimp
sudo dnf remove corebird
sudo dnf remove librecad
sudo dnf remove blender
sudo dnf remove libreoffice
sudo dnf clean
sudo dnf autoremove
sudo dnf --refresh upgrade
sudo dnf install bleachbit
sudo du -hs /var | sort -nr | head -30
sudo du -rhs /var | sort -nr | head -30
sudo du -m /var | sort -nr | head -30
sudo du -h /var | sort -nr | head -30
sudo du -hs /var
sudo dnf remove "texlive-*"
sudo dnf remove texlive-small
sudo dnf remove texlive-medium
sudo dnf remove texlive-*
sudo dnf remove texlive*
sudo journalctl --vacuum-size 100M
sudo dnf system-upgrade download --releasever=35
sudo dnf install texlive-dinbrief
sudo dnf install texlive-enotez
sudo dnf install gnome-shell-extension-pomodoro
sudo dnf install texlive-savetrees
sudo dmidecode -s bios-release-date
sudo dmidecode -s bios-version
sudo service bluetooth restart
sudo fwupdmgr update
sudo fwupdmgr refresh
sudo service fwupd start
sudo dnf install fwupd
sudo rfkill list
sudo dnf upgrade bluez
sudo dnf downgrade bluez
sudo dnf localinstall ~/Downloads/zoom_x86_64.rpm
sudo dnf localinstall ~/Downloads/zoom_x86_64\(1\).rpm
sudo shutdown -P 04:00
sudo shutdown -P 10
sudo dnf install rclone
sudo dndinstall rclone
sudo podman push docker.pkg.github.com/diehlpk/siam-review-examples/siam-review-base:latest
sudo podman login docker.pkg.github.com --username diehlpk -p 79bfbcbf74b7a278fae6259121036dd44ba4ba60
sudo podman push docker.pkg.github.com/diehlpk/siam-review-examples/siam-review-base
sudo podman oush docker.pkg.github.com/diehlpk/siam-review-examples/siam-review-base:latest
sudo podman tag 9d52eaccf990 docker.pkg.github.com/diehlpk/siam-review-examples/siam-review-base:latest
sudo podman images
sudo podman build --tag docker.io/diehlpk/siam-review-base:latest -f ./Dockerfile
sudo podman list images
sudo podman  push diehlpk/siam-review-base:latest
sudo shutdown -P 30
sudo shutdown -p 30
sudo dnf install texlive-moresize
sudo dnf install texlive-gnuplot-lua-tikz
sudo dnf install tikzit
sudo dnf remove xfig
sudo dnf install xfig
sudo dnf install texlive-svg
sudo podman stop e6ffa1832750
sudo podman container list
sudo podman run -it docker.io/solita/centos-systemd:7 /sbin/init
sudo setsebool -P container_manage_cgroup true
sudo podman run -ti -p 80:80 systemd
sudo dnf install pandoc texlive-collection-context
sudo dnf remove openclonk
sudo dnf install openclonk
sudo dnf install openclock
sudo dnf install asio-devel
sudo dnf install asio
sudo make install
sudo vim /usr/local/include/BlazeIterative/solvers/ConjugateGradientTag.hpp
sudo restart
sudo dnf install texlive-qrcode
sudo dnf install texlive-tikzposter
sudo dnf install texlive-endnotes
sudo dnf install texlive-laspage
sudo dnf remove lincity-ng
sudo dnf remove supertux
sudo shutdown -P 23:00
sudo shupdown -P 23:00
sudo dnf install texlive-tewaklist
sudo dnf group install 'pantheon desktop'
sudo ./install
sudo dnf install texlive-scheme-medium
sudo dnf install texlive-full
sudo dnf install texlive
sudo dnf system-upgrade download --refresh --releasever=34 --allowerasing
sudo dnf remove "texlive*"
sudo dnf remove tezxlive*
sudo dnf system-upgrade download --releasever=34 --allowerasing
sudo dnf remove vdrift
sudo dnf system-upgrade download --releasever=34
sudo dnf system-upgrade download --refresh --releasever=34
sudo dnf install vdrift
sudo dnf remove haxima
sudo dnf install haxima
sudo dnf remove rogue
sudo dnf install rogue
sudo dnf install kwave
sudo luarocks install  luafilesystem
sudo dnf install lua-devel
sudo dnf search lua-devel
sudo dnf search lua
sudo dnf dearch lua
sudo dnf lua
sudo dnf install luarocks
sudo dnf install corsix-th
sudo shutdown -P 1:00
sudo shutdown -P 24:00
sudo dnf install fifechan.x86_64
sudo dnf remove FlightGear
sudo dnf remove fligthgear
sudo dnf remove flightgear
sudo dnf remove widelands
sudo dnf update --best --allowerasing
sudo dnf install  zoom_x86_64\(2\).rpm
sudo rpm -i  zoom_x86_64\(2\).rpm
sudo dnf remove zoom
sudo dnf install FlightGear
sudo dnf install flightgear
sudo dnf install fligthgear
sudo dnf remove extremetuxracer
sudo dnf install extremetuxracer
sudo dnf remove xmoto
sudo dnf install xmoto
sudo reboot now
sudo dnf install supertux
sudo dnf install supertux2
sudo dnf inatall supertux2
sudo dnf isntall supertux2
sudo dnf install pcl-devel
sudo dnf install flann-devel
sudo systemctl restart kdm
sudo
sudo dnf groupinstall "KDE Plasma Workspaces"
sudo dnf groupinstall -y "KDE Plasma Workspaces"
sudo dnf groupinstall -y "KDE Workspaces"
sudo dnf groupinstall -y "KDE Worspaces"
sudo dnf groupinstall -y "Xfce Desktop"
sudo dnf groupremove -y "Xfce Desktop"
sudo dnf groupremove -y "XCFE Workspaces"
sudo dnf groupremove -y "KDE Plasma Workspaces"
sudo dnf remove -y "KDE Plasma Workspaces"
sudo dnd remove -y "KDE Plasma Workspaces"
sudo killall sddm
sudo dnf remove kde-plasma-desktop
sudo dnf install texlive-tkz-graph
sudo dnf search tikz-graph
sudo dnf install texlive-tikz-graph
sudo dnf install pybind11-devel
sudo dnf install pybind11-devel-2.5.0-5.fc33.
sudo dnf install chromium
sudo echo 256 > /proc/sys/fs/inotify/max_user_instances
sudo dnf install blaze-devel
sudo dnf system-upgrade download --releasever=33
sudo dnf remove openjfx
sudo dnf remove openjfx8-8.0.202-24.b07.fc33.x86_64
sudo dnf install aspell-de
sudo rpm  --import package-signing-key.pub
sudo dnf install poppler-utils
sudo dnf install HandBrake-gui
sudo dnf install openshot
sudo dnf install opennshot
sudo systemctl restart bluetooth;
sudo systemctl start bluetooth;
sudo dnf install openblas-devel
sudo dnf install libblas-devel
sudo dnf install blas-devel
sudo dnf remove blaze-devel
sudo dnf install pybind11
sudo dnf install vtk-devel
sudo dnf install hdf5-devel.x86_64
sudo dnf localinstall teams-1.2.00.32451-1.x86_64.rpm
sudo dnf install audacity
sudo dnf install cheese
sudo dnf install rvm
sudo gem update --system
sudo dnf install texlive-scheme-full
sudo dnf install texlive-large
sudo dnf install ruby rubygems
sudo dnf install ruby ruby-gems
sudo dnf remove ruby
sudo dnf uninstall ruby
sudo dnf uninstall ruby*
sudo dnf remove ruby*
sudo dnf install dvips
sudo dnf install jabref
sudo podman run -it c8c2d6df52c6 /bin/bash
sudo podman rmi c8558c9c20b6
sudo podman rmi 5ba73528d694
sudo podman rmi 536f3995adeb
sudo podman rm 536f3995adeb
sudo podman images rm 536f3995adeb
sudo podman images rm docker.pkg.github.com/nonlocalmodels/nonlocalheatequation/nonlocalmodels
sudo podman images -D docker.pkg.github.com/nonlocalmodels/nonlocalheatequation/nonlocalmodels
sudo podman list
sudo podman pull diehlpk/nonlocalmodels:baseimage
sudo podman pull diehlpk/nonlocalheatequation
sudo lshw
sudo dnf remove hpx-*
sudo dnf remove hpx
sudo dnf remove hpx*
sudo dnf install kcm_wacomtablet
sudo rpm -i flash-player-npapi-32.0.0.403-release.x86_64.rpm
sudo rpm -i flash-player-npapi-32.0.0.403-release.x86_64.rpm --nogpgcheck
sudo podman push docker.pkg.github.com/nonlocalmodels/nonlocalheatequation/nonlocalmodels:latest
sudo podman publish docker.pkg.github.com/nonlocalmodels/nonlocalheatequation/nonlocalmodels:latest
sudo podman tag 536f3995adeb docker.pkg.github.com/nonlocalmodels/nonlocalheatequation/nonlocalmodels:latest
sudo podman login docker.pkg.github.com -u diehlpk
sudo dnf remove xournal
sudo dnf install xournalpp
sudo podman run --rm -p 8787:8787 diehlpk/nonlocalmodels:baseimage
sudo podman login docker.pkg.github.com -u diehlpk --password-stdin
sudo podman  push diehlpk/nonlocalheatequation:latest
sudo dnf install metis-devel metis
sudo dnf install metis-devel metis-libs
sudo dnf install metis-devel
sudo dnf install gmsh-devel
sudo dnf install okular
sudo dnf install ocular
sudo dnf update --nogpgcheck
sudo dnf update --nopgpcheck
cat ~/GH_TOKEN.txt | sudo podman login docker.pkg.github.com -u diehlpk --password-stdin
sudo dnf install texlive-nomencl
sudo dnf updateinfo
sudo dnf install texlive-gitinfo2
sudo dnf install texlive-getcommit
sudo dnf install texlive-IEEEtran
sudo systemctl enable bluetooth
sudo dnf install linux-firmware
sudo systemctl status bluetooth.service
sudo systemctl start bluetooth.service
sudo dmesg | grep Blue
sudo lsusb | grep blue
sudo lspci | grep blue
sudo lsmod | grep bluetooth
sudo modprobe btusb
sudo dnf install bluez-hid2hci
sudo dnf search plantronics
sudo dnft install texlive-type1cm
sudo rfkill block wlan && sudo modprobe -r btusb && sleep 10 && sudo modprobe btusb && systemctl --user restart pulseaudio && sudo systemctl restart bluetooth
sudo dmesg | grep blue
sudo dnf install pulseaudio-module-bluetooth
sudo dnf install pulseaudio-bluetooth
sudo bluetoothctl
sudo service bluetooth start
sudo service start bluetooth
sudo service bluetooth
sudo dnf install bluez-gnome
sudo dnf install blueman
sudo dnf install texlive-dinbrieg
sudo dnf install texlive-leftidx
sudo dnf install texlive-wrapfig
sudo dnf isntall texlive-doclicense
sudo dnf groupinstall "KDE Plasma Workspace"
sudo dnf system-upgrade download --releasever=32
sudo rm -rf /var/lib/flatpak/
sudo du /var/lib -hx --max-depth=1
sudo du /var/ -hx --max-depth=1
sudo du /var -hx --max-depth=1
sudo du / -hx --max-depth=1
sudo rm -rf /var/lib/docker/
sudo dnf remove docker \
sudo dnf remove flatpack
sudo du -sh /var/lib/* |sort -n
sudo du -hx /var/log
sudo dnf package-cleanup --oldkernels --count=2
sudo package-cleanup --oldkernels --count=2
sudo  rm -fr /var/cache/yum/*
sudo rm -rf /var/lib/dnf/system-upgrade.json
sudo dnf clean all --enablerepo=\*
sudo rm -rf /var/cache/dnf/
sudo rm -rf /var/cache/PackageKit/31
sudo dnf clean all
sudo dnf remove tex-live
sudo dnf remove texlive
sudo rm -rf /var/log/dnf.*
sudo find / -type f -name *.log
sudo vim /etc/logrotate.conf
sudo dnf clean dbcache
sudo dnf clean chache
sudo du -sxh *
sudo find / -type f -exec ls -s {} \; | sort -n -r | head -20
sudo snap install slack --classic
sudo snap install slack
sudo snap install discord
sudo ln -s /var/lib/snapd/snap /snap
sudo dnf install snapd
sudo dnf install texlive-typelcm
sudo dnf updatre
sudo podman rmi docker.io/diehlpk/teaching
sudo dnf install texlive-lcg
sudo shutdown -P 23:30
sudo podman login docker.io
sudo dnf install simplescreenrecorder
sudo podman rmi localhost/diehlpk/teaching
sudo podman build --tag docker.io/diehlpk/teaching:latest -f ./Dockerfile
sudo podman rmi localhost/teaching:latest
sudo podman rmi localhost/teaching
sudo podman rm localhost/teaching
sudo podman rm 7f7ccaf094fe
sudo dnf install impallari-raleway-fonts
sudo podman inspect --format="{{.Id}}" localhost/diehlpk/teaching
sudo podman inspect
sudo podman images -s
sudo podman push 7f7ccaf094fe docker://diehlpk/teaching:latest
sudo podman build --tag diehlpk/teaching:latest -f ./Dockerfile
sudo podman build --tag teaching:latest -f ./Dockerfile
sudo podman build --tag techingC++ -f ./Dockerfile
sudo dnf install podman
sudo dnf install texlive-beamerswitch
sudo dnf install texlive-sr-vorl
sudo ./anyconnect-linux64-4.8.01090-core-vpn-webdeploy-k9.sh
sudo dnf install sox
sudo dnf install ffmpeg
sudo dnf install recterm
sudo dnf install asciinema
sudo  npm -g install ttystudio
sudo dnf install ttystudio
sudo dnf install ttyrec
sudo dnf install texlive-aastex
sudo dnf install texlive-stringstrings
sudo dnf remove wine
sudo dnf install wine
sudo dnf localinstall AdbeRdr9.5.5-1_i486linux_enu.rpm
sudo dnf localinstallAdbeRdr9.5.5-1_i486linux_enu.rpm

rm results-stiffness-matrix.zip
rm proposal.zip
rm -rf dopelib/
rm -rf documents/
zip -r newpaper.zip  E-MuCoCoS16/*
ls E-MuCoCoS16/
zip newpaper.zip  E-MuCoCoS16/*
pdflatex paper.tex
bibtex paper
bibtex paper.tex
evince paper.pdf
sudo dnf install texlive-fixme
cd E-MuCoCoS16/
evince ausarbeitung.pdf
pdflatex ausarbeitung.tex
sudo dnf install texlive-algpseudocodex
sudo dnf install texlive-algpseudocode
sudo dnf install texlive-subfigure
sudo dnf install texlive-todonotes
cd EuroPar16/
cd papers/
cd git/documents/
clang --version
rm CMakeCache.txt
git add ../appendix/ranges.cpp
vim ../CMakeLists.txt
./appendix/ranges_pure
vim ../appendix/ranges.cpp
./appendix/ranges
cmake
cat appendix/ranges_pure.cpp
vim util/CMakeLists.txt
cat CMakeLists.txt
vim CMakeLists.txt
git add ../appendix/ranges_pure.cpp
vim ../appendix/ranges_pure.cpp
cat ../appendix/lambda.cpp
vim appendix/ranges_pure.cpp
vim appendix/move.cpp
cat appendix/lambda.cpp
git add ../appendix/move.cpp
./appendix/move
vim ../appendix/move.cpp
vim ../appendix/lambda.cpp
cd diehlpk/git/book/modern-book/
mkdir build
python
sudo dnf upgrade --refresh
git add CMakeLists.txt
vim ../util/CMakeLists.txt
ls ../util/
ls util/
cd util/
git add AUTHORS
vim AUTHORS
git add pbm3.cpp
vim pbm3.cpp
git add pbm.hpp
vim pbm.hpp
touch pbm.hpp
mkdir util
mkdir serial
git clone https://github.com/ModernCPPBook/Examples.git
cd git/book/modern-book/
ipython notebook
git commit 0a
cd git/courses/MEDP-7098/1-intro-linux/
cd git/paperPUMPD-part2/rect-crack/
mkdir ./out-delta/

mv pum_mesh_coupling_16_step_20_sides_left_top_and_bottom\(1\).vtu pum_mesh_coupling_16_step_20_sides_left_top_and_bottom.vtu
mv 'pum_mesh_coupling_16_step_20_sides_left_top_and_bottom(1).vtu' 


cp ~/Downloads/pum_mesh_coupling_16_step_20_sides_left_top_and_bottom\(1\).vtu .
cp input.yaml input-delta.yaml
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input.yaml --hpx::threads=20
vim input.yaml
ls out
mkdir out
ls out/
rm out/*.vtu
cp ~/Downloads/pum_mesh_coupling_16-all_step_20_sides_up_to_five.vtu .
rm *.vtk
rm *.vtu
rm *,vtu
cat Session1.slides.html
ls -l
ls -ls
bash
dnf search compgen
dnf searhc compgen
sudo dnf install compgen
compgen
man bash
ln -s docs/bash.png 1-intro-linux/bash.png
rm 1-intro-linux/bash.png
tree
evince mesh.pdf
pass -c nersc
ssh perlmutter-p1.nersc.gov
exit
vim courses/index.md
vim README.md
vim index.md
git add 1-intro-linux/Session1.ipynb
git add docs/Session1.slides.html
ls docs/
ls 1-intro-linux/Session1.slides.html
firefox Session1.slides.html
rm Session1.html
;ls
vim run.sh
cd Compile/webpage/ParallelComputationMath
cd git/courses/ParallelComputationMath
firefox Session1.html
jupyter nbconvert --to html Session1.ipynb
pwd
cd MEDP-7098/
cd git/courses/
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-40.yaml --hpx::threads=20
mkdir ./out-16-40/

vim input-40.yaml
cp input-30.yaml input-40.yaml
vim input-35.yaml
cp ~/Downloads/pum_mesh_coupling_16_step_40_sides_left_top_and_bottom.vtu .
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-35.yaml --hpx::threads=20
htop
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-30.yaml --hpx::threads=20
rm out-16-30/*
vim input-30.yaml
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-20.yaml --hpx::threads=20
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-29.yaml --hpx::threads=20
rm out-16-20/*
vi input-20.yaml
vi input-9.yaml
ls out-16-30/
ls out-16-20/
evince POST-USACM\ Large\ Scale\ TTA\ Mentoring-Career-Panel-EMI-2022-V4.pdf
display tta.png
convert -alpha remove -alpha off POST-USACM\ Large\ Scale\ TTA\ Mentoring-Career-Panel-EMI-2022-V4.pdf tta.png
convert POST-USACM\ Large\ Scale\ TTA\ Mentoring-Career-Panel-EMI-2022-V4.pdf tta.png -alpha remove -alpha off
convert POST-USACM\ Large\ Scale\ TTA\ Mentoring-Career-Panel-EMI-2022-V4.pdf tta.png
cd Downloads/
vim cv/index.md
cd git/diehlpk.github.io/
pass -c github-token
evince author/book.pdf
evinbce author/book.pdf
git pill
python plot.py
vim data.dat
display applications_per_year.png
display world.png
python world.py
pip install cairosvg
pip install cairosvf
pip install pygal_maps_world
python world.p
vim world.py
display students_per_year.png
cd HPX_GSoC_Stats/
texmaker long.tex &
cd data/cv/
npm npm i --package-lock-only
npm
yarn
vim package-lock.json
cp package.json.1 package.json
wget https://raw.githubusercontent.com/mmistakes/so-simple-theme/master/package.json
ks
git add package-lock.json
wget https://raw.githubusercontent.com/mmistakes/so-simple-theme/master/package-lock.json
vim package.json
vim _includes/footer.html
vim openscience/index.md
bundle exec jekyll serve
python statebased2D-parallel-hard-full.py 0.25 8 0
python statebased2D-parallel-hard-full.py 2 8 0
autopep8-3 statebased2D-parallel-hard-full.py --in-place
autopep8-3 statebased2D-parallel-hard-full.py
sudo dnf install python-autopep8
sudo dnf install autopep8
sudo dnf install autopep
leafpad statebased2D-parallel-hard-full.py
cd git/AnalyticStiffnessPython-State-Based/hard/circle/
cd git/AnalyticStiffnessPython/
python statebased2D-parallel-hard-full.py 1 8 0
cd circle/
cd hard
cd git/AnalyticStiffnessPython-State-Based/
vim _data/panel.yml
cd git/AMTE2022.github.io/
evince solution-all-1.0-0.01.pdf
cd git/supersonic/
sudo dnf install texlive-datetime
sudo dnf install texlive-datetime2
evince author/book.pdf &
git add spphys.bst
git add bib.bib
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython-State-Based/hard/cirlce-all/*.pdf" .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython-State-Based/hard/cirlce-all/*.pdf"
cd circle-all/
mkdir circle-all
cd Hard-state/
cd Simulations/
latexmk -pdf book.tex
cp author/spphys.bst .
rm book.i*
rm book.idx
rm book.blg
rm book.bbl
rm *.aux
latexmk -pdf CA
latexmk -pdf C
rm book.aux
ls author/
mv bib.tex bib.bib
touch bib.tex
leafpad author/chapter.tex
git pull --rebase
fish
fih
git add packages.tex
touch packages.tex
git oush
git add tkz-graph.sty
wget https://raw.githubusercontent.com/diehlpkteaching/ParallelComputationMathScript/main/tkz-graph.sty
git add sections/*.tex
touch sections/chapter_stl.tex
touch sections/chapter_standard_stl.tex
touch sections/chapter_running.tex
git add *.tex
mv chapter.tex sections/
pdflatex book.tex
sudo dnf install texlive-newtx
sudo dnf install texlive-newtxtext
sudo dnf search texlive-newtxt
sudo dnf search newtx
sudo dnf search newtxtext
sudo dnf search texlive-newtxtext
sudo dnf install texlive-newtext
sudo dnf install texlive-framed
sudo dnf install texlive-ntheorem
git add svmono.cls
cp author/svmono.cls .
cp author/*.tex .
co author/*.tex .
mkdir sections
cd author/
cat readme.txt
l
unzip monographs.zip
cp ~/Downloads/monographs.zip .
git clone git@git.cct.lsu.edu:pdiehl/modern-book.git
cd book/
mkdir book
cd git/
cat ~/.ssh/id_rsa_lm2.pub
cat ~/.ssh/config
git add hard/circle/statebased2D-parallel-hard.py
git add Plate.py.ipynb
scp statebased2D-parallel-hard.py rostam:/home/diehlpk/Simulations/AnalyticStiffnessPython-State-Based/hard/circle-large/
scp statebased2D-parallel-hard.py eostam:/home/diehlpk/Simulations/AnalyticStiffnessPython-State-Based/hard/circle-large/
cd hard:
python statebased2D-parallel-hard.py 1 8 0
mkdir ./out-16-35/
mkdir : ./out-16-35/
cp input-30.yaml input-35.yaml
cp ~/Downloads/pum_mesh_coupling_16_step_35_sides_left_top_and_bottom.vtu .
vim call-for-papers.md
got push
cp ~/Downloads/pum_mesh_coupling_16_step_30_sides_left_top_and_bottom.vtu .
mkdir ./out-16-30/
cp input-20.yaml input-30.yaml
python statebased2D-parallel-hard.py 0.25 8 0
cd hard/crack/
/bin/python
cp ../crack/statebased2D-parallel-hard.py .
mkdir circle
cd hard/
cp ~/Downloads/pum_mesh_coupling_16_step_20_sides_left_top_and_bottom.vtu .
cp ~/Downloads/pum_mesh_coupling_20_step_20_sides_left_top_and_bottom.vtu .
vim input-20.yaml
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-18.yaml --hpx::threads=20
vim input-18.yaml
cp ~/Downloads/pum_mesh_coupling_16_step_18_sides_left_top_and_bottom.vtu .
cp ~/Downloads/pum_mesh_coupling_18_step_15_sides_left_top_and_bottom.vtu .
cp ~/Downloads/*pum_mesh_coupling_18_step_15_sides_left_top_and_bottom.vtu .
cp ~/Downloads/*pum_mesh_coupling_18_step_15_sides_left_top_and_bottom.vtu ..
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-15.yaml --hpx::threads=20
vim input-15.yaml
vim input-9.yaml
cat input-9.yaml
cp ~/Downloads/*pum_mesh_coupling_16_step_15_sides_left_top_and_bottom.vtu .
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-9.yaml --hpx::threads=20
rm out-*/*
rm *.png
cp ~/Downloads/*pum_mesh_coupling_16_step_9_sides_left_top_and_bottom.vtu .
rm ~/Downloads/*.vtu
git push --set-upstream origin update_doc
git checkout -b update_doc
vim doc/RunningSimulations.md
cd git/peridigm/
pass -c stony
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-13.yaml --hpx::threads=20
vim input-13.yaml
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-10.yaml --hpx::threads=20
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-10.yaml --hpx::threads=10
vim input-10.yaml
cp ~/Downloads/*pum_mesh_coupling_16_sides_left_top_and_bottom_dynamic_crack_initial_*_micro_s.vtu .
paraview
rm out-16-15/*
rm out-16-14/*
rm out-16-13/*
rm out-16-12/*
rm out-16-11/*
rm out-16-10/*
cd experiment/
rm *.jpeg
rm *.jpg
rm *.gif
ld
par
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-18-32.yaml --hpx::threads=20
mkdir ./out-32-18/
vim input-18-32.yaml
cp input-15-32.yaml input-18-32.yaml
cp ~/Downloads/*pum_mesh_coupling_32_sides_simple_coupling_time_step_18_of_100_new_force.vtu .
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-15-32.yaml --hpx::threads=20
vim input-15-32.yaml
evince derivative-all-1.0-0.1.pdf
pass 0c nersc
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-15-32.yaml --hpx::threads=5
mkdir ./out-32-15/
cp input-15.yaml input-15-32.yaml
mkdir ./out-32-20/
cp ~/Downloads/*pum_mesh_coupling_32_sides_simple_coupling_time_step_15_of_100_new_force.vtu .
paraview . &
paraview . *
~/opt/thunderbird/thunderbird &
pass -c engarx
slack &
snap refresh slack
snap refresh jabref
snap refresh kabref
snap list
snap refresh
snap
snap update
jabref
snap install jabref
vim _data/conference.yml
vim venue.md
cd WAMTA23.github.io/
cd git/wamta/
pass -c perlmutter
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-20.yaml --hpx::threads=5
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-19.yaml --hpx::threads=5
vim input-19.yaml
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-18.yaml --hpx::threads=5
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-15.yaml --hpx::threads=5
cp ~/Downloads/*.vtu .
rm out-16-*/*
rm out-16-9/*
scp rostam:"/home/diehlpk/Simulations/supersonic/*.npy" .
vim panel.md
pass -c daint
ssh daint
vim _data/committee.yml
git rebase --continue
git add committee.md
leafpad committee.md
vim committee.md
scp rostam:"/home/diehlpk/Simulations/supersonic/nodes*.npy" .
rm *.npy
xournalpp
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-pd.yaml --hpx::threads=5
cp ../../paperComparePDPF/example1/inp/m1/input.yaml input-pd.yaml
vim ../../paperComparePDPF/example1/inp/m1/input.yaml
vim ../../paperComparePDPF/example1/inp/m1/input.yaml .
gmsh mesh.geo
vim ../../paperComparePDPF/example1/inp/mesh.geo
vim mesh.geo
cp ../../paperComparePDPF/example1/inp/mesh.geo .
gmsh
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-18.yaml --hpx::threads=10
mkdir ./out-16-20/
mkdir ./out-16-19/
mkdir ./out-16-18/
mkdir ./out-16-15/
vimn input-15.yaml
cp input.yaml input-15.yaml
cp input.yaml input-20.yaml
cp input.yaml input-19.yaml
cp input.yaml input-18.yaml
cp ~/Downloads/pum_mesh_coupling_16_sides_simple_coupling_time_step_*_of_100.vtu .
cp input.yaml input-9.yaml
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input.yaml --hpx::threads=10
cd m1/
cd inp/
cd example1/
cd paperComparePDPF/
mkdir ./out-16-9/
cp ~/Downloads/pum_mesh_coupling_16_sides_simple_coupling_time_step_9_of_100.vtu .
cp ../experiment/input.yaml .
jupyter lab
export PATH="/home/diehlpk/.local/bin:$PATH"
pass
vim supersonic1d.py
sudo dnf install texlive-ulem
sudo dnf install texlive-titling
sudo dnf install texlive-tiling
sudo dnf install texlive-upquote
sudo dnf install texlive-tcolorbox
git mv Untitled.ipynb Model.ipynb
scp rostam:"/home/diehlpk/Simulations/supersonic/*.txt" .
scp rostam:"/home/diehlpk/Simulations/supersonic/*.csv" .
scp rostam:"/home/diehlpk/Simulations/supersonic/*.csv"
scp rostam:/home/diehlpk/Simulations/supersonic/*.csv
git psh
cp Plots.ipynb_old Plots.ipynb
rm Untitled1.ipynb
rm Untitled.ipynb
cp Plots.ipynb Plots.ipynb_old
texmaker main.tex
cd git/wamta/booklet/
pass -c editorialmamanger
pass -c else
file-roller .
cd .ssh/
scp Supersonic-1D.py rostam:/home/diehlpk/Simulations/supersonic/
python Supersonic-1D.py
jupyter nbconvert --to script Supersonic-1D.ipynb
history | grep convert
cat con_mdcm_d.csv
cd git/reusommer21/
ssh nersc
sudo reboot
git add construct-aligned-mesh.ipynb
;d
cp ../experiment/construct-aligned-mesh.ipynb .
cp ../experiment/construct-aligned-mesh.ipynb
mkdir rect-crack
vim .gitignore
ls stationary_crack/
scp -r rostam:"/home/diehlpk/Simulations/PUM2/2delta/out-16-*" .
scp -r rostam:"/home/diehlpk/Simulations/PUM2/fixedtopbottom/out-16-*" .
scp -r rostam:/home/diehlpk/Simulations/PUM2/fixedtopbottom/out-16-* .
cp input-10.yaml input-11.yaml
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-11.yaml --hpx::threads=10
scp -r 2delta/ rostam:/home/diehlpk/Simulations/PUM2/

scp -r fixedtopbottom/ rostam:/home/diehlpk/Simulations/PUM2/

scp -r normalforce rostam:/home/diehlpk/Simulations/PUM2/

mkdir ./out-16-14/
mkdir ./out-16-13/
mkdir ./out-16-12/
mkdir ./out-16-11/
mkdir ./out-16-10/
cp ../input-10.yaml .
cd fixedtopbottom/
mv ~/Downloads/*_normal_force.vtu .
cd normalforce/
mv ~/Downloads/*_fixed_bot_and_top.vtu .
mv ~/Downloads/*_two_horizons.vtu .
cd 2delta/
mkdir fixedtopbottom
mkdir normalforce
mkdir 2delta
ssh -X pdiehl@login.ookami.stonybrook.edu
ssh 170223221.@login.ookami.stonybrook.edu
ssh ookami
gpg --list-keys
pass insert hpxkey
paa -c lsu
scp Supersonic-2D.py rostam:/home/diehlpk/Simulations/supersonic/
vim  Supersonic-2D.py
jupyter nbconvert --to script Supersonic-2D.ipynb
python Supersonic-2D.py
vim Supersonic-2D.py
ipython Supersonic-2D.py
cd supersonic/
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython-State-Based/hard/crack-long-res/*.pdf" .
cd Simulations/Hard-state/crack-long-res/
ssh rotam
git clone https://github.com/diehlpk/Cabana.git
pgp2
jupyter-labhub
pass insert engarx
pwgen -n -s  12
git commti -a
git add Supersonic-2D.ipynb
git
vim venue.html
vim index.html
evince main.pdf &
echo $PATH
jupyter labecho $PATH
export PATH=/home/diehlpk/.local/bin:$PATH
jupyter
pip install jupyterlab ipympl
pip install pyqt5
pip install ipympl
pip install matplotlib-qt5
pip install matplotlib
git pusj
git add Coupling-MDCM-Dirichlet-Adaptive-endpoint-non-matching-Cubic.ipynb
git add Coupling-MDCM-Dirchelet-Adaptive-endpoint-non-matching.ipynb
libreoffice m.csv
git gommit -a
git add *
cp ../jekyll-conference-template/* . -r
git clone https://github.com/WAMTA23/WAMTA23.github.io.git
git add Coupling-MDCM-Adaptive-endpoint-matching-Cubic.ipynb
git satus
vim _includes/sponsors.html
vim _layouts/default.html
vim _site/index.html
git add Copupling-MDCM-Dirchelet-Adaptive-endpoint-matching.ipynb
git add Coupling-MDCM-Dirchelet-Adaptive-endpoint-matching-Cubic.ipynb
git Coupling-MDCM-Dirchelet-Adaptive-endpoint-matching-Cubic.ipynb
cp Coupling-MDCM-Dirchelet-Adaptive-endpoint-matching.ipynb Coupling-MDCM-Dirchelet-Adaptive-endpoint-matching-Cubic.ipynb
cp Coupling-MDCM-Dirchelet-Adaptive-endpoint-matching.ipynb Coupling-MDCM-Adaptive-endpoint-matching.ipynb


git add Coupling-MDCM-Adaptive-endpoint-matching.ipynb
git mv Copupling-MDCM-Dirchelet-Adaptive-endpoint-matching.ipynb Coupling-MDCM-Dirchelet-Adaptive-endpoint-matching.ipynb


git mv MDCM-Adaptive-endpoint.ipynb Copupling-MDCM-Dirchelet-Adaptive-endpoint-matching.ipynb
cp MDCM-Adaptive-endpoint.ipynb
cd jekyll-conference-template/
cp ~/Downloads/cct.png .
rm *
cd sponsors/
cd assets/images/
vim _layouts/page.html
vim _data/schedule.yml
vim _data/important_dates.yml
vim organization.html
cd wamta/booklet/
git add Plots.ipynb
killall bundle
bundle exec jekyll serve &
vim _config.yml
git pus
pass -c
gpg --list--keys
gpg --list
gpg --refresh-keys
git add Lagrange.ipynb
cp ~/git/supersonic/Lagrange.ipynb .
sudo gem pristine ffi
gem pristine ffi --install-user
gem pristine ffi
gem pristine ffi --user-install
ruby --version
sudo dnf --allowerasing distro-sync
sudo dnf module install ruby:2.7
udo dnf module install ruby:2.7
sudo dnf module reset ruby
gem uninstall pathname --version 0.2.0
bundle exec jekyll serve --trace
sudo dnf install libffi
bundle exec jekyll sbuild
gem install ffi
bundle install ffi
bundle install
gem install bundle
rm -rf ~/.gem
/usr/bin/ruby-mri

~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-13.yaml --hpx::threads=10
cp input-11.yaml input-13.yaml
co input-11.yaml input-13.yaml
cp ~/Downloads/pum_mesh_coupling_16_sides_left_top_and_bottom_quasi_static_initial_force_as_at_time_13_micro_s.vtu .
cp ~/Downloads/pum_mesh_coupling_16_sides_left_top_and_bottom_quasi_static_initial_force_as_at_time_13.vtu .
/home/diehlpk/Downloads/nomad.3.8.1/bin/nomad param.txt
vim param.txt
/home/diehlpk/Downloads/nomad.3.8.1/bin param.txt
cd bin/
./bin/nomad
cd ~/Downloads/nomad.3.8.1/
cp ~/Downloads/nomad.3.8.1/
cd ,,
gem update  --user-install
rm -r /home/diehlpk/bin/
rm -r /home/diehlpk/.gem/
~/bin/bundle exec jekyll serve
~/bin/bundle
gem update  --system
gem update  --sytem
/home/diehlpk/Compile/nomad-v.4.2.0/build/bin/nomad param.txt
sudo dnf install rubygems
sudo dnf install ruby-gems
sudo dnf install ruby
gem update --system --user-install
gem update --system --user
cat log.txt
vim exec.sh
gem update --system
sudo bundle install
/usr/bin/jekyll
sudo gem install jekyll-sass-converter --version=1.5.2
gem install jekyll-sass-converter --version=1.5.2
gem install jekyll-sass-converter-1.5.2
bundle install jekyll-sass-converter-1.5.2
gem pristine ffi --version 1.15.5
sudo gem pristine ffi --version 1.15.5
git clone https://github.com/yishanhe/jekyll-conference-template.git --depth=1
git clone https://github.com/yishanhe/jekyll-conference-template.git
/home/diehlpk/Compile/nomad-v.4.2.0/build/bin/nomad param.txt > log.txt
touch supersonic1d.py
cat exec.sh
vim
chmod a+x exec.sh
cat param.txt
make install
make isntall
make -j 2
ls ../bin/nomad
ls ../bin
ls ..
~/Compile/nomad-v.4.2.0/build/
rm ../CMakeCache.txt
cmake .
./bin/
bin/nomad
ls bin/nomad
ls bin/
cd nomad-v.4.2.0/
unzip nomad-v.4.2.0.zip
cp ~/Downloads/nomad-v.4.2.0.zip .
rm -rf nomad.3.9.1/
git push --delete origin v1.0
git tag -d v1.0
git tag
pip install sympy
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-12.yaml --hpx::threads=10
ls -lah
ls out-16-12/
vim input-12.yaml
vim input-11.yaml
wget https://www.cct.lsu.edu/~sbrandt/c++talk.mp4
lls
cp ~/Downloads/pum_mesh_coupling_16_sides_left_top_and_bottom_quasi_static_initial_force_as_at_time_1*.vtu .
rm ~/Downloads/pum_mesh_coupling_16_crack_initial_1*
rm pum_mesh_coupling_16_crack_initial_1*
pip install scipy --upgrade
pip install numpy --upgrade
pip --upgrade pip
pip upgrade pip
sudo dnf install texlive-datatool
sudo dnf install texlive-imakeidx
sudo dnf install texlive-needspace
sudo dnf install texlive-tocbasic
sudo dnf install texlive-tocstyle
sudo dnf install texlive-toc
cd booklet/
git clone https://github.com/WAMTA23/booklet.git
cd wamta/
mkdir wamta
git add Supersonic-1D.ipynb
./install
unzip matlab_R2022a_glnxa64.zip
cp ~/Downloads/matlab_R2022a_glnxa64.zip .
rm -rf matlab/
ls glnxa64/
cd glnxa64/c
cd Compile/matlab/
cp ~/Compile/matlab_R2022a_glnxa64.zip .
matlab
octave --force-gui &
octave script_peri103_3.m
cd Peridynamics/
cd Phase-field-and-Peridynamics/
git clone https://github.com/janelchua/Phase-field-and-Peridynamics.git
sudo dnf install octave
git clone https://github.com/diehlpk/supersonic.git
cp input-10.yaml input-12.yaml
cp ~/Downloads/pum_mesh_coupling_16_crack_initial_12_micro_s.vtu .
cp ~/Downloads/pum_mesh_coupling_16_crack_initial_11_micro_s.vtu .
rm ~/Downloads/pum_mesh_coupling_32_*
cp ~/Downloads/pum_mesh_coupling_16_crack_initial_10_micro_s.vtu .
cp ~/Downloads/pum_mesh_coupling_10_crack_initial_10_micro_s.vtu .
rm ~/Downloads/pum_mesh_coupling_*
cp input.yaml input-10.yaml
pass -c diant
mkdir ./out-16-1/
rm -rf out-32/
rm -rf out-16/
rm -rf out-16-20/
cp ~/Downloads/pum_mesh_coupling_16_crack_initial_1_micro_s.vtu .
rm pum_mesh_coupling_16_initial_left_top_and_bottom_*
git add Coupling-MDCM-Neumann-Cubic-Interpolation.ipynb
git add Coupling-MDCM-Dirchelet-Cubic-Interpolation.ipynb
cd reusommer21/
evince diss.pdf
cd git/dissertation/
evince bond-based-2d-plate-dH-0.2-8-1-hard.pdf
evince bond-based-2d-plate-dT-0.2-8-1-hard.pdf
evince bond-based-2d-plate-u-y-0.2-8-1-hard.pdf
evince bond-based-2d-plate-d-0.2-8-1-hard.pdf
cd crack-long-res/
cd Simulations/Hard-state/
cp ~/Downloads/pum_mesh_coupling_16_initial_left_top_and_bottom_*_percent_force.vtu .
rm ~/Downloads/pum_mesh_coupling_16_*
rm pum_mesh_coupling_16_*
vim _posts/blog/2021-03-18-cairo-talks.md
vim publications.md
cd git/perihpx/perihpx.github.io/
cd perihpx.github.io/
rm out-4/*
cp ~/Downloads/pum_mesh_coupling_16_initial_left_top_and_bottom_20_percent_force.vtu .
rm output_100.vtu
vim output_100.vtu
pass insert lsu
pass insert ls
pwgen -n -s -y 12
gmsh mesh-3.msh
cp ~/Downloads/mesh-3.msh .
cd m3
gmsh mesh-2.msh
history | grep gmsh
history | grep gmsk
gmsh mesh-2.msh -O mesh-2.vtk
gmsh mesh-2.msh -o mesh-2.vtk
cp ~/Downloads/mesh-2.msh .
cd m2/
mkdir m3
mkdir m2
pdflatex mesh.tex
leafpad mesh.tex
inkscape mesh.svg
rm mesh.tex
vim mesh.tex
rm mesh
vim mesh
ls mesh
gmsh mesh-1.msh
cd inp/m1/
rm mesh.svg
rm mesh.png
cd git/paperComparePDPF/
git clone https://github.com/uiuc-hpc/LC.git
:wq
git mv codecov.yml .github/
git checkout main
git chkechout main
git ckechout main
git checkout master
leafpad input.yaml
make test
make -j
vim input_2d_gmsh_quad-initial-crack.yaml
leafpad mesh_2d_quad.msh &
valgrind ~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input_2d_gmsh_quad.yaml  --hpx::threads=1
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input_2d_gmsh_quad.yaml  --hpx::threads=1
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input_2d_gmsh_quad-initial.yaml  --hpx::threads=1
vim input_2d_gmsh_triangle.yaml
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input_2d_gmsh_quad-initial-crack.yaml  --hpx::threads=1
gdb ~/git/perihpx/PeriHPX/build/bin/PeriHPX
ccmake ..
cd build_debug/
cd Compile/hpx-1.7.1/
bt
lsvim input.yaml
gdb ~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input_2d_gmsh_quad-initial-crack.yaml  --hpx::threads=1
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.7.1/build_debug/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -DCMAKE_BUILD_TYPE=Debug ../
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.7.1/build_debug/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -CMAKE_BUILD_TYPE=Debug ../
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.7.1/build_debug/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ../
mkdir build_debug
cd hpx-1.7.1/
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input_2d_gmsh_quad-initial-crack.yaml  --hpx::thread=1
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input_2d_gmsh_triangle.yaml  --hpx::threads=5
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input_2d_gmsh_quad-initial-crack.yaml  --hpx::threads=3
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input_2d_gmsh_quad-initial-crack.yaml  --hpx::threads=5
vim input_2d_gmsh_quad.yaml
gmsh mesh_2d_quad.msh &
vim mesh_2d_quad.msh
vim mesh-1.msh
git push --set-upstream origin fix_gmsh
ls ./mesh-1.msh
ls ./mesh_1.msh
cd git/perihpx/PeriHPX/examples/io/
rm mesh.v*
git branch -m fix_gmsh
git checkout -b format
mv msh.vtu mesh.vtu
gmsh mesh-1.msh -0 -o mesh.vtk
gmsh mesh-1.msh -0 -o mesh.vtu
mkdir ./out-4/
gmsh mesh-1.msh -2 -o mesh.vtk
gmsh mesh-1.msh -o mesh.vtk
cp ../input.yaml .
cp ~/Downloads/mesh-1.msh .
mkdir m1
rm mesh_*
cd example1
git add input_2d_gmsh_quad-initial-crack.yaml
git checkout initial_crack
git branch
git checout master
git checout amster
ls out-16/
rm out-16/*
leafpad input_2d_gmsh_quad-initial-crack.yaml
make -j20
make -j 20
cd "/home/diehlpk/git/perihpx/PeriHPX/src/rw"
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input_2d_gmsh_quad.yaml  --hpx::threads=5
rm output_*
~/git/NLMech2/build/bin/NLMech -i input_2d_gmsh_quad-initial-crack.yaml  --hpx::threads=5
leafpad input_2d_gmsh_quad.yaml &
cp input_2d_gmsh_quad.yaml input_2d_gmsh_quad-initial-crack.yaml
cd examples/io/
cd git/perihpx/PeriHPX/
git checkout write-crack
git branch write-crack
leafpad input-state.yaml
cp input.yaml input-state.yaml
cp ~/Downloads/pum_mesh_coupling_16_branched_left_top_and_bottom.vtu .
rm pum_mesh_coupling_16_grown.vtu
cp ~/Downloads/pum_mesh_coupling_16_grown.vtu .
cp ~/Downloads/pum_mesh_coupling_16_initial_left_top_and_bottom.vtu .
rm pum_mesh_coupling_*.vtu
git push --set-upstream origin initial_crack
git push --set-upstream origin initial_crac
git checkout -b initial_crack
mv initial-crack-0.vtk initial-crack-0.vtp
mv initial-crack-0.vtu initial-crack-0.vtk
cd out-16/
leafpad ../stationary_crack/
leafpad ../stationary_crack/input.yaml
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-2.yaml --hpx::threads=10
rm out-32/*
vim input-2.yaml
cp ~/Downloads/pum_mesh_coupling_32_initial_left_top_and_bottom.vtu .
rm pum_mesh_coupling_16_initial_top_and_bottom.vtu
cd git/paperPUMPD-part2/experiment/
scp 'close to merger.zip'  rostam:
cp ~/Downloads/pum_mesh_coupling_16_initial_top_and_bottom.vtu .
scp 'close to merger.zip'  perlmutter-p1.nersc.gov:

ls close\ to\ merger.zip
rm *,vtk
rm *bbl
mkdir crack-long-res
mkdor crack-long-res
rm X.0.silo.data.zip
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-2.yaml --hpx::threads=5
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input-2.yaml --hpx::threads=20
cp input.yaml input-2.yaml
mkdir out-32
pass insert rikken
vim Docker/Dockerfile
cd buildInfrastructure/
bash <(curl -s https://codecov.io/bash) -f coverage.info || echo "Codecov did not collect coverage reports"
./codecov -t  7c22dbcb-e252-4a86-8625-677cf5a43385
./codecov
chmod +x codecov
wget https://uploader.codecov.io/latest/linux/codecov
whet https://uploader.codecov.io/latest/linux/codecov
curl -Os https://uploader.codecov.io/latest/linux/codecov
lcov --list coverage.info
lcov --remove coverage.info '/usr/*' --output-file coverage.info
lcov --capture --directory . --output-file coverage.info
sudo dnf install lcov
git rebase contine
git rebase -i HEAD~2
git push --set-upstream origin fix_output
git checkout -b fix_output
git checkout -n fix_output
cp out-16/output_100.vtu .
ls out-16/*
vim _examples/fd-relaxation.md
vim _examples/restart.md
vim _examples/fd-logo-soft-material-2.md
cd perihpx/perihpx.github.io/
mkdir ./out-16/
cp ../stationary_crack/input.yaml .
cp /home/diehlpk/Downloads/pum_mesh_coupling_16.vtu .
cp /home/diehlpk/Downloads/pum_mesh_coupling_128.vtu .
cp /home/diehlpk/Downloads/pum_mesh_coupling_64.vtu .
cp /home/diehlpk/Downloads/pum_mesh_coupling_32.vtu .
rm 'coupling_32_pum(2).vtk'
cp ~/Downloads/coupling_32_pum\(2\).vtk .
pass insert identiy
date
pwgen -n 12
gimp dominic.png
convert 'Scanned Document.pdf' dominic.png
ls S*.pdf
ls *.pdf
ls *
cp ../stationary_crack/Construct-aligned-mesh-example1.ipynb construct-aligned-mesh.ipynb
evince article.pdf
latexmk -pdf article.tex
latexmk -pdf -CA
leafpad article.tex &
unzip Coupling\ theory\ \(PrePrint\).zip
cd paperSerge2/
mv Coupling\ theory\ \(PrePrint\).zip paperSerge2/
mkdir paperSerge2
cp output\(3\).bbl article.bbl
cp output\(2\).bbl article.bbl
mkdir experiment
git add stationary_crack/input.yaml
mv input.yaml stationary_crack/
git mv input.yaml stationary_crack/
mv coupling_16.vtk stationary_crack/
git mv Construct-aligned-mesh-example1.ipynb stationary_crack/
rm foo.vtk
mv *.vtu stationary_crack/
mkdir stationary_crack
cp plot-plate-hard-initial-crack.py ..
evince bond-based-2d-plate-0.2-8-12-d-rotated-hard.pdf &
python plot-plate-hard-initial-crack.py 0.2 8 12
python plot-plate-hard-initial-crack.py 0.2 8 11
evince bond-based-2d-plate-0.2-8-11-d-rotated-hard.pdf &
python plot-plate-hard-initial-crack.py 0.2 8 1
cd new-plots/
cd example2/inp/
cat mesh.geo
cp mesh.msh mesh_3.msh
cp mesh.msh mesh_2.msh
cp mesh.msh mesh_1.msh
rm *.msh
librecad dimensions.dxf
sudo dnf install librecad
sudo dnf install libredraw
sudo dnf isntall libredraw
cd example2/
cp ../output\(1\).bbl article.bbl
pdflatex article.tex
cd paperSerge/
cp Figures/coupling-quartic-approach-2-convergence-fdm-direchlet-moving-8.pdf coupling-quartic-approach-2-convergence-fdm-d-moving-8.pdf
cp coupling-quartic-approach-2-convergence-fdm-direchlet-moving-8.pdf coupling-quartic-approach-2-convergence-fdm-d-moving-8.pdf
unzip Coupling\ theory.zip
mv Coupling\ theory.zip paperSerge/
mkdir paperSerge
mkdir paper
python plot-plate.py 0.2 4 27
python plot-plate.py 0.2 4 16
python plot-plate.py 0.2 4 14
python plot-plate.py 0.2 4 12
python plot-plate.py 0.2 4 8
evince bond-based-2d-plate-0.2-4-3-d-rotated.pdf
python plot-plate.py 0.2 4 3
python plot-plate.py 0.2 5 3
code plot-plate.py
cd plate-10-3/
ls plate-10-3/
ls plate-10-2/
ls plate-10/
ls plate
vim plot-plate.py
cd soft/
cd second/
cd plate-new/
cd new/
ls soft/
python plot-plate-hard-initial-crack.py 0.2 8 5
python plot-plate-hard-initial-crack.py 0.2 8 7
evince bond-based-2d-plate-0.2-8-9-d-rotated-hard.pdf &
evince bond-based-2d-plate-0.2-8-7-d-rotated-hard.pdf &
python plot-plate-hard-initial-crack.py 0.2 8 9
cd AnalyticStiffnessPython
inkscape bond-based-2d-tensile-1.0-4-21-d-rotated.pdf
inkscape bond-based-2d-tensile-1.0-4-11-d-rotated.pdf
inkscape bond-based-2d-tensile-1.0-11-2-d-rotated.pdf
evince bond-based-2d-tensile-1.0-4-2-d-rotated-new.pdf
inkscape bond-based-2d-tensile-1.0-4-2-d-rotated.pdf
cd git/AnalyticStiffnessPython
cp Analytic_stiffness_matrix.pdf figure_r_curve.pdf
cd tensile/
cp quad.geo quad_3.msh
cp quad.geo quad_2.msh
cp quad.geo quad_1.msh
gmsh quad.geo
vim quad.geo
ls inp/
code plot-plate-hard-initial-crack.py
vim /home/diehlpk/.ssh/known_hosts
vim /home/diehlpk/.ssh/known_hosts:30

leafpad template.tex
vim template.tex
mv output.bbl template.bbl
cp ../output.bbl .
sudo dnf search nicefrac
sudo dnf install texlive-nicefrac
latexmk -pdf template.tex
cp references.bib template.bib
unzip PUMPD\ \(Preprint\).zip
cd pumpreprint/
mv PUMPD\ \(Preprint\).zip pumpreprint/
mkdir pumpreprint
vim plot-plate-hard-initial-crack.py
evince bond-based-2d-plate-0.2-8-12-d-rotated-hard.pdf
cp ../plot-plate-hard-initial-crack.py .
vim plot-plate-hard.py
cp ../plot-plate-hard.py .
cp ../*.npy .
mkdir new-plots
zip hard-2022,zip *.npy bond-based-2d-plate-0.2-8-*-u-y-rotated-hard.pdf
cd plate-hard-spline-potential/
firefox docs/index.html
firefox docs/index,html
cat index.md
git add generate.sh
chmod a+x generate.sh
chmod a+X generate.sh
git add docs/index.html
pandoc -s README.md --toc -c pandoc.css --metadata title="MEDP 7098" -o docs/index.html
pandoc -s README.md --toc -c pandoc.css --metadata title="MEDP 7098" -o docs/index,html
pandoc -s README.md --toc -c pandoc.css --metadata title="MEDP 7098"  -o docs/index,html
pandoc -s README.md --toc -c pandoc.css -o docs/index,html
cat ~/Compile/webpage/ParallelComputationMath/Makefile
cat ~/Compile/webpage/ParallelComputationMath/run.sh
cat ../ParallelComputationMath/*.sh
git add index.md
git mv index.md ..
git add pandoc.css
git pandoc.css
cd docs/
mv pandoc.css docs/
mv index.md docs/
cp ../ParallelComputationMath/webpage/pandoc.css .
cp ../ParallelComputationMath/webpage/index.md .
mkdir docs
cd courses/
cd AMTE2022.github.io/
git clone https://github.com/AMTE2022/AMTE2022.github.io.git
sudo dnf install
scp statebased2D-parallel-hard-rect.py rostam:/home/diehlpk/Simulations/AnalyticStiffnessPython-State-Based/hard/crack-rect/
scp statebased2D-parallel-hard-rect.py /home/diehlpk/Simulations/AnalyticStiffnessPython-State-Based/hard/crack-rect/
cd crack/
python statebased2D-parallel-hard-rect.py 0.1 8 0
python statebased2D-parallel-hard-rect.py 0.05 8 0
python statebased2D-parallel-hard.py 0.05 8 0
python statebased2D-parallel-hard.py 0.1 8 0
git rm bondbased2D-parallel-hard.py
cp statebased2D-parallel-hard.py statebased2D-parallel-hard-rect.py
mkdir 26-intor-hpc-approaches
mkdir 25-intro-cluster
mkdir 24-theory-hpc
mkdir 7-example-cpp
mkdir 6-intro-cpp
mkdir 3-examples-python
mkdir 2-intro-python
mkdir 1-intro-linux
cat README.md
git acommit -a
git clone https://github.com/diehlpkteaching/MEDP-7098.git
git mv bondbased2D-parallel-hard.py statebased2D-parallel-hard.py
python bondbased2D-parallel-hard.py 0.05 8 0
sudo dnf install texlive-type1cm
python bondbased2D-parallel-hard.py 0.1 8 0
python bondbased2D-parallel-hard.py 0.2 8 0
pip install shapely --user
pip install shapley --user
python bondbased2D-parallel-hard.py 0.2 0
python bondbased2D-parallel-hard.py 0.2 5
git add ccm/stattebased2D.py
mv bondbased2D.py ccm/stattebased2D.py
git add ccm/stattebased2d-parallel.py
mv bondbased2D-parallel.py ccm/stattebased2d-parallel.py
ls *.py
cd AnalyticStiffnessPython-State-Based/
gimp pd_cuttoff_damage-new-2.png
cd cutoff-new/
cd git/paperPUMPD
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython-State-Based/hard/crack-long/*.pdf" .
cd crack-long
cd $PSCRATCH
cd $PCRATCH
ls mpi.txt
files .
module list
scp perlmutter-p1.nersc.gov:mpi.txt .
texmaker talk.tex
cd Charm/
cd Documents/Konferenzen/Talk/2021/
cd Documents/cd Documents/
sudo dnf insta;;
cd AnalyticStiffnessPython/
gimp pd_cuttoff-new-2.png
ls *.png
git add images-fine.pvsm
git add input-2.yaml
leafpad cv/index.md &
git upll
gimp pd_cuttoff_damage-new.png
gim pd_cuttoff_damage-new.png
gimp pd_cuttoff-new.png
scp coupling_128_pum.vtu  rostam:/home/diehlpk/Simulations/paperPUMPD/cutoff-new

scp  rostam:/home/diehlpk/Simulations/paperPUMPD/cutoff-new

scp input-2.yaml rostam:/home/diehlpk/Simulations/paperPUMPD/cutoff-new

rm out-fine/*
cp ~/Downloads/coupling_128_pum\(1\).vtk coupling_128_pum.vtk
vim submitting.md
cd joss/
cd octotiger.github.io/
git clone https://github.com/diehlpk/joss.git
unzip ezgif-5-5a8d0f2c-png-pdf.zip
convert MS21.pdf M21.png
cp ~/Downloads/coupling_128_pum.vtk coupling_128_pum.vtk
mkdir out-fine/
git add ../inclined/absolute_error.pvsm
git add ../inclined/inclined.pvsm ../cutoff/combined.pvsm images-coarse.pvsm
git add ../bar/bar_pd.pvsm
git add ../.gitignore
vim ../.gitignore
gim pd_cuttoff-new.png
display pd_cuttoff-new.png
rm out-coarse/*
cp ~/Downloads/coupling_32_pum\(2\).vtk coupling_32_pum.vtk
cp ~/Downloads/coupling_32_pum.vtk .
ls out-coarse/
cp coupling_32_pum.vtk coupling_32_pum.vtu
git add input.yaml
meshio-convert
pip install meshio --user
rm coupling_32_pum.vtu
leafpad coupling_32_pum.vtu
git push --set-upstream origin pum_fixes
git checkout pum_fixes
git branch pum_fixes
~/git/NLMech2/build/bin/NLMech -i input.yaml --hpx::threads=20
vim team.md
vim about.md
vim examples.md
git add ../assets/img/inclined-relaxation.png
git add ../assets/img/inclined-final-load.png
git add fd-relaxation.md
aspell -c -l EN_us fd-relaxation.md
vim input_const_load_top-bottom-fine-2-relax.yaml
cd inclined/
vim fd-relaxation.md
cp fd-logo-soft-material.md fd-relaxation.md
cd _examples/
cd build
cd NLMech2/
cd git/NLMech
cd cutoff
mkdir out-coarse
cp ../cutoff/input.yaml .
cp ~/Downloads/coupling_32_pum.vtk
uname -a
pass  nersc
pass  nserc
pass -c nserc
ssh cori.nersc.gov
vim build-all.sh
vim build-hpx.sh
git checkout diehlpk-patch-1
cd OctoTigerBuildChain/
git clone https://github.com/STEllAR-GROUP/OctoTigerBuildChain.git
git add Construct-aligned-mesh-example2.ipynb
git add Construct-aligned-mesh-example1.ipynb
cp Construct-aligned-mesh-example1.ipynb Construct-aligned-mesh-example2.ipynb
cp ../../paperPUMPD-part2/Construct-aligned-mesh-example1.ipynb .
mkdir cutoff-new
cd paperPUMPD
cd paperPUMPD-part2
cd out-const
cd cutoff/
cd git/paperPUMPD/
display pum_modeI_constant.png
cd static/
cd Simulations/PUM/
git branch -d master
git branch -d nanoflann
git branch -d add_force_drop
git rm build-pcl.sh
git rm build-flann.sh
cd HPCBuildInfrastructure/
git push --set-upstream origin nanoflann
ctest -V
ctest
ctest quasistatic.1D.elastic
ctest --verbose
make test VERBOSE=1
make -j 10
git add src/external/nanoflann.hpp
git checkout nanoflann
pass nersc
git add libs/core/mpi_base/src/mpi_environment.cpp
leafpad libs/core/mpi_base/src/mpi_environment.cpp
git rebase -i HEAD~3
git push --set-upstream origin cray_mpich_fix

ls libs/core/mpi_base/src/mpi_environment.cpp
ls src/
git checkout -b cray_mpich_fix
cd git/hpx_main/
pass editorialmamanger
pass insert editorialmamanger
rm Coupling-MSCM-Neumann.py
leafpad Coupling-MSCM-Neumann.py
vim input_const_load_top-bottom-fine-2.yaml
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input_const_load_top-bottom-fine-2-relax.yaml --hpx::threads=30
rm out_top_bottom_const-2-relax/*.vtu
cd diagonal_loading_inclined_precrack/
git log
git psuh
cd git/octotiger.github.io/
./b2 -j8 --cxxflags="-fpic" --threading=multi --link=shared --with-atomic --with-filesystem --with-program_options --with-regex --with-system --with-chrono --with-date_time --with-thread --with-iostreams  variant=release install
./b2 -j8 --cxxflags="-fpic" --threading=multi --link=shared --with-atomic --with-filesystem --with-program_options --with-regex --with-system --with-chrono --with-date_time --with-thread --with-iostreams install
./b2 -j8 --cxxflags="-fpic" --threading=multi --link=shared --with-atomic --with-filesystem --with-program_options --with-regex --with-system --with-chrono --with-date_time --with-thread --with-iostreams Release install
threading=multi link=shared --with-atomic --with-filesystem --with-program_options --with-regex --with-system --with-chrono --with-date_time --with-thread --with-iostreams Release install
./bootstrap.sh --with-toolset=gcc
cd boost_1_78_0/
tar -xvf boost_1_78_0.tar.gz
wget https://boostorg.jfrog.io/artifactory/main/release/1.78.0/source/boost_1_78_0.tar.gz
./configure
cd gperftools-2.9.1/
unzip gperftools-2.9.1.zip
wget https://github.com/gperftools/gperftools/releases/download/gperftools-2.9.1/gperftools-2.9.1.zip
git checkout add_force_drop
git brancg
pass -c ners
pass box
ls out_top_bottom_const-2
vim Docker/FedoraAll
vim .circleci/config.yml
leafpad Docker/FedoraAll
leafpad .circleci/config.yml
leafpad .circleci/config
leafpad ../.circleci/config
vim Docker/Fedora
mkdir .circleci
.circleci
vim Readme.md
git add input_const_load_top-bottom-fine-2-relax.yaml
vim bash/buildAll.sh
cd buildscripts/
leafpad build-all.sh
leafpad config.sh
leafpad build-perihpx.sh
git mv build-nl.sh build-perihpx.sh
vim bash/buildFedora.sh
git clone https://github.com/PeriHPX/buildscripts.git
cd nonlocalheatequation/
vim ../.circleci/config.yml
git add ../src/rw/CMakeLists.txt
git pull rebase
cd perihpx/
git push --set-upstream origin add_force_drop
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input_const_load_top-bottom-fine-2.yaml --hpx::threads=20
~/git/perihpx/PeriHPX/build/bin/PeriHPX -i input_const_load_top-bottom-fine-2-relax.yaml --hpx::threads=20
mkdir out_top_bottom_const-2-relax
cd out_top_bottom_const-2/
~/git/perihpx/PeriHPX/build/bin/NLMech -i input_const_load_top-bottom-fine-2.yaml --hpx::threads=20
cp input_const_load_top-bottom-fine-2.yaml input_const_load_top-bottom-fine-2-relax.yaml
paraview mesh_fine_2.vtu
vim run.sbatch
git rebase main
git rebse main
git branch -d fix_ci
git branch -d cff-action
git branch -D update_cmake_2
git branch -d update_cmake_2
git branch -d update_doxy
git branch -d update_cmake
git branch -d update_docker
git branch -d new_logo
pass insert ams
pwgen -n 8
git push --set-upstream origin fix_ci
git checkout -b fix_ci
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.7.1/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cmake clean
git puh
cd git/perihpx/buildInfrastructure/
git checkout update_cmake_2
wget https://raw.githubusercontent.com/jlblancoc/nanoflann/master/include/nanoflann.hpp
cd external/
cd src/
/usr/bin/cmake -E cmake_link_script CMakeFiles/PeriHPX.dir/link.txt --verbose=1
/usr/bin/c++ -O3 -DNDEBUG  -lpthread -fPIC -pthread -Wl,-z,defs -fvisibility=hidden CMakeFiles/PeriHPX.dir/src/main.cpp.o -o bin/PeriHPX  -Wl,-rpath,/home/diehlpk/git/perihpx/PeriHPX/build/lib64:/home/diehlpk/Compile/hpx-1.7.1/build/lib: lib64/libInp.a lib64/libModel.a lib64/libhpx_RW.a /usr/lib64/libflexiblas.so -lm -ldl /home/diehlpk/Compile/hpx-1.7.1/build/lib/libhpx_wrap.a -Wl,-wrap=main lib64/libhpx_Material.a lib64/libhpx_Loading.a lib64/libhpx_FE.a lib64/libhpx_Data.so lib64/libInp.a /usr/lib64/libyaml-cpp.so lib64/libhpx_RW.a /usr/lib64/libgmsh.so lib64/libhpx_Util.a /usr/lib64/libflexiblas.so -lm -ldl lib64/libhpx_Geometry.a -fopenmp /home/diehlpk/Compile/hpx-1.7.1/build/lib/libhpx_init.a /home/diehlpk/Compile/hpx-1.7.1/build/lib/libhpx.so.1.7.1 /home/diehlpk/Compile/hpx-1.7.1/build/lib/libhpx_parallelism.so /home/diehlpk/Compile/hpx-1.7.1/build/lib/libhpx_core.so /usr/lib64/libtcmalloc_minimal.so /usr/lib64/libboost_filesystem.so /usr/lib64/libhwloc.so -latomic -lrt /usr/lib64/libvtkChartsCore.so.9.0.3 /usr/lib64/libvtkIOGeometry.so.9.0.3 /usr/lib64/libvtkIOPLY.so.9.0.3 /usr/lib64/libvtkRenderingLOD.so.9.0.3 /usr/lib64/libvtkViewsContext2D.so.9.0.3 /usr/lib64/libvtkRenderingContext2D.so.9.0.3 /usr/lib64/libvtkViewsCore.so.9.0.3 /usr/lib64/libvtkRenderingQt.so.9.0.3 /usr/lib64/libvtkRenderingLabel.so.9.0.3 /usr/lib64/libvtkGUISupportQt.so.9.0.3 /usr/lib64/libvtkInteractionWidgets.so.9.0.3 /usr/lib64/libvtkFiltersModeling.so.9.0.3 /usr/lib64/libvtkInteractionStyle.so.9.0.3 /usr/lib64/libvtkFiltersExtraction.so.9.0.3 /usr/lib64/libvtkIOLegacy.so.9.0.3 /usr/lib64/libvtkIOCore.so.9.0.3 /usr/lib64/libvtkRenderingAnnotation.so.9.0.3 /usr/lib64/libvtkRenderingFreeType.so.9.0.3 /usr/lib64/libfreetype.so /usr/lib64/libvtkImagingSources.so.9.0.3 /usr/lib64/libvtkIOImage.so.9.0.3 /usr/lib64/libvtkImagingCore.so.9.0.3 /usr/lib64/libvtkRenderingOpenGL2.so.9.0.3 /usr/lib64/libvtkRenderingUI.so.9.0.3 /usr/lib64/libvtkRenderingCore.so.9.0.3 /usr/lib64/libvtkCommonColor.so.9.0.3 /usr/lib64/libvtkFiltersGeometry.so.9.0.3 /usr/lib64/libvtkFiltersSources.so.9.0.3 /usr/lib64/libvtkFiltersGeneral.so.9.0.3 /usr/lib64/libvtkCommonComputationalGeometry.so.9.0.3 /usr/lib64/libvtkFiltersCore.so.9.0.3 /usr/lib64/libvtkCommonExecutionModel.so.9.0.3 /usr/lib64/libvtkCommonDataModel.so.9.0.3 /usr/lib64/libvtkCommonMisc.so.9.0.3 /usr/lib64/libvtkCommonTransforms.so.9.0.3 /usr/lib64/libvtkCommonMath.so.9.0.3 /usr/lib64/libGLEW.so /usr/lib64/libX11.so /usr/lib64/libvtkCommonCore.so.9.0.3 /usr/lib64/libvtksys.so.9.0.3 -ldl /usr/lib64/libQt5Widgets.so.5.15.2 /usr/lib64/libQt5Gui.so.5.15.2 /usr/lib64/libQt5Core.so.5.15.2 /usr/lib64/libpcl_apps.so /usr/lib64/libpcl_surface.so /usr/lib64/libpcl_keypoints.so /usr/lib64/libpcl_tracking.so /usr/lib64/libpcl_recognition.so /usr/lib64/libpcl_registration.so /usr/lib64/libpcl_stereo.so /usr/lib64/libpcl_outofcore.so /usr/lib64/libpcl_people.so /usr/lib64/libpcl_segmentation.so /usr/lib64/libpcl_features.so /usr/lib64/libpcl_filters.so /usr/lib64/libpcl_sample_consensus.so /usr/lib64/libpcl_ml.so /usr/lib64/libpcl_visualization.so /usr/lib64/libpcl_search.so /usr/lib64/libpcl_kdtree.so /usr/lib64/libpcl_io.so /usr/lib64/libpcl_octree.so /usr/lib64/libpcl_common.so /usr/lib64/libboost_system.so /usr/lib64/libboost_filesystem.so /usr/lib64/libboost_date_time.so /usr/lib64/libboost_iostreams.so /usr/lib64/libboost_serialization.so /usr/lib64/libboost_regex.so /usr/lib64/libqhull_r.so -lOpenNI /usr/lib64/libflann_cpp.so
git checkout -b nanoflann
git push origin HEAD:update_cmake_2
git branch -m update_cmake_2
git branch -m update_cmake
make 0j 20
/usr/bin/cmake -E cmake_link_script CMakeFiles/PeriHPX.dir/link.txt --verbose=1
/usr/bin/c++ -O3 -DNDEBUG  -lpthread -fPIC -pthread -Wl,-z,defs -fvisibility=hidden CMakeFiles/PeriHPX.dir/src/main.cpp.o -o bin/PeriHPX  -Wl,-rpath,/home/diehlpk/git/perihpx/PeriHPX/build/lib64:/home/diehlpk/Compile/hpx-1.7.1/build/lib: lib64/libInp.a lib64/libModel.a lib64/libhpx_RW.a /usr/lib64/libflexiblas.so -lm -ldl /home/diehlpk/Compile/hpx-1.7.1/build/lib/libhpx_wrap.a -Wl,-wrap=main lib64/libhpx_Material.a lib64/libhpx_Loading.a lib64/libhpx_FE.a lib64/libhpx_Data.so lib64/libInp.a /usr/lib64/libyaml-cpp.so lib64/libhpx_RW.a /usr/lib64/libgmsh.so lib64/libhpx_Util.a /usr/lib64/libflexiblas.so -lm -ldl lib64/libhpx_Geometry.a -fopenmp /home/diehlpk/Compile/hpx-1.7.1/build/lib/libhpx_init.a /home/diehlpk/Compile/hpx-1.7.1/build/lib/libhpx.so.1.7.1 /home/diehlpk/Compile/hpx-1.7.1/build/lib/libhpx_parallelism.so /home/diehlpk/Compile/hpx-1.7.1/build/lib/libhpx_core.so /usr/lib64/libtcmalloc_minimal.so /usr/lib64/libboost_filesystem.so /usr/lib64/libhwloc.so -latomic -lrt /usr/lib64/libvtkChartsCore.so.9.0.3 /usr/lib64/libvtkIOGeometry.so.9.0.3 /usr/lib64/libvtkIOPLY.so.9.0.3 /usr/lib64/libvtkRenderingLOD.so.9.0.3 /usr/lib64/libvtkViewsContext2D.so.9.0.3 /usr/lib64/libvtkRenderingContext2D.so.9.0.3 /usr/lib64/libvtkViewsCore.so.9.0.3 /usr/lib64/libvtkRenderingQt.so.9.0.3 /usr/lib64/libvtkRenderingLabel.so.9.0.3 /usr/lib64/libvtkGUISupportQt.so.9.0.3 /usr/lib64/libvtkInteractionWidgets.so.9.0.3 /usr/lib64/libvtkFiltersModeling.so.9.0.3 /usr/lib64/libvtkInteractionStyle.so.9.0.3 /usr/lib64/libvtkFiltersExtraction.so.9.0.3 /usr/lib64/libvtkIOLegacy.so.9.0.3 /usr/lib64/libvtkIOCore.so.9.0.3 /usr/lib64/libvtkRenderingAnnotation.so.9.0.3 /usr/lib64/libvtkRenderingFreeType.so.9.0.3 /usr/lib64/libfreetype.so /usr/lib64/libvtkImagingSources.so.9.0.3 /usr/lib64/libvtkIOImage.so.9.0.3 /usr/lib64/libvtkImagingCore.so.9.0.3 /usr/lib64/libvtkRenderingOpenGL2.so.9.0.3 /usr/lib64/libvtkRenderingUI.so.9.0.3 /usr/lib64/libvtkRenderingCore.so.9.0.3 /usr/lib64/libvtkCommonColor.so.9.0.3 /usr/lib64/libvtkFiltersGeometry.so.9.0.3 /usr/lib64/libvtkFiltersSources.so.9.0.3 /usr/lib64/libvtkFiltersGeneral.so.9.0.3 /usr/lib64/libvtkCommonComputationalGeometry.so.9.0.3 /usr/lib64/libvtkFiltersCore.so.9.0.3 /usr/lib64/libvtkCommonExecutionModel.so.9.0.3 /usr/lib64/libvtkCommonDataModel.so.9.0.3 /usr/lib64/libvtkCommonMisc.so.9.0.3 /usr/lib64/libvtkCommonTransforms.so.9.0.3 /usr/lib64/libvtkCommonMath.so.9.0.3 /usr/lib64/libGLEW.so /usr/lib64/libX11.so /usr/lib64/libvtkCommonCore.so.9.0.3 /usr/lib64/libvtksys.so.9.0.3 -ldl /usr/lib64/libQt5Widgets.so.5.15.2 /usr/lib64/libQt5Gui.so.5.15.2 /usr/lib64/libQt5Core.so.5.15.2 /usr/lib64/libpcl_apps.so /usr/lib64/libpcl_surface.so /usr/lib64/libpcl_keypoints.so /usr/lib64/libpcl_tracking.so /usr/lib64/libpcl_recognition.so /usr/lib64/libpcl_registration.so /usr/lib64/libpcl_stereo.so /usr/lib64/libpcl_outofcore.so /usr/lib64/libpcl_people.so /usr/lib64/libpcl_segmentation.so /usr/lib64/libpcl_features.so /usr/lib64/libpcl_filters.so /usr/lib64/libpcl_sample_consensus.so /usr/lib64/libpcl_ml.so /usr/lib64/libpcl_visualization.so /usr/lib64/libpcl_search.so /usr/lib64/libpcl_kdtree.so /usr/lib64/libpcl_io.so /usr/lib64/libpcl_octree.so /usr/lib64/libpcl_common.so /usr/lib64/libboost_system.so /usr/lib64/libboost_filesystem.so /usr/lib64/libboost_date_time.so /usr/lib64/libboost_iostreams.so /usr/lib64/libboost_serialization.so /usr/lib64/libboost_regex.so /usr/lib64/libqhull_r.so -lOpenNI /usr/lib64/libflann_cpp.so -Wl,--copy-dt-needed-entries
make VERBOSE=1
export LDFLAGS="-Wl,--copy-dt-needed-entries"
export LDFLAGS="-Wl,--copy-dt-needed-entries" cmake
vim /usr/lib64/libvtkIOXMLParser.so
ls /usr/lib64/libvtkIOXML.so.1
cmake -
make -j 4
git push --set-upstream origin fix_warnings
git checkout -b fix_warnings
git merge origin/update_cmake
git push --set-upstream origin update_cmake
ccmake --version
git checkout -b hpx-1.7.1
unzip 1.7.1.zip
wget https://github.com/STEllAR-GROUP/hpx/archive/refs/tags/1.7.1.zip
git checkout -b add_force_drop
vim 2021-01-05-newlogo.md
git add 2021-01-05-newlogo.md
aspell -c -l EN_us 2021-01-05-newlogo.md
cd _posts/
mkdir _posts
pyton
pass -c bersc
git log --reverse
libreoffice foo.csv
libreoffice foo.csv &
git add Condition-plot.ipynb
git add Coupling-MSCM-Neumann.py
git add Quadratic-neumann-all.ipynb
cp Quadratic-all.ipynb Quadratic-neumann-all.ipynb
git add Quadratic-all.ipynb
pyth
ipython -c "%run Coupling-MSCM-Neumann.ipynb"
jupyter nbconvert --execute Coupling-MSCM-Neumann.ipynb
jupyter nbconvert --to python Coupling-MSCM-Neumann.ipynb
git add Coupling-MSCM-Neumann.ipynb
cp Coupling-MSCM-Dirchelet.ipynb Coupling-MSCM-Neumann.ipynb
scp X.0.silo.data.zip  perlmutter-p1.nersc.gov:/pscratch/sd/d/diehlpk/dwd/beginning/level13/
scp X.0.silo.data.zip  perlmutter-p1.nersc.gov:/pscratch/sd/d/diehlpk/dwd/beginning/level12
scp X.0.silo.data.zip  perlmutter-p1.nersc.gov:/pscratch/sd/d/diehlpk/dwd/beginning/level13
c --
aspell -c -l EN_us README.md
cd swift/
cd git/monte-carlo-codes/
git add Coupling-MSCM-Dirchelet.ipynb
git add requirements.txt
vim requirements.txt
git pish
cd ~/Downloads/
git add Coupling-MDCM-Neumann.ipynb
cd paperCouplingAnalysis/
cp Coupling-MDCM-Dirchelet.ipynb Coupling-MDCM-Neumann.ipynb
rm X.1327.silo.data.zip
bibtex article
cp coupling-quartic-approach-1-convergence-fdm-direchlet-8.pdf coupling-quartic-approach-1-convergence-fdm-d-8.pdf
cp coupling-quartic-approach-1-convergence-fdm-direchlet-moving-8.pdf coupling-quartic-approach-1-convergence-fdm-d-8.pdf
cp coupling-quartic-approach-2-convergence-fdm-direchlet-moving-8.pdf coupling-quartic-approach-2-convergence-fdm-d-8.pdf
cp coupling-quartic-approach-2-convergence-fdm-direchlet-moving-8.pdf coupling-quartic-a-2-convergence-fdm-d-moving-8.pdf
cp Figures/*.pdf .
wget http://hess.ess.washington.edu/repository/BCO_neon_2019/tex/elsarticle.cls
texmaker article.tex
cp ../article.tex .
mv ../Coupling\ theory.zip .
cd paper/
cd acmart-primary/
unzip acmart-primary.zip
~/.dropbox-dist/dropboxd &
git add qudratic/Quadratic_Interpolation_Quartic.ipynb
git add Coupling-VHM-Neumann.ipynb
pass -c nerac
scp X.1327.silo.data.zip  perlmutter-p1.nersc.gov:/pscratch/sd/d/diehlpk/dwd/close/level11
git add Coupling-MDCM-Dirchelet.ipynb
libreoffice ~/Downloads/foo.csv
cp Coupling-VHM-Dirchelet.ipynb Coupling-MDCM-Dirchelet.ipynb
scp X.0.silo.data.zip  perlmutter-p1.nersc.gov:/pscratch/sd/d/diehlpk/dwd/beginning/level11
rm Project/ -rf
rm 3.16.3/ -rf
rm 3.16.3/
rm *.svg
rm settings.json
rm progress.make
rm 3.20.2/ -rf
rm output/ src/ taylor/ tjon169_Project4997/ tmp zoom_x86_64.rpm -rf
rm output/ progress.marks
rm config/ depend.make  generators/ include/ Makefile Makefile2 physic_engine/ piper_project/ -rf
rm flags.make CMM.dir/ -r
rm flags.make CMM.dir/
rm CMM
rm comp*
rm Com* -rf
rm Com*
rm *cache
rm build.make
rm -rf CMake*
rm -rf CMakeCCompilerId.c
rm piper_project/* -rf
rm 26836
rm *.bin
rm *.cpp
rm *.log
rm *.hpp
rm *.sty
rm *.o*
rm *.cmake
rm *ipynb
rm *silo* -rf
rm *silo*
leafpad ../mesh.cpp
leafpad ../parser.cpp
ls ../
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.6.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cd piper_project/
cd project
cd Project/
unzip piper_project.zip
leafpad vec3.cpp
ls *.cpp
leafpad physic_formulas.cpp
leafpad mesh.cpp
leafpad main.cpp
cd tjon169_Project4997/
y
7za e tjon169_Project4997.7z
mv ../tjon169_Project4997.7z .
cd taylor/
mkdir taylor
7za tjon169_Project4997.7z
sudo dnf install p7zip
7z tjon169_Project4997.7z
unzip tjon169_Project4997.7z
sudo dnf install zoom_x86_64.rpm
scp X.934.silo.data.zip  perlmutter-p1.nersc.gov:/pscratch/sd/d/diehlpk/dwd/close/level10/
unzip X.934.silo.data.zip
pwgen -n -s 15
sudo podman system prune --all --force && sudo podman rmi --all
sudo podman purge
kbibtex pd.bib
leafpad pd.bib
cd reviewPDPF/
git add octotiger.bib
leafpad octotiger.bib
touch octotiger.bib
rm hpx.bib/ -rf
rm octotiger.bib/ -rf
mkdir hpx.bib
mkdir octotiger.bib
leafpad phase-field.bib
kbibtex phase-field.bib
rm *~*
cd git/bibliography/
mv fig.pdf figure_hard_geometry.pdf
mv fig.pdf figure14.pdf
sudo dnf install texlive-siunitx
texmaker fig.tex &
touch fig.tex
cd /tmp/
cd git/diehlpk.github.io/cv/
suso dnf update
vim moderncviconsmarvosym.sty
vim moderncviconsawesome.sty
sudo dnf install texlive-latex3
sudo dnf install texlive-moderncv
cd diehlpk.github.io/data/cv/
git clone https://github.com/diehlpk/diehlpk.github.io.git
rm -rf diehlpk.github.io/
cp ~/Downloads/moderncvcolorblack.sty .
cp ~/Downloads/moderncvfooti.sty .
cp ~/Downloads/moderncvskillmatrix.sty .
cp ~/Downloads/moderncvbodyi.sty .
cp ~/Downloads/moderncvbodyiv.sty .
cp ~/Downloads/moderncvheadii.sty .
wget https://ctan.math.utah.edu/ctan/tex-archive/macros/latex/contrib/moderncv/moderncvstylecasual.sty
cp ~/Downloads/moderncvcompatibility.sty .
cp ~/Downloads/moderncvcollection.sty .
wget https://raw.githubusercontent.com/mliu7/latex-moderncv/master/moderncv/tweaklist.sty
sudo dnf install texlive-fontawesome texlive-kurier texlive-ebgaramond
sudo dnf install fontawesome-fonts
sudo dnf remove texlive-moderncv
sudo dnf install fontawesome-fonts-web
sudo dnf install fontawesome-fonta
sudo dnf install texlive-enumitem
sudo dnf install texlive-arydshln
sudo dnf install texlive-arydshin
sudo dnf install texlive-multirow
sudo dnf install texlive-academicons
sudo dnf install texlive-xits
sudo dnf install texlive-dantelogo
sudo dnf install texlive-fetamont
sudo dnf install texlive-featmont
sudo dnf install texlive-dtk
sudo dnf install texlive-dtklogo
sudo dnf install texlive-dtklogos
sudo dnf install texlive-dtk-logos
latexmk long.tex
dnf search tweaklist
dnf search twwaklist
dnf search tewaklist
dnf search tewallist
sudo dnf install texlive-tweaklist
mv fig.pdf figure4.pdf
sudo dnf install texlive-luatex85
sudo dnf install texlive-standalone
vim _posts/blog/2016-12-13-literature-collection-en.md
scp X.934.silo.data.zip  perlmutter-p1.nersc.gov:/pscratch/sd/d/diehlpk/dwd/close/level10
scp X.0.silo.data.zip  perlmutter-p1.nersc.gov:/pscratch/sd/d/diehlpk/dwd/beginning/level10
scp  perlmutter-p1.nersc.gov:/pscratch/sd/d/diehlpk/dwd/beginning/level10 X.0.silo.data.zip
sshpass -c nersc
scp  perlmutter-p1.nersc.gov:/pscratch/sd/d/diehlpk/dwd/beginning/level10/ X.0.silo.data.zip
scp perlmutter:/pscratch/sd/d/diehlpk/dwd/beginning/level10/ X.0.silo.data.zip
ls *.tar*
ls *.tar
cd codeday/
aspell -c -l EN_us talk.tex
rm gsc20_opensource-openscience.pdf
cd git/NLMech2/assets/logo/
rm talk-2.png
rm talk-1.png
rm gsoc20.*
rm siamanual2020.*
LS
cp ~/git/LSU_templates/talk/* .
mkdir codeday
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython-State-Based/hard/crack/*.pdf" .
cd crack
cd crack-long-twice/
cp ~/Downloads/Research_statement\(3\).pdf research.pdf
cp ~/Downloads/Teaching_statement\(3\).pdf teaching.pdf
evince ../arizona/diversity.pdf
ls ../arizona/diversity.pdf
ls ../arizona/
evince cover_letter_signed.pdf
xournalpp cover_letter.pdf
cp ~/Downloads/Cover_letter___Virgina_Tech.pdf cover_letter.pdf
wget https://www.diehlpk.de/assets/cv.pdf .
cd virgina/
mkdir virgina
cd Documents/Bewerbungen/
ssh summit.olcf.ornl.gov
ssh -vvv summit.olcf.ornl.gov
git push --set-upstream origin update_doxy

make doc
vim ../docs/conf.doxy.in
cp test.png logo_doxygen.png
display test.png
convert logo_doxygen.png -resize 200 test.png
convert example.png -resize 200 logo_doxygen.png
convert example.png -resize 200 logo_doxygen.png test.png
cp ../../../artwork/PNG/perihpx_logo.png logo_doxygen.png
display poster.png logo_doxygen.png
cd assets/logo/
firefox ../docs/doxy/html/index.html &
git checkout -b update_doxy
git push -f
git push --set-upstream origin new_logo
git add PDF/*.pdf
git add PNG/*.png
mv Peri\ HPX\ Logo/PDF/ .
mv Peri\ HPX\ Logo/PNG/ .
mv Peri\ HPX\ Logo/png .
git add perihpx_logo_final.ai
cp Peri\ HPX\ Logo/perihpx_logo_final.ai .
unzip Peri\ HPX\ Logo.zip
cp ~/Downloads/Peri\ HPX\ Logo.zip .
cd artwork/
git clone https://github.com/PeriHPX/artwork.git
git checkout -b new_logo
vim 2021-08-24-modern-cpp.md
git add ../../assets/2021-10-28-listing8.svg
cp ~/Downloads/carbon\(10\).svg ../../assets/2021-10-28-listing8.svg
cp ~/Downloads/carbon\(9\).svg ../../assets/2021-10-28-listing7.svg
cp ~/Downloads/carbon\(8\).svg ../../assets/2021-10-28-listing6.svg
cp ~/Downloads/carbon\(7\).svg ../../assets/2021-10-28-listing6.svg
cp ~/Downloads/carbon\(6\).svg ../../assets/2021-10-28-listing5.svg
cp ~/Downloads/carbon\(5\).svg ../../assets/2021-10-28-listing4.svg
cp ~/Downloads/carbon\(4\).svg ../../assets/2021-10-28-listing4.svg
vim 2021-03-18-cairo-talks.md
git add ../../assets/2021-10-28-listing2.svg
okular ../../assets/2021-10-28-listing2.svg
inkscape ../../assets/2021-10-28-listing2.svg
ls ../../assets/2021-10-28-listing2.svg
cp ~/Downloads/carbon\(3\).svg ../../assets/2021-10-28-listing3.svg
cp ~/Downloads/carbon\(2\).svg ../../assets/2021-10-28-listing2.svg
cp ~/Downloads/carbon\(1\).svg ../../assets/2021-10-28-listing1.svg
cp ~/Downloads/carbon.svg ../../assets/2021-10-28-listing1.svg
rm  ~/Downloads/carbon*.svg
rm  ~/Downloads/carbon\(1\).png
okular ../../assets/2021-10-28-listing1.svg
inkscape ../../assets/2021-10-28-listing1.svg
evince ../../assets/2021-10-28-listing1.svg
cp ~/Downloads/carbon\(18\).svg ../../assets/2021-10-28-listing1.svg
cp ~/Downloads/carbon.svg 2021-10-28-listing1.svg
cd _posts/blog/
vim Dockerfile
sudo dnf install golang
sudo dnf install go-lang
git add monte.py
python -c "import ast; ast.parse(open('monte.py').read())"
pychecker
python -m monte monte.py
python3 -m monte monte.py
pylint
python -m monte.py
python monte.py
vim monte.py
touch monte.py
cd python/
mkdir python
vim rust/src/main.rs
vim Sources/swift/main.swift
rm -rf python/monte.py
cd Docker/
sudo rm -rf .local/share/containers
podman info
sudo podman daemon --storage-opt dm.basesize=100G
sudo dnf remove swift-lang
sudo podman system prune
sudo dnf remove rust cargo
sudo podman system prune --volumes
vim ~/.config/containers/storage.conf
~/.config/containers/storage.conf
~/.config/containers/storage.conf look
swift run swift
vim Package.swift
git add README.md
./run.sh
git add run.sh
chmod a+x run.sh
swift build
git add Tests/
git Add Tests/
git add Sources/swift/main.swift
git add Package.swift
swift package init --type executable
rm -rf Sources/ Tests/
rm Package.swift Sources/swift/swift.swift  Tests/swiftTests/swiftTests.swift -f
git rm Package.swift Sources/swift/swift.swift  Tests/swiftTests/swiftTests.swift -f
ls Sources/
git rm Package.swift -f
git rm Package.swift
swift test
git add Tests/swiftTests/swiftTests.swift
git add Sources/swift/swift.swift
swift package init
cp rust/README.md swift/
mkdir swift
sudo dnf install swift-lang
vim main.rs
rustc main.rs
cd rust/
vim src/main.rs
export RUST_BACKTRACE=1
leafpad README.md
git push --set-upstream origin fix_push_doc
git checkout -b fix_push_doc
firefox doc/html/index.html &
cd git/octotiger
valgrind --tool=memcheck ./free
g++ -g code.cc -o free
g++ -g code.cc -o segfault
vim code.cc
git add .circleci/config.yml
cat ../Docker/generate.sh
cargo build --release
cargo build
cargo compile
cargo run
cp ../SIAM-Review-examples/.circleci/config.yml .circleci/
vim Docker/generate.sh
cd SIAM-Review-examples/
git add Docker/generate.sh
mv generate.sh Docker/
git mv generate.sh Docker/
git mv Dockerfile Docker/
ls Docker
sudo dnf remove VirtualBox-6.1
sudo dnf remove VirtualBox-6.1*
sudo dnf remove VirtualBox-6.1 *
sudo dnf remove virtualbox
sudo snf update
vim webpage/index.md
git pull --reabse
ls webpage/Lecture23.slides.html
ls webpage/
ls lecture23
git add main_debug_free.cc
vim main_debug_free.cc
cat code4.cc
valgrind --leak-check=full  ./segfault4
./segfault4
g++ -g code4.cc -o segfault4
vim code4.cc
sudo dnf install texlive-lipsum
rm /home/diehlpk/Compile/webpage/ParallelComputationMathScript/.git/modules/ParallelComputationMathExamples/config.lock
cp ../lecture22/run.sh .
cd lecture23/
cat lecture21/run.sh
ls lecture21/
ls Lecture21/
vim Makefile
valgrind  ./segfault4
valgrind -leak-check=full  ./segfault4
vim  code4.cc
cat code3.cc
cp code.cc code4.cc
valgrind  ./segfault3
g++ -g code3.cc -o segfault3
vim code3.cc
cp code.cc code3.cc
cat code2.cc
valgrind --tool=memcheck ./segfault2
./segfault2
g++ -g code2.cc -o segfault2
vim code2.cc
cp code.cc code2.cc
valgrind --tool=memcheck ./segfault
leafpad main_accumulate_hpx.cpp
cd src/parallel_algorithms/
make -j 50
leafpad /home/diehlpk/git/SIAM-Review-examples/src/parallel_algorithms/main_accumulate_parallel.cpp
cd .
vim main_accumulate_parallel.cpp
grep label *
cd parallel_algorithms/
vim main_async_cpp.cpp
cd src/async/
leafpad main_accumulate_parallel.cpp
leafpad main_for_each_hpx.cpp
leafpad main_for_each.cpp
leafpad main_accumulate.cpp
leafpad main_co_await.cpp
leafpad main_async_hpx.cpp
leafpad main_async_cpp.cpp
cd async/
cd git/SIAM-Review-examples/
vim ../src/async/main_co_await.cpp
vim ../src/parallel_algorithms/main_accumulate_hpx.cpp
git commit =a
mkdir ~/.cache/vim
ls ~/.cache/vim
vim ~/.vimrc
sudo podman rm docker.io/diehlpk/modern-cpp-base:latest
cat generate.sh
podman rm 9873176a8ff5
podman images
podman rm ed210e3e4a5b
sudo podman system prune -a
vim main_co_await.cpp
git add Dockerfile
history | grep cargo
history | grep "dnf install"
history | grep dnf install
history | grep dnf
cp ../SIAM-Review-examples/Docker/generate.sh .
cp ../SIAM-Review-examples/Docker/Dockerfile .
mkdir Docker
leafpad src/main.rs
leafpad ../LICENSE
cat ../LICENSE
cd monte-carlo-codes/
vim Cargo.toml
git add src/main.rs
git add Cargo.toml
echo 'rand "0.8.4"' >> Cargo.toml
cargo install rand
vm src/main.rs
mv monte.rs src/main.rs
git mv monte.rs src/main.rs
cargo add rand
/home/diehlpk/.cargo/bin/cargo add rand
/home/diehlpk/.cargo/bin/cargo-add rand
cargo install cargo-edit
cargo isntall cargo-edit
cargo init rust/
cargo new rust/
cd git/monte-carlo-codes/rust/
cd --c
vim ~/.cargo/config
cd ../src/async/
vim ../parallel_algorithms/CMakeLists.txt
sudo dnf system-upgrade clean
sudo dnf clean packages
sudo journalctl --vacuum-size=100M
sudo du --exclude="/home" -x -h -a / | sort -r -h | head -30
df -h
fdisk /dev/sda -l
sudo dnf install clang-tools-extra
sudo dnf install clang
sudo dnf install clang-
sudo dnf install clang-format
vim format.sh
:q
cat main_async_hpx.cpp
cat main_async_cpp.cpp
cd ../
vim ../README.md
vim src/async/CMakeLists.txt
git mv main_co_wait.cpp main_co_await.cpp
ls async/
vim async/CMakeLists.txt
git add main_co_wait.cpp
vim main_co_wait.cpp
scp summit.olcf.ornl.gov:/gpfs/alpine/cph102/proj-shared/diehl/sagiv/close/level11/1/gdb.txt .
scp summit.olcf.ornl.gov:/gpfs/alpine/cph102/proj-shared/diehl/sagiv/close/level11/1/gdb.txt
vim science.md
vim _includes/sidebar.html
git push --set-upstream origin fix_readme
git checkout -b fix_readme
git mv Quadratic_Interpolation_* qudratic/
mkdir qudratic
git mv Linear_Interpolation_* linear/
mkdir linear
git mv Quadratic_Interpolation_Cubic_Lagrange.ipynb Quadratic_Interpolation_Cubic.ipynb
git rm Quadratic_Interpolation_Cubic.ipynb -f
git rm Quadratic_Interpolation_Cubic.ipynb
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython-State-Based/hard/crack-long-twice/*.pdf" .
mkdir crack-long-twice
cd crack-long/
mkdir crack-long
vim /home/diehlpk/.ssh/known_hosts:51

git rebase -i HEAD~7
git rebase -i HEAD~13
git rm -rf ../doc/html/*
git rebase -i HEAD~10
vim ../doc/conf.doxy.in
ls ../../src/
cd doc/
leafpad ../.circleci/config.yml
git checkout publish_doc
git checkout gh-pages
rm -rf ../doc/*
rm -rf ../doc/html/
cmake --build ~/git/octotiger/build/ -- doc
leafpad ../.circleci/config.yml &
cmake  -DHPX_DIR=/home/diehlpk/Compile/hpx-1.6.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DVc_DIR=/home/diehlpk/opt/vc_1.4/lib/cmake/Vc/ -D Silo_LIBRARY=/home/diehlpk/opt/silo/lib/ -DSilo_INCLUDE_DIR=/home/diehlpk/opt/silo/include -DSilo_BROWSER=/home/diehlpk/opt/silo/bin/ -DCPPuddle_DIR=/home/diehlpk/opt/cppuddle/lib/cmake/CPPuddle/ ..
cmake  -DHPX_DIR=/home/diehlpk/Compile/hpx-1.6.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DVc_DIR=/home/diehlpk/opt/vc_1.4/lib/cmake/Vc/ -D Silo_LIBRARY=/home/diehlpk/opt/silo/lib/ -DSilo_INCLUDE_DIR=/home/diehlpk/opt/silo/include -DSilo_BROWSER=/home/diehlpk/opt/silo/bin/ ..
cd CPPuddle/
git clone https://github.com/SC-SGS/CPPuddle.git
cmake  -DHPX_DIR=/home/diehlpk/Compile/hpx-1.6.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DVc_DIR=/home/diehlpk/opt/vc_1.4/lib/cmake/Vc/ -D Silo_LIBRARY=/home/diehlpk/opt/silo/lib/ -DSilo_INCLUDE_DIR=/home/diehlpk/opt/silo/include ..
cmake  -DHPX_DIR=/home/diehlpk/Compile/hpx-1.6.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DVc_DIR=/home/diehlpk/opt/vc_1.4/lib/cmake/Vc/ -D Silo_LIBRARY=/home/diehlpk/opt/silo/lib/ Silo_INCLUDE_DIR=/home/diehlpk/opt/silo/include ..
cmake  -DHPX_DIR=/home/diehlpk/Compile/hpx-1.6.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DVc_DIR=/home/diehlpk/opt/vc_1.4/lib/cmake/Vc/ ..
cmake  -DHPX_DIR=/home/diehlpk/Compile/hpx-1.6.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON Vc_DIR=/home/diehlpk/opt/vc_1.4/lib/cmake/Vc/ ..
cmake  -DHPX_DIR=/home/diehlpk/Compile/hpx-1.6.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON Vc_DIR=/home/diehlpk/opt/vc_1.4/lib/cmake/Vc/VcConfig.cmake ..
ls doc/
cmake  -DHPX_DIR=/home/diehlpk/Compile/hpx-1.6.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON ..
cmake -D OCTOTIGER_WITH_TESTS=OFF ..
git commit -m "Update path" ../doc/CMakeLists.txt
vim ../doc/CMakeLists.txt
leafpad .circleci/config.yml &
vim doc/CMakeLists.txt
cd html/
cd octotiger
aspell -c -l EN_us index.html
git clone https://github.com/octotiger/octotiger.github.io.git
leafpad  /home/diehlpk/.ssh/known_hosts
vim  /home/diehlpk/.ssh/known_hosts
sudo dnf install texlive-a4wide
sudo dnf install texlive-multibib
texmaker diversity.tex
leafpad diversity.tex
sudo dnf install texmaker
cp ../kansas/diversity.tex .
evince diversity.pdf
cd kansas/
evince research.pdf
cp ~/Downloads/Research_statement\(2\).pdf research.pdf
evince teaching.pdf
cp ~/Downloads/Teaching_statement\(2\).pdf teaching.pdf
evince coverletter_signed.pdf
sudo dnf install evince
xournalpp coverletter.pdf
cp ~/Downloads/Cover_letter___Arizona.pdf coverletter.pdf
cd arizona/
mkdir arizona
sudo dnf install lilypond-texgyre-heros-fonts
sudo dnf install 
lilypond-texgyre-heros-fonts
sudo dnf install google-roboto-fonts.noarch
sudo dnf install texlive-mathtools
lualatex -synctex=1 -interaction=nonstopmode lecture1.tex
sudo dnf install texlive-beamer
sudo dnf install texlive-pgfplotstable
sudo dnf install texlive-pgfplots
sudo dnf install texlive-doclicense
sudo dnf install texlive-lastpage
sudo dnf install texlive-scheme-minimal
sudo dnf install texlive-isodate
sudo dnf install latexmk
sudo dnf installlatexmk
find . -name "*.tex" -exec aspell check -l En_us "{}" ";"
tssquote
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython-State-Based/hard/no-crack/*.pdf" .
cd no-crack/
cd Hard-state/crack/
xdg-open . &
files . &
file .
gcc --version
sudo dnf remove @kde-desktop
sudo dnf groupremove "KDE"
sudo dnf install libreoffice gimp inkscape openshot
sudo dnf groups remove "Xfce Desktop"
sudo dnf system-upgrade download --releasever=35 --allowerasing
sudo dnf remove openshot
sudo dnf remove handbrake
sudo dnf remove handbreak
sudo dnf remove inkscape ape
sudo dnf remove gimp
sudo dnf remove corebird
sudo dnf remove librecad
sudo dnf remove blender
sudo dnf clean
sudo dnf --refresh upgrade
bleachbit
sudo dnf install bleachbit
sudo du -hs /var | sort -nr | head -30
sudo du -rhs /var | sort -nr | head -30
sudo du -m /var | sort -nr | head -30
sudo du -h /var | sort -nr | head -30
sudo du -hs /var
ssh saul-p1.nersc.gov
pass edit nersc
export EDITOR=vim
export VISUAL=vim
pass --help
pass -h
sudo dnf remove "texlive-*"
sudo dnf remove texlive-small
sudo dnf remove texlive-medium
sudo dnf remove texlive-*
thunar . &
sudo dnf remove texlive*
sudo journalctl --vacuum-size 100M
podman rmi ed210e3e4a5b
podman --help
podman
podman list
pass oc lsu
cd Simulations/Hard-state/crack/
sudo dnf system-upgrade download --releasever=35
scp close\ to\ merger.zip summit.olcf.ornl.gov:
cp ~/Downloads/Cover_letter___UNC.pdf coverletter.pdf
cp ~/Downloads/Research_statement\(1\).pdf .
cd Documents/Bewerbungen/chapel/
evince Teaching.pdf
pdfunite Teaching_statement\(1\).pdf eval.pdf eval2.pdf Teaching.pdf
cp ~/Downloads/Fall\ 2020\ -\ Report\ for\ MATH\ 4997\ \(section\ 001\)\ \ VERT\ INT\ RESEARCH\ -\ PARALLEL\ COMP\ MATH\ Patrick\ Diehl_aa69f325-9d86-4d8b-8177-7940f3222fe8en-US.pdf eval2.pdf
cp ~/Downloads/Fall\ 2019\ Report\ for\ MATH\ 4997\ \(section\ 003\)\ VERT\ INT\ RESEARCH\ -\ PARALLEL\ COMP\ MATH\ Patrick\ Diehl_7d3090e1-c861-46eb-8212-816c10115c9aen-US.pdf eval2.pdf
cp ~/Downloads/Fall\ 2019\ Report\ for\ MATH\ 4997\ \(section\ 003\)\ VERT\ INT\ RESEARCH\ -\ PARALLEL\ COMP\ MATH\ Patrick\ Diehl_7d3090e1-c861-46eb-8212-816c10115c9aen-US.pdf  eval2.pdf
pdfunite Teaching_statement\(1\).pdf eval.pdf Teaching.pdf
evince eval.pdf
cp ../berlin/eval.pdf .
cat ../berlin/run.sh
evince Teaching_statement\(1\).pdf
cp ~/Downloads/Teaching_statement\(1\).pdf .
cp ~/Downloads/Research_statement.pdf .
cp ~/Downloads/Teaching_statement.pdf .
cd georgia/
libreoffice faculty-names.odt
cp ../georgia/faculty-names.odt .
cd chapel/
evince long.pdf
cp ~/Downloads/carbon\(18\).svg 2021-10-28-listing5.svg
git add 2021-10-28-listing1.svg
cp ~/Downloads/carbon\(17\).svg 2021-10-28-listing6.svg
cp ~/Downloads/carbon\(16\).svg 2021-10-28-listing5.svg
cp ~/Downloads/carbon\(15\).svg 2021-10-28-listing4.svg
cp ~/Downloads/carbon\(14\).svg 2021-10-28-listing3.svg
cp ~/Downloads/carbon\(13\).svg 2021-10-28-listing3.svg
cp ~/Downloads/carbon\(12\).svg 2021-10-28-listing1.svg
cp ~/Downloads/carbon\(11\).svg 2021-10-28-listing7.svg
cp ~/Downloads/carbon\(10\).svg 2021-10-28-listing6.svg
cp ~/Downloads/carbon\(9\).svg 2021-10-28-listing7.svg
git mv 2021-10-28-listing1.svg 2021-10-28-listing3.svg
git mv 2021-10-28-listing2.svg 2021-10-28-listing4.svg
git mv 2021-10-28-listing3.svg 2021-10-28-listing5.svg
git mv 2021-10-28-listing5.svg 2021-10-28-listing5.svg
git mv 2021-10-28-listing4.svg 2021-10-28-listing6.svg
git mv 2021-10-28-listing5.svg 2021-10-28-listing7.svg
cd assets/
leafpad _posts/blog/2021-08-24-modern-cpp.md &
cat src/async/main_async_hpx.cpp
cd git/S
./bin/async_cpp
./bin/hpx_async
vim main_async_hpx.cpp
git add main_async_hpx.cpp
cp main_async_cpp.cpp main_async_hpx.cpp
git add main_async_cpp.cpp
touch main_async_cpp.cpp
git add async/CMakeLists.txt
cp parallel_algorithms/CMakeLists.txt async/
mkdir async
leafpad ../_posts/blog/2021-08-24-modern-cpp.md &
git rm 2021-10-28-listing5.png
git rm 2021-10-28-listing5.svg
git add 2021-10-28-listing5.svg
cp ~/Downloads/carbon\(8\).svg 2021-10-28-listing5.svg
cp ~/Downloads/carbon\(7\).svg 2021-10-28-listing4.svg
git rm 2021-10-28-listing4.png
git add 2021-10-28-listing4.svg
cp ~/Downloads/carbon\(6\).svg 2021-10-28-listing4.svg
git rm 2021-10-28-listing3.png
git add 2021-10-28-listing3.svg
cp ~/Downloads/carbon\(5\).svg 2021-10-28-listing3.svg
cp ~/Downloads/carbon\(4\).svg 2021-10-28-listing2.svg
cp ~/Downloads/carbon\(3\).svg 2021-10-28-listing1.svg
git rm 2021-10-28-listing2.png
git add 2021-10-28-listing2.svg
cp ~/Downloads/carbon\(2\).svg 2021-10-28-listing2.svg
git rm 2021-10-28-listing1.png
cp ~/Downloads/carbon\(1\).svg 2021-10-28-listing1.svg
evince Analytic_stiffness_matrix.pdf
leafpad _posts/blog/2021-08-24-modern-cpp.md
git add _posts/blog/2021-08-24-modern-cpp.md
git add assets/2021-10-28-listing*.png
git add assets/2021-10-28-listing1.png
ls assets/
thunar _posts/blog/ .
leafpad 2021-08-24-modern-cpp.md &
cd diehlpk.github.io/
./async/asyncAdvanced
leafpad ../async/main_easy.cpp &
leafpad ../async/main_advanced.cpp &
./async/async
leafpad ../async/main_easy.cpp
git add ../async/main_advanced.cpp
vim ../async/CMakeLists.txt
cp ../async/main_easy.cpp ../async/main_advanced.cpp
make -j 5
vim /home/diehlpk/git/hpx_overview_examples/async/main_easy.cpp
vim /home/diehlpk/git/hpx_overview_examples/reduce/main.cpp
vim ../resilience/CMakeLists.txt
vim ../reduce/CMakeLists.txt
vim reduce/CMakeFiles/
git add main_easy.cpp
vim main_easy.cpp
cp reduce/CMakeLists.txt async/
vim reduce/main.cpp
ls reduce/
cd hpx_overview_examples/
g++ Exercise5\[Nbody\].cpp -std=c++1z -ltbb
g++ Exercise5\[Nbody\].cpp
leafpad Exercise5\[Nbody\].cpp &
leafpad Exercise5\[Nbody\].cpp
vim Exercise5\[Nbody\].cpp
./a.out
g++ Exercise5\[MonteCarlo\].cpp -pthread
leafpad Exercise5\[MonteCarlo\].cpp &
g++ Exercise5\[MonteCarlo\].cpp
G++ Exercise5\[MonteCarlo\].cpp
vim Exercise5\[MonteCarlo\].cpp
rm *.ris
rm *.bib
python bondbased2D-parallel-hard.py 0.2 8
diff bondbased2D-parallel-hard.py ../crack/bondbased2D-parallel-hard.py
code bondbased2D-parallel-hard.py
python bondbased2D-parallel-hard.py 0.025 8
python bondbased2D-parallel-hard.py 0.1 8
python bondbased2D-parallel-hard.py 0.05 8
python bondbased2D-parallel-hard.py 0.1 1
python bondbased2D-parallel-hard.py 0.2 1
python bondbased2D-parallel-hard.py 0.01 1
bjobs
evince reply.pdf
cd ~/git/LSU_templates/letter/
git rm bondbased2D-parallel-hard.py -f
texmaker reply.tex &
sudo dnf install texlive-dinbrief
cd git/LSU_templates/letter/
cp ~/Downloads/Research_statement\ \(1\).pdf .
evince sample.pdf
cp ~/Downloads/Analytic_stiffness_matrix\(8\).pdf sample.pdf
evince coverletter-signed.pdf
cp ~/Downloads/Cover_letter___Gorgia.pdf coverletter.pdf
rm coverletter.pdf
rm cv.pdf
rm research-statement.*
rm mentoring.*
cd Documents/Bewerbungen/georgia/
evince coupling-sin-4-vhm-moving.pdf &
python coupling-vhm-moving.py Sin FDM
evince coupling-tan-4-vhm-moving.pdf &
python coupling-vhm-moving.py Tan FDM
evince coupling-quartic-4-vhm-moving.pdf &
python coupling-vhm-moving.py Quartic FDM
evince coupling-cubic-4-vhm-moving.pdf &
python coupling-vhm-moving.py Cubic FDM
python coupling-vhm-moving.py Linear FDM
evince coupling-linear-4-vhm-moving.pdf &
libreoffice vhm-matrix.csv
libreoffice fm-matrix.csv
libreoffice fm-matrix.csv &
wxmaxima diff-tan.wxmx &
libreoffice vhm-force.csv &
libreoffice vhm-matrix.csv &
python coupling-vhm.py Tan FDM
git push --set-upstream origin publish_doc
cd -
cd octotiger/
git checkout -b publish_doc
cd git/octotiger/
gnome-pomodoro &
firefox &
texmaker research-statement.tex &
texmaker mentoring.tex &
aspell -c -l EN_us mentoring.tex
cd buildinfrastrcuture/
find . -name "*.tex" -exec grep -l theendnotes "{}" ";"
find . -name "*.tex" -exec grep -l endnotes "{}" ";"
find . -name "*.tex" -exec grep endnotes "{}" ";"
cd git/courses/ParallelComputationMathScript/
sudo dnf install texlive-enotez
mkdir chapel
scp X.0.silo.data.zip summit.olcf.ornl.gov:/gpfs/alpine/cph102/proj-shared/diehl/sagiv/level11/
python bondbased2D-parallel-hard.py 0.4 1
python bondbased2D-parallel-hard.py 0.4 5
git add Potential.ipynb
ls ccm/
wxmaxima potential.wxmx &
cd ParallelComputationMath
git add exercise-optional-1.tex
texmaker exercise-optional-1.tex
cp exercise1.tex exercise-optional-1.tex
cd git/courses/ParallelComputationMathExercise/
https://mail.cct.lsu.edu/mailman/admindb/taskbench
python plot-con.py
cd git/paperCouplingAnalysis/
sudo dnf install gnome-shell-extension-pomodoro
mkdir no-crack
mv *.pdf crack/
gnome-pomodoro
cd cv/
evince list.pdf &
texmaker list.tex &
cd data/list/
dnf search pomodoro
thunar .
ls Bilder/hpx-kokkos.png
dnf search pomodor
evince hips21-paper-rc3.pdf
cd HIPS2021/
ls Bilder/
texmaker talk.tex &
cd Documents/Konferenzen/Talk/2021/Charm/
evince talk.pdf
pass -c dant
wget https://raw.githubusercontent.com/STEllAR-GROUP/hpx/master/docs/joss_paper/hpx_architecture.pdf
cd Bilder/
rm SIAM_PP_21*.pdf
cp ~/Downloads/APEX_arch_cropped.png Bilder/
cd 2021/
cd Documents/Konferenzen/Talk/
display octo.png
cp 68747470733a2f2f7374656c6c61722d67726f75702e6f72672f77702d636f6e74656e742f75706c6f6164732f323032302f31312f6f63746f74696765726c6f676f417274626f6172642d6769746875622e706e67 octo.png
wget https://camo.githubusercontent.com/67585c9d89566b5f2543b1e6602ee6a785afb5c7231f8cdb78dbe7f56ff6e15f/68747470733a2f2f7374656c6c61722d67726f75702e6f72672f77702d636f6e74656e742f75706c6f6164732f323032302f31312f6f63746f74696765726c6f676f417274626f6172642d6769746875622e706e67
cp ../EMI/stellar.png .
cp ../EMI/stellar.png
cp ../EMI/cct.png .
cp ../EMI/talk.tex .
mkdir Charm
cd Talk/
cd Documents/Konferenzen/
mkdir crack
mkdir Hard-state
g++ Exercise3.cpp
g++ Exercise3.cpp > log.text
leafpad Exercise3.cpp &
texmaker mini-15-nonlocal-models.tex
cd SIAM21/
cd Workshops/
cp ../kansas/research.pdf .
cp ../kansas/research-statement.tex .
leafpad ltexpprt_doublecolumn.tex
unzip SIAMproceedings_060921.zip
git add diff-steep.wxmx
git add diff-tan.wxmx
evince coupling-tan-4-approach-2-1-moving.pdf &
evince coupling-tan-4-approach-1-moving.pdf &
python coupling-approach-2-moving.py Tan FDM
python coupling-approach-1-moving.py Tan FDM
evince coupling-tan-4-approach-2-1-moving.pdf
evince coupling-tan-8-vhm-moving.pdf &
evince coupling-tan-8-vhm-moving.pdf *
evince coupling-tan-8-vhm-moving.pdf
evince coupling-steep-8-0.01-vhm-moving.pdf &
python coupling-vhm-moving.py Steep FDM
evince coupling-steep-4-0.1-vhm-moving.pdf &
evince coupling-steep-4-0.1-vhm-moving.pdf
evince coupling-steep-8-0.01-vhm-moving.pdf
evince coupling-steep-4-0.1-vhm.pdf &
python coupling-vhm-moving.py Steep
evince coupling-steep-4-0.1-approach-2-1-moving.pdf &
evince coupling-steep-8-0.01-approach-2-1-moving.pdf &
python coupling-approach-2-moving.py Steep
evince coupling-steep-8-0.01-approach-2-moving.pdf &
python coupling-approach-1-moving.py Steep
rm coupling-steep*.pdf
evince coupling-steep-8-0.01-approach-1-moving.pdf &
evince coupling-steep-4-0.01-approach-1-moving.pdf &
wxmaxima diff-steep.wxmx &
evince coupling-steep-4-0.1-approach-1-moving.pdf &
wxmaxima diff-steep.wxmx
evince coupling-steep-4-0.1-approach-1-moving.pdf
evince coupling-steep-0.1-approach-2-1-moving.pdf
evince coupling-steep-0.01-approach-2-1-moving.pdf
leafpad con-vhm-direchlet.txt
cat con-fdm-direchlet.txt
python coupling-vhm-direchlet-moving.py Quartic
evince condition.pdf &
ls *con*.txt
ls *con*
cat parallel_sum.cpp
vim parallel_sum.cpp
g++ parallel_sum.cpp
evince cv.pdf
wget https://www.diehlpk.de/assets/cv.pdf
texmaker mentoring.tex
bibtex mentoring
rm gorgia/ -rf
rm gorgia/
mv * ../georgia/
sudo dnf install texlive-savetrees
cp ../kansas/mentoring.tex mentoring.tex
cp ../lehigh/mentoring.tex .
cd gorgia/
mkdir gorgia
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/hard/*.pdf" .
cd Simulations/Debbdebb/
mv *.pdf old/
mv *.npy old/
mkdir old
python bondbased2D-parallel-hard.py 0.4 8 1
python bondbased2D-parallel-hard.py 3 8 1
cp ../linear/bondbased2D-parallel.py bondbased2D-parallel-hard.py
rm con-vhm-direchlet.txt
python coupling-approach-2-direchlet-moving.py Quartic
rm con-approach-2.txt
rm con-approach-2-direchlet.txt
python coupling-approach-1-direchlet-moving.py Quartic
rm con-approach-1-direchlet.txt
cat con-approach-1-direchlet.txt
python bondbased2D-parallel-hard.py 0.2 8 1
python bondbased2D-parallel-hard.py 0.2 5 1
python bondbased2D-parallel-hard.py 3 5 1
python bondbased2D-parallel-hard.py 4 5 1
rm -rf *.npy
rm -rf *.pdf
git add ../potential.wxmx
wxmaxima ../potential.wxmx
python bondbased2D-parallel-hard.py 0.8 8 1
python bondbased2D-parallel-hard.py 1 8 1
python bondbased2D-parallel-hard.py 4 8 1
python bondbased2D-parallel-hard.py 2 5 1
python bondbased2D-parallel-hard.py 1 5 1
python bondbased2D-parallel-hard.py 0.3 5 1
git add bondbased2D-parallel-hard.py
code bondbased2D-parallel.py
cd linear/
mkdir hard
ls ../linear/
code bondbased2D-plate-hard.py
code ../../AnalyticStiffnessPython/hard/bondbased2D-plate-hard.py
mv bondbased2D-parallel.py bondbased2D-parallel-hard.py
cp ../linear/bondbased2D-parallel.py .
python plot-plate.py 0.1 5 1
python plot-plate.py 0.2 5 1
python ccm-2d.py
cd ccm/
paraview .
cd git/perihpx/PeriHPX/examples/qsModel/2D/
/home/diehlpk/git/perihpx/PeriHPX/build/bin/PeriHPX -i input.yaml --hpx:threads=10
git add plot-plate.py
mv plot-plate-hard.py plot-plate.py
mv 01 linear
thu
evince bond-based-2d-plate-0.1-5-1-u-y-rotated.pdf
python plot-plate-hard.py 0.1 5 1
evince bond-based-2d-plate-0.1-5-1-u-y-rotated.pdf&
code plot-plate-hard.py
cp ../../AnalyticStiffnessPython/hard/plot-plate-hard.py .
rm plot-plate-hard.py
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython-State-Based/01/*.npy" .
cd 01/
valgrind /home/diehlpk/git/perihpx/PeriHPX/build/bin/PeriHPX -i input.yaml --hpx:threads=20
/home/diehlpk/git/perihpx/PeriHPX/build/bin/PeriHPX -i input.yaml --hpx:threads=20
/home/diehlpk/git/perihpx/PeriHPX/build/bin/PeriHPX
/home/diehlpk/git/perihpx/PeriHPX/build/bin/mesh -i input_mesh.yaml -d 2
/home/diehlpk/git/perihpx/PeriHPX/build/bin/mesh -i input_mesh.yaml
vim input_mesh.yaml
cd ../examples/qsModel/2D/
evince ccm-2d-u-x.pdf
evince ../01/bond-based-2d-u-x-0.1-5-1.pdf
pythonhon ccm-2d.py
code ccm-2d.py
vim ccm-2d.py
dolphin .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython-State-Based/01/*.pdf" .

scp rostam:/home/diehlpk/Simulations/AnalyticStiffnessPython-State-Based/01/*.pdf .

cd 01
mkdir 01
python coupling-vhm-moving.py Cos FDM
evince coupling-sin-8-vhm-moving.pdf &
evince coupling-sin-4-vhm-moving.pdf&
evince coupling-sin-4-vhm-moving.pdf
evince coupling-cos-4-vhm-moving-0.5.pdf
evince coupling-cos-4-vhm-moving.pdf &
evince coupling-cos-4-vhm-moving.pdf
evince coupling-cos-8-approach-2-1-moving.pdf
python coupling-approach-2-moving.py Cos
g++ Tjon169exerciseproblem4.cpp
vim Tjon169exerciseproblem4.cpp
git mv Tjon169exerciseproblem4.txt Tjon169exerciseproblem4.cpp
git mv Tjon169exercise2Problem4.txt Tjon169exerciseproblem4.cpp
g++ Tjon169exerciseproblem3.cpp
git mv Tjon169exercise2Problem3.txt Tjon169exerciseproblem3.cpp
g++ Tjon169exercise2Problem3.txt
cd exercise-1-Tygryn/
git clone git@github.com:diehlpkteaching/exercise-1-Tygryn.git
rm -rf *
cd Grading/
leafpad publications.md
mv coupling-cos-4-approach-2-1-moving.pdf coupling-cos-4-approach-2-moving-0.75.pdf
mv coupling-cos-8-approach-2-1-moving.pdf coupling-cos-8-approach-2-moving-0.75.pdf
mv coupling-cos-8-approach-2-1-moving.pdf coupling-cos-8-approach-2-moving-0.5.pdf
mv coupling-cos-4-approach-2-1-moving.pdf coupling-cos-4-approach-2-moving-0.5.pdf
mv coupling-cos-8-approach-2-1-moving.pdf coupling-cos-4-approach-2-moving-0.5.pdf
evince coupling-cos-8-approach-2-moving.pdf
mv coupling-cos-4-approach-1-moving.pdf coupling-cos-4-approach-1-moving-0.75.pdf
python coupling-approach-1-moving.py Cos
mv coupling-cos-8-approach-1-moving.pdf coupling-cos-8-approach-1-moving-0.75.pdf
evince coupling-cos-8-approach-1-moving.pdf
mv coupling-cos-8-approach-1-moving.pdf coupling-cos-8-approach-1-moving-0.5.pdf
mv coupling-cos-4-approach-1-moving.pdf coupling-cos-4-approach-1-moving-0.5.pdf
evince coupling-cos-4-approach-1-moving.pdf
evince coupling-cos-4-approch-1-moving.pdf
evince coupling-cos-8-approch-1-moving.pdf
mv coupling-cos-4-vhm-moving.pdf coupling-cos-4-vhm-moving-0.75.pdf
mv coupling-cos-8-vhm-moving.pdf coupling-cos-8-vhm-moving-0.75.pdf
evince coupling-cos-8-vhm-moving.pdf
mv coupling-cos-8-vhm-moving.pdf coupling-cos-8-vhm-moving-0.5.pdf
mv coupling-cos-4-vhm-moving.pdf coupling-cos-4-vhm-moving-0.5.pdf
mv coupling-sin-4-vhm-moving.pdf coupling-sin-4-vhm-moving-0.5.pdf
mv coupling-sin-8-vhm-moving.pdf coupling-sin-8-vhm-moving-0.5.pdf
evince coupling-sin-8-vhm-moving.pdf
mv coupling-sin-8-vhm-moving.pdf coupling-sin-8-vhm-moving-0.75.pdf
mv coupling-sin-4-vhm-moving.pdf coupling-sin-4-vhm-moving-0.75.pdf
mv coupling-sin-4-vhm-moving.pdf coupling-sin-4-vhm-moving-2.5.pdf
mv coupling-sin-8-vhm-moving.pdf coupling-sin-8-vhm-moving-2.5.pdf
wxmaxima diff-cos.wxmx &
wxmaxima diff-cos.wxmx
git add Functions.ipynb
git add config.yml
git add Docker/Dockerfile
cd .circleci/
cp -r ~/git/NLMech2/.circleci/ .
git add .github/*
cp -r ~/git/NLMech2/.github/ .
cp ~/git/NLMech2/.gitignore .
git remote set-head origin -a
git branch -u origin/main main
git fetch origin
git branch -m master main
rm -rf NLMech-0.1.0/
mv NLMech-0.1.0/* .
rm v0.1.0.tar.gz
tar -xvf v0.1.0.tar.gz
wget https://github.com/nonlocalmodels/NLMech/archive/refs/tags/v0.1.0.tar.gz
git clone git@github.com:PeriHPX/PeriHPX.git
aspell -c -l EN_us publications.md
git add status-nlmech-small.pdf
evince status-nlmech-small.pdf
convert status.svg -resize 168x20 status-nlmech-small.pdf
convert status-nlmech.pdf -resize 168x20 status-nlmech-small.pdf
evince status-nlmech.pdf
convert status.svg status-nlmech.pdf
display status-hpx.pdf
wget https://joss.theoj.org/papers/271dd66ea91b7fbfdccb4b10a7ba462c/status.svg
cd list/
vim code/index.md
mv coupling-sin-8-approach-2-1-moving.pdf coupling-sin-8-approach-2-1-moving-0.5.pdf
mv coupling-sin-4-approach-2-1-moving.pdf coupling-sin-4-approach-2-1-moving-0.5.pdf
evince coupling-sin-4-approach-2-1-moving.pdf &
evince coupling-sin-8-approach-2-1-moving.pdf &
evince coupling-sin-8-approach-2-1-moving.pdf
python coupling-approach-2-moving.py Sin
evince coupling-sin-4-approach-2-1-moving.pdf
evince coupling-sin-4-approach-2-1-moving-0.75.pdf
mv coupling-sin-4-approach-2-1-moving.pdf coupling-sin-4-approach-2-1-moving-0.75.pdf
mv coupling-sin-8-approach-4-1-moving.pdf coupling-sin-4-approach-2-1-moving-0.75.pdf
mv coupling-sin-8-approach-2-1-moving.pdf coupling-sin-8-approach-2-1-moving-0.75.pdf
evince coupling-sin-approach-2-1-moving.pdf
git add diff-sin.wxmx
git rm *steep*.py
git add coupling-approach-1-moving.py
git push --rebase
cd git/NLMech2
aspell -c -l EN_us paper.md
code paper.md
git checkout joss
cp ~/Downloads/pum_mesh_coupling_16_10.vtu .
wget https://raw.githubusercontent.com/diehlpk/paperPUMPD/main/cutoff/input.yaml
cp coupling-sin-5-vhm-moving.pdf coupling-sin-5-vhm-moving-0.75.pdf
cp coupling-sin-9-vhm-moving.pdf coupling-sin-9-vhm-moving-0.75.pdf
evince coupling-sin-5-vhm-moving.pdf &
evince coupling-sin-9-vhm-moving.pdf &
python coupling-vhm-moving-steep.py Sin FDM
cp coupling-sin-9-vhm-moving.pdf coupling-sin-9-vhm-moving-0.5.pdf
cp coupling-sin-5-vhm-moving.pdf coupling-sin-5-vhm-moving-0.5.pdf
cp coupling-sin-5-vhm-moving.pdf coupling-sin-5-vhm-moving-1.pdf
cp coupling-sin-9-vhm-moving.pdf coupling-sin-9-vhm-moving-1.pdf
wxmaxima diff-sin.wxmx &
wxmaxima diff-sin.wxmx
evince coupling-sin-5-vhm-moving.pdf
evince coupling-sin-9-vhm-moving.pdf
git add coupling-approach-2-moving-steep.py
git add coupling-vhm-moving-steep.py
mv diff.wxmx diff-steep.wxmx
wxmaxima diff.wxmx
git add diff.wxmx
push -f
git rebase --continu
git add .github/workflows/cff-validator.yml
leafpad .github/workflows/cff-validator.yml
git rebase -i HEAD~15
git rebase --skip
git rebase --abort
git rebase -i HEAD~14
git merge master
python bondbased2D-parallel.py 0.2 5
python bondbased2D-parallel.py 0.3 5
python bondbased2D-parallel.py 0.4 5
evince ccm-2d-u-x.pdf &
evince coupling-sin-approach-1-moving.pdf &
evince coupling-sin-0-vhm-moving.pdf
evince coupling-sin-0-approach-2-1-moving.pdf
python coupling-approach-2-moving-steep.py Sin
python coupling-approach-1-moving.py Sin
vim coupling-approach-1-moving.py Sin
vim coupling-approach-1-moving-steep.py
python coupling-approach-1-moving-steep.py Sin 0
python coupling-approach-1-moving-steep.py Sin
ls *sin*
Ls *sin*
rm *npy
rm *.odf
oass -c lsu
evince coupling-sin-0-approach-2-1-moving.pdf &
code coupling-approach-2-moving-steep.py
evince coupling-sin-approach-1-moving.pdf
code coupling-approach-1-moving.py
evince coupling-sin-0-vhm-fdm-moving.pdf &
python coupling-vhm-moving-steep.py Sin Exact
evince coupling-sin-0-vhm-exact-moving.pdf &
git rebase --edit-todo
leafpad CITATION.cff
git push --set-upstream origin citation_fix

git checkout -b citation_fix
git checkout -b citation
git branch master
wget https://raw.githubusercontent.com/STEllAR-GROUP/hpx/citation/.github/workflows/cff-validator.yml
rm cff-validator.yml
rm cff-validator.yml.1
cd .github/workflows/
evince coupling-sin-0-vhm-exact-moving.pdf
ls *steep*
Ls *steep*
code coupling-vhm-moving-steep.py
rm coupling-vhm-moving-sin.py
code coupling-vhm-moving-sin.py
cp coupling-vhm-moving-steep.py coupling-vhm-moving-sin.py
code
pip3 install meshio
git clone https://github.com/diehlpk/paperPUMPD-part2.git
git checkout cff-validator
cd hpx_main/
ls hpx_main/
cp Coupling-VHM-Dirchelet.ipynb Coupling-MSCM-Dirchelt.ipynb
texmaker lecture5.tex &
texmaker lecture4.tex &
cd ParallelComputationMathExamples/
sudo dmidecode -s bios-release-date
sudo dmidecode -s bios-version
fwupdmgr update
fwupdmgr get-updates
fwupdmgr get-devices

sudo service bluetooth restart
sudo fwupdmgr update
sudo fwupdmgr refresh
sudo service fwupd start
sudo dnf install fwupd
sudo rfkill list
sudo dnf upgrade bluez
sudo dnf downgrade bluez
rfkill list all; hciconfig -a
bluetoothctl
nmcli radio all; rfkill list all
dnf search pipewire
dnf search pipwire
pulseaudio -k
cp Coupling-VHM-Dirchelet.ipynb Coupling-VHM-Neumann.ipynb
python coupling-vhm-moving-steep.py Steep Exact 0.1
evince coupling-steep-0.01-vhm-exact-moving.pdf &
python coupling-vhm-moving-steep.py Steep Exact 0.01
evince coupling-steep-0.011-vhm-exact-moving.pdf
python coupling-vhm-moving-steep.py Steep Exact 0.011
python coupling-vhm-moving-steep.py steep exact 0.1
evince coupling-steep-0.1-vhm-exact-moving.pdf &
cp coupling-vhm-moving.py coupling-vhm-moving-steep.py
python coupling-approach-2-moving-steep.py steep 0.01
python coupling-approach-2-moving-steep.py steep 0.1
cp coupling-approach-2-moving.py coupling-approach-2-moving-steep.py
evince long_ind.html
cd git/diehlpk.github.io/data/cv/
cd ParallelComputationMathExercise/
texmaker lecture3.tex &
python bondbased2D-parallel.py 0.6 5
ssh pdiehl@rostam.cct.lsu.edu
pass -c ddaint
texmaker lecture2.tex &
latexmk lecture2.tex &
texmaker lecture1.tex &
texmaker lecture19.tex &
vim _posts/blog/2021-08-24-modern-cpp.md
bundle jekyll serve
history
history | grep bundle
cp _posts/blog/2021-08-24-modern-cpp.md _drafts/
mkdir _drafts
git add ../src/parallel_algorithms/main_accumulate_hpx.cpp
cf build/
vim main_accumulate_hpx.cpp
cp main_accumulate_parallel.cpp main_accumulate_hpx.cpp
cd git/d
ls *nodes*
python bondbased2D-plate-hard.py 0.2 8 1
cat src/parallel_algorithms/main_for_each_hpx.cpp
git add ../src/parallel_algorithms/main_for_each_hpx.cpp

vim ../src/parallel_algorithms/main_for_each_hpx.cpp
cat ../src/parallel_algorithms/main_for_each.cpp
vim ../src/parallel_algorithms/CMakeLists.txt
cmake -DWITH_HPX=ON -DHPX_DIR=/home/diehlpk/Compile/hpx-1.6.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON ..
cmake -DWITH_HPX=ON -DHPX_DIR=/home/diehlpk/Compile/hpx-1.6.0/build/lib/cmake/HPX/ ..
cmake -DWITH_HPX=ON ..
vim src/parallel_algorithms/main_accumulate_parallel.cpp
vim src/parallel_algorithms/main_accumulate.cpp
vim src/parallel_algorithms/main_openmp.cpp
vim src/parallel_algorithms/main_for_each.cpp
cat src/parallel_algorithms/main_for_each.cpp
cat src/parallel_algorithms/main_accumulate.cpp
vim src/parallel_algorithms/CMakeLists.txt
vim src/parallel_algorithms/
vim src/CMakeLists.txt
cp 2021-01-19-word-count-latex.md 2021-08-24-modern-cpp.md
cd blog/
vim 2021-08-24-parallel-gzip.md
git add 2021-08-24-parallel-gzip.md
cp 2021-01-19-word-count-latex.md 2021-08-24-parallel-gzip.md
cd Compile/webpage/
git branch gh-pages
cd doc/content/
git checkout -b references
vim program.md
cd git/AMTE2020.github.io/
hrop
git rm bondbased2D.py
git add bondbased2D-parallel.py
find . -name "*.tex" -exec sed -i aspell check -l En_us "{}" ";"
zoom
sudo dnf localinstall ~/Downloads/zoom_x86_64.rpm
sudo dnf localinstall ~/Downloads/zoom_x86_64\(1\).rpm
shutdown -c
sudo shutdown -P 04:00
cp ~/Downloads/document\(3\).pdf tbaa.pdf
cd webpage/
ssh dtn.ccs.ornl.gov
python bondbased2D-parallel.py 0.1 5
python bondbased2D-parallel.py 0.5 5
ssh -p 4404 sc21tmp@159.226.41.219
git add build-gmsh.sh
wget https://raw.githubusercontent.com/nonlocalmodels/HPCBuildInfrastructure/main/build-gmsh.sh
git add build-nl.sh
wget https://raw.githubusercontent.com/nonlocalmodels/HPCBuildInfrastructure/main/build-nl.sh
git merge main
git fetch https://github.com/PeriHPX/HPCBuildInfrastructure.git main
git fetch https://github.com/PeriHPX/HPCBuildInfrastructure.git main:main
git clone https://github.com/PeriHPX/HPCBuildInfrastructure.git
evince long.pdf &
git ull
git merge origin/annotated_functions
git merge annotated_functions
git checkout summit_initialization_fix
sudo shutdown -P 10
git merge --abort
git add format.sh
git revase main
chmod a+x format.sh
wget https://raw.githubusercontent.com/nonlocalmodels/NLMech/main/format.sh .
git stahs
git checkout hpx1.6
cd git/hpxcl/
dnf search llvm
dnf searhc llvm
sudo dnf install rclone
sudo dndinstall rclone
cd Dropbox/
./.dropbox-dist/dropboxd &
dnf search tbb
ls .circleci/config.yml
git mv config.yaml config.yml
git mv config.yml config.yaml
sudo podman push docker.pkg.github.com/diehlpk/siam-review-examples/siam-review-base:latest
sudo podman login docker.pkg.github.com --username diehlpk -p 79bfbcbf74b7a278fae6259121036dd44ba4ba60
sudo podman push docker.pkg.github.com/diehlpk/siam-review-examples/siam-review-base
sudo podman oush docker.pkg.github.com/diehlpk/siam-review-examples/siam-review-base:latest
sudo podman tag 9d52eaccf990 docker.pkg.github.com/diehlpk/siam-review-examples/siam-review-base:latest
sudo podman images
vim config.yml
wget https://raw.githubusercontent.com/nonlocalmodels/NLMech/main/format.sh
sudo podman build --tag docker.io/diehlpk/siam-review-base:latest -f ./Dockerfile
sudo podman list images
sudo podman  push diehlpk/siam-review-base:latest
mv Dokcerfile Dockerfile
wget https://raw.githubusercontent.com/diehlpkteaching/buildinfrastrcuture/main/Docker/generate.sh
vim Dokcerfile
git add academicons/*
mv academicons-1.9.1/ academicons
unzip academicons-1.9.1.zip
rm -rf academicons
git rm -rf academicons/
cp academicons/academicons-1.9.1.zip .
cd academicons-1.9.1/
cp ~/Downloads/academicons-1.9.1.zip .
cd assets/academicons/
ls assets/academicons/
ls js/
pass insert box
pytho
pwgen -s -y -n 30
pwgen -s -n 30
git rm README.md
cp  README.md ..
git mv README.md ..
vim src/
doi2cff 10.5281/zenodo.598202
rm CITATION.cff
vim ../src/parallel_algorithms/main_for_each.cpp
vim ../src/parallel_algorithms/main_openmp.cpp
vim  ../src/parallel_algorithms/CMakeLists.txt
git add  ../src/parallel_algorithms/main_for_each.cpp
cp ../src/parallel_algorithms/main_openmp.cpp  ../src/parallel_algorithms/main_for_each.cpp
git add ../src/parallel_algorithms/main_openmp.cpp
vim  ../src/parallel_algorithms/main_openmp.cpp
cp ../src/parallel_algorithms/main_accumulate.cpp  ../src/parallel_algorithms/main_openmp.cpp
cp ../src/parallel_algorithms/main_for.cpp  ../src/parallel_algorithms/main_accumulate_parallel.cpp
vim ../src/parallel_algorithms/main_accumulate_parallel.cpp
./bin/accumulate_par
cmake ,,
git add ../src/parallel_algorithms/main_accumulate_parallel.cpp
cp ../src/parallel_algorithms/main_accumulate.cpp  ../src/parallel_algorithms/main_accumulate_parallel.cpp
vim ../src/parallel_algorithms/main_accumulate.cpp
git add ../src/parallel_algorithms/main_accumulate.cpp
git add ../src/parallel_algorithms/CMakeLists.txt
git add ../src/CMakeLists.txt
git add ../CMakeLists.txt
./bin/accumulate
vim /home/diehlpk/git/SIAM-Review-examples/src/parallel_algorithms/CMakeLists.txt
vim ../src/CMakeLists.txt
ls ../src/
mv ../src/CMAkeLists.txt ../src/CMakeLists.txt
vim ../src/CMAkeLists.txt
mv main_accumulate.cpp parallel_algorithms/
mv main_accumulate.cpp .
mkdir parallel_algorithms
g++ main_accumulate.cpp
vim main_accumulate.cpp
mkdir src
git clone https://github.com/diehlpk/SIAM-Review-examples.git
leafpad main.tex &
ls *.tex
tar -xvf 2101.08226
unzip 2101.08226
cp ../2101.08226 .
cd octo-pre/
mkdir octo-pre
python bondbased2D-parallel.py 0.8 5
python bondbased2D-parallel.py 0.8 1
python bondbased2D-parallel.py 0.8 2
python bondbased2D-parallel.py 0.8 3
python bondbased2D-parallel.py 0.25 3
pip install joblib --user
pip install joblib
cp bondbased2D.py bondbased2D-parallel.py
git mv ccm-2d.py ccm/
python bondbased2D.py 0.2 5
python bondbased2D.py 0.8 5
python bondbased2D.py 0.1 5
dolphin . &
python bondbased2D.py 0.2 2
python bondbased2D.py 0.8 2
python bondbased2D.py 0.1 2
python bondbased2D.py 0.8 3
python bondbased2D.py 0.1 3
python bondbased2D.py 0.5 3
python bondbased2D.py 0.25 3
python bondbased2D.py 1 3
code bondbased2D.py
git add ccm-2d.py
cp ../AnalyticStiffnessPython/ccm/ccm-2d.py .
python bondbased1D.py 0.5
python bondbased1D.py 0.25
rm bond-based-1d.pdf
git mv bondbased1D.py ccm/
wget https://raw.githubusercontent.com/diehlpk/AnalyticStiffnessPython/master/requirements.txt?token=AA55UAYLYT6PHPUYSBJNKGTBDLB3W
mkdir ccm
cp bondbased1D.py bondbased2D.py
leafpad publications.bib
sudo shutdown -P 30
sudo shutdown -p 30
python bondbased1D.py 0.5 3 1
python bondbased1D.py 0.125 3 1
python bondbased1D.py 0.25 3 1
evince bond-based-1d.pdf
python bondbased1D.py 1 3 1
python bondbased1D.py 0.0625 3 1
evince w.pdf
ls 8.py
vom plot-plate-hard.py
plot plot-plate-hard.py
git add amte.png
git add amte_keynote.png
cp ~/Downloads/amte_keynote.png .
git add amte_panel.png
cp ~/Downloads/amte_panel.png .
cd AMTE2020.github.io/
cd git
vim bondbased1D.py
vim ../examples/qsModel/1D/input.yaml
ls -lah ../examples/qsModel/1D/
make tst
python bondbased1D.py 0.1 4 1
python bondbased1D.py 0.1 2 1
python bondbased1D.py 0.2 2 1
flatpak install flathub org.gnome.Solanum
dnf search tomato
code bondbased1D.py
git add bondbased1D.py
cp ../AnalyticStiffnessPython/ccm/bondbased1D.py .
git clone https://github.com/diehlpk/AnalyticStiffnessPython-State-Based.git
ls AMTE/
rm template.out
rm template.fls
rm template.blg
rm template.bbl
rm template.aux
sudo dnf install texlive-moresize
cp ../PUMPD\ \(Preprint\).zip .
mv output.aux template.aux
rm output*.bbl
ls output*.bbl
rm template.*
cp output\(3\).bbl template.bbl
cp output.bbl template.bbl
cd ParallelComputationMathScript/
sudo dnf install texlive-gnuplot-lua-tikz
lualatex -shell-escape  book.tex
lualatex -shell-escape -synctex=1 -interaction=nonstopmode book.tex
x
killall lualatex
lualatex synctex=1 -interaction=nonstopmode
mkdir figures
find . -name "*.tex" -exec sed -i 's/chapter2/cpp/g' "{}" ";"
vim template/packages.tex
vim template/variables.tex
rm -rf chapter*
git mv chapter10/lecture6-deadlock.cpp.ipynb deadlock_race/
ls blaze/
git mv chapter5/CG.ipynb blaze
git mv chapter6 deadlock_race
git mv chapter6/SystemInformation.ipynb cpp
git mv chapter4 blaze
rm -rf chapter11
ls chapter11/
ks chapter11/
git rm -rf chapter11/
git rm chapter11
git mv chapter11/component.cpp hpx/
git mv chapter11/CMakeLists.txt hpx/
git mv chapter11/*.ipynb hpx/
git add lecture16-serialization.ipynb
cd chapter11/
git mv chapter7/lecture7-lambda.ipynb parallel-algorithm/
mkdir parallel-algorithm
git mv chapter7/lecture7-futures.ipynb async/
git mv chapter7/*future.* async/
git rm -rf chapter7
git mv chapter7/lecture7-futures.ipynb parallel-algorithm/
git mv chapter9 hpx
git submodule foreach git pull origin main
ls ParallelComputationMathExamples/
git fetch
git submodule update --remote --merge ParallelComputationMathExamples

git submodule update --init --recursive  ParallelComputationMathExamples

git submodule update --init --recursive  ParallelComputationMathExamples/

git submodule update --init --recursive --remote ParallelComputationMathExamples/

vim .gitmodules
ls .gitmodules
git submodule update --init --remote ParallelComputationMathExamples/

cat Makefile
find . -name "*.cpp" -exec sed -i 's/chapter2/cpp/g' "{}" ";"
find . -name "*.cpp" -exec sed -i 's/ParallelComputationMathExamples/chapter2/ParallelComputationMathExamples/cpp/g' "{}" ";"
find . -name "*.cpp" -exec sed -i 's/hpx::parallel::for_loop::/hpx::for_loop::/g' "{}" ";"
find . -name "*.cpp" -exec sed -i 's/ParallelComputationMathExamples/chapter2//ParallelComputationMathExamples/cpp//g' "{}" ";"
rm -rf chapter2/
rm -rf chapter2/a.out
git rm chapter2
git rm chapter2/
ls chapter2/
git mv chapter2/*.h cpp/
git mv chapter2/*.ipynb cpp/
git mv chapter2/*.sh cpp/
;s chapter2/
git mv chapter2/*.cpp cpp/
mkdir cpp
lsa
scp -o ProxyJump=pdiehl@bounce.cct.lsu.edu:2525  *.cpp  pdiehl@vault:public_html/teaching/2020/4997
ssh -o ProxyJump=pdiehl@bounce.cct.lsu.edu:2525 pdiehl@vault chmod -R a+r /home/pdiehl/public_html/teaching/2020/4997/

scp -o ProxyJump=pdiehl@bounce.cct.lsu.edu:2525  *.cpp  pdiehl@vault:public_html/teaching/2021/4997
ssh -o ProxyJump=pdiehl@bounce.cct.lsu.edu:2525 pdiehl@vault chmod -R a+r /home/pdiehl/public_html/teaching/2020/4997/

scp -o ProxyJump=pdiehl@bounce.cct.lsu.edu:2525  *.cpp  pdiehl@vault:public_html/teaching/2021/4997
ssh -o ProxyJump=pdiehl@bounce.cct.lsu.edu:2525 pdiehl@vault chmod -R a+r /home/pdiehl/public_html/teaching/2021/4997/

cat run.sh
aspell -c -l EN_us chapter_parallel_distributed.tex
aspell -c -l EN_us chapter_lists.tex
aspell -c -l EN_us chapter_numerical_examples.tex
aspell -c -l EN_us chapter_linear_algebra.tex
aspell -c -l EN_us chapter_introduction.tex
cd chapters/
aspell -c -l EN_us book.tex
git mv sections chapters
zip hard,zip *.npy bond-based-2d-plate-0.2-8-*-u-y-rotated-hard.pdf
git add chapter_lists.tex
touch chapter_lists.tex
git mv chaper_parallel_distributed.tex chapter_parallel_distributed.tex
git mv chapter4.tex chaper_parallel_distributed.tex
git mv chapter3.tex chapter_numerical_examples.tex
git mv chapter2.tex chapter_linear_algebra.tex
git mv chapter1.tex chapter_introduction.tex
git mv chapter5.tex chapter_hpx.tex
cd sections/
vim ../list/publications.bib
texhash
update-texmf
dnf search lualatex
fmtutil -sys --missing
ls docker/
ls *graph
ls *tikz
ls *tikz*
cd ParallelComputationMath/
git commit -m "Update gitignore" .gitignore
texmaker exercise1.tex &
display daisy.jpg
convert daisy_small.jpg -resize 50% daisy.jpg
display daisy_small.jpg
convert daisy.jpg -resize 50% daisy_small.jpg
convert daisy.jpg --resize 50% daisy_small.jpg
convert daisy.jpg --resize 50% daisy.jpg
convert --resize 50% daisy.jpg
git add daisy.jpg
vim invited-talk.md
git mv invited-talk.pdf invited-talk.md
git add invited-talk.pdf
vim invited-talk.pdf
cp keynote.md invited-talk.pdf
git add introduction.pdf
mv Asynchronous\ Programming\ in\ Modern\ C++\ \(NCCM\).pdf  introduction.pdf
git add Asynchronous\ Programming\ in\ Modern\ C++\ \(NCCM\).pdf
ls ~/Downloads/Asynchronous\ *
evince Asynchronous\ Programming\ in\ Modern\ C++\ \(NCCM\).pdf
cp ~/Downloads/Asynchronous\ Programming\ in\ Modern\ C++\ \(NCCM\).pdf .
cd git/USACM16-shortcourse/
cd reports/
cd Preface/
git clone https://github.com/AMTE2021/Preface.git
cd AMTE
mkdir AMTE
leafpad asme2e.tex
unzip ASME\ \(Preprint\).zip
cp ../ASME\ \(Preprint\).zip .
cd asme-preprint/
cd SC20\ Virtual\ Presenter\ Packet/
mkdir asme-preprint
mv asme.bbl asme2e.bbl
mv output\(3\).bbl asme.bbl
tikzit
sudo dnf install tikzit
sudo dnf remove xfig
xfig
sudo dnf install xfig
vim CITATION.cff
vim CIATATION.cff
git mv CIATATION.cff CITATION.cff
git add CIATATION.cff
doi2cff init 10.5281/zenodo.5101081
doi2cff init 10.5281/zenodo.4681262
pip install git+https://github.com/citation-file-format/doi2cff
git mv backup CITATION.cff
git rm CIATATION.bib
git add CIATATION.bib
vim CIATATION.bib
git mv CITATION.cff backup
git add CITATION.cff
cp ~/git/hpx_main/CITATION.cff .
cp ~/git/hpx_main/CITATION.cff
git push --set-upstream origin citation
git checkout master git pull
python plot-plate-hard-initial-crack.py 0.2 8 8
python plot-plate-hard-initial-crack.py 0.2 8 6
python plot-plate-hard-initial-crack.py 0.2 8 4
python plot-plate-hard-initial-crack.py 0.2 8 3
python plot-plate-hard-initial-crack.py 0.2 8 2
python plot-plate-hard-initial-crack.py 0.2 8 10
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/hard/*.npy" .
cp ~/git/AnalyticStiffnessPython/hard/plot-plate-hard-initial-crack.py .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/hard/*.pdf"
cd Debbdebb/
mkdir Debbdebb
leafpad bare_conf.tex
cd cluster-preprint/
cd ieee-cluster/
mv bar_conf.tex bare_conf.tex
leafpad bar_conf.tex
touch bar_conf.tex
python plot-tensile.py 1.0 4 3
python plot-plate.py 0.2 4 2
python plot-plate.py 0.2 4 1
zip -r results-stiffness-matrix.zip AnalyticStiffnessPython/
python plot-tensile.py 1.0 4 2
code plot-tensile.py
git sash
cd git/AnalyticStiffnessPython/hard
git add status-hpx.pdf
evince status-hpx.pdf
convert status-hpx.svg status-hpx.pdf
mv status.svg status-hpx.svg
wget https://joss.theoj.org/papers/10.21105/joss.02352/status.svg
sudo dnf install texlive-svg
latexmk -pdf talk.tex
mv output\(2\).bbl bare_conf.bbl
cp ../output\(2\).bbl .
cp ../output\(2\).bbl /
latexmk -pdf bare_conf.tex
latexmk -pdf main.tex
unzip IEEE\ Cluster\ 21\ \(Preprint\).zip
mv IEEE\ Cluster\ 21\ \(Preprint\).zip cluster-preprint/
mkdir cluster-preprint
./make-page.sh
aspell -c -l EN_us part1.ipynb
cd slides/
git push --set-upstream origin add_cise_paper
git checkout -b add_cise_paper
vim doc/content/publications.md
vim paper.md
vim paper.bib
vim re
ls .circleci/ -lah
ls .circleci/
find . -name "*.ipynb" -exec sed -i 's/hpx::parallel::for_loop::/hpx::for_loop::/g' "{}" ";"
find . -name "*.tex" -exec sed -i 's/hpx::parallel::for_loop::/hpx::for_loop::/g' "{}" ";"
find . -name "*.tex" -exec sed -i 's/hpx::parallel::for_loop/hpx::for_loop/g' "{}" ";"
find . -name "*.ipynb" -exec sed -i 's/hpx::parallel::for_loop/hpx::for_loop/g' "{}" ";"
find . -name "*.ipynb" -exec sed -i 's/hpx::parallel::execution::/hpx::execution::/g' "{}" ";"
find . -name "*.cpp" -exec sed -i 's/hpx::parallel::execution::/hpx::execution::/g' "{}" ";"
find . -name "*.ipynb" -exec sed -i 's/hpx::parallel::v1::/hpx::ranges::/g' "{}" ";"
ld chapter2/
find . -name "*" -exec sed -i 's/hpx::parallel::v1::/hpx::ranges::/g' "{}" ";"
find . -name "*.cpp" -exec sed -i 's/hpx::parallel::v1::/hpx::ranges::/g' "{}" ";"
find . -name "*.tex" -exec sed -i 's/hpx::parallel::v1::/hpx::ranges::/g' "{}" ";"
find . -name "*.tex" -exec sed -i 's/hpx::parallel::execution::/hpx::execution::/g' "{}" ";"
find . -name "*.tex" -exec grep hpx::parallel::v1:: "{}" ";"
find . -name "*.tex" -exec grep hpx::parallel::v1::r "{}" ";"
find . -name "*.tex" -exec grep hpx::parallel::v1::r
find . -name "*.tex"
find -r -name "*.tex"
find -R -name "*.tex"
find -name "*.tex"
find -name "*,tex"
find *,tex
evince data/cv/long.pdf
cd USACM16-shortcourse/
git add plot-plate-hard-initial-crack.py
vim make-page.sh
cat make-page.sh
git clone https://github.com/shortcourse/USACM16-shortcourse.git
rm USACM16-shortcourse/ -rf
rm USACM16-shortcourse/
git tash
git reset HEAD~6
git reset HEAD~5
git reset HEAD~4
git revert HEAD~4
git checkout HEAD~4
git checkout HEAD~1
git checkout HEAD~2
git checkout head~2
git head~2
luftipat2007
ln -s README.md index.md
rm index.md
git add -u index.md
git add -u index,md
git add index,md
ls index.md
git add _config.yml
wget https://raw.githubusercontent.com/shortcourse/USACM16-shortcourse/913437c282868a08ab19865334573a3f5f8631dd/_config.yml
git rebbase main
git add slides/part1.slides.html
rm slides/part1.slides.html
git checkout gh
code README.md
code  docs/content/install-instructions.md
vim docs/content/install-instructions.md
python bondbased2D-plate-hard.py 0.2 8 0
python plot-plate-hard-initial-crack.py 0.2 8 13
leafpad buildAll_Ubuntu.sh
leafpad buildAll.sh
git add buildAll_Ubuntu.sh
cp buildAll.sh buildAll_Ubuntu.sh
cd bash/
podman run -it docker.io/library/ubuntu /bin/bash
podman pull ubuntu
podman pull ubuntu:tatest
podman pull ubuntu:Latest
cd git/NLMech2/
python plot-plate.py 0.2 8 27
ls plate-10
vim plot-plate-hard-initial-crack.py 0.2 8 12
python plot-plate-hard.py 0.2 8 12
cp plot-plate-hard.py plot-plate-hard-initial-crack.py
git mv plot-plate.py soft/
git mv bondbased2D-plate-soft.py soft/
git add bondbased2D-plate-soft.py
git mv bondbased2D-plate-point.py  soft/
git mv bondbased2D-plate-point.py bondbased2D-plate-point.py soft/
mkdir soft/
git rm plot-plate-hard.py bondbased2D-plate-hard.py
git mv bondbased2D-tensile.py plot-tensile.py tensile/
mkdir tensile/
git mv New\ potential.ipynb Spline\ potential.ipynb potentials/
ls potentials/
git mv *.ipynb potentials/
mkdir potentials
git mv bondbased2D.py ccm/
mkdir soft
git add plot-plate-hard.py
ssh diehlpk@102.168.0.192
ssh diehlpk@174.64.10.107
ssh diehlp@102.168.0.192
git add bondbased2D-plate-hard.py
podman container list
podman image build --rm -t systemd .
ls Dockerfile
podman stop 1f64aad32c76
podman exec -it 1f64aad32c76 /bin/bash
podman run -d -e "container=docker" --privileged=true -v /sys/fs/cgroup:/sys/fs/cgroup centos /usr/sbin/init
podman run -d -e "container=docker" --privileged=true -v /sys/fs/cgroup:/sys/fs/cgroup --name centos7 centos /usr/sbin/init
docker run -d -e "container=docker" --privileged=true -v /sys/fs/cgroup:/sys/fs/cgroup --name centos7 centos /usr/sbin/init
podman stop 550600a21c97
podman exec -it centos7 /bin/bash
podman run -d --name="centos7" --privileged=true centos:7 /usr/sbin/init
docker run -d --name="centos7" --privileged=true centos:7 /usr/sbin/init
podman stop df121f6de0d5
podman exec -it df121f6de0d5 sh
podman exec -it df121f6de0d5
podman exec -it df121f6de0d5 sbin/init
podman exec -it df121f6de0d5 /usr/sbin/init
podman exec -it df121f6de0d5 bash
podman run --privileged  -d -v /sys/fs/cgroup/:/sys/fs/cgroup:ro   docker.io/solita/centos-systemd:7 /sbin/init
podman run --privileged  -d -v /sys/fs/cgroup/:/sys/fs/cgroup:ro --cap-add SYS_ADMIN  docker.io/solita/centos-systemd:7 /sbin/init
podman stop 7d5e242c328c
podman exec -it 7d5e242c328c bash
history | grep podman
podmain containers
podman run -d -v /sys/fs/cgroup/:/sys/fs/cgroup:ro --cap-add SYS_ADMIN  docker.io/solita/centos-systemd:7 /sbin/init
sudo podman stop e6ffa1832750
sudo podman container list
sudp podman container list
sudo podman run -it docker.io/solita/centos-systemd:7 /sbin/init
podman stop 7c8be20322d3
su
sudo setsebool -P container_manage_cgroup true
setsebool -P container_manage_cgroup true
podman stop 1704b85c1e8c
podman run -ti  systemd
podman run -ti -p 80:80 systemd
sudo podman run -ti -p 80:80 systemd
podman build -t systemd .
podman stop b58f490d991e
podman run -it docker.io/solita/centos-systemd:7 /sbin/init
podman run -it quay.io/centos/centos:7 /sbin/init
podman stop 81e0df3a4fa0
podman stop 7e79137321c7
podman run -v /sys/fs/cgroup:/sys/fs/cgroup --rm -ti docker.io/solita/centos-systemd
podman stop 9c6ef621ad82
podman run -it --tmpfs /run -v /sys/fs/cgroup:/sys/fs/cgroup:ro --cap-add SYS_ADMIN  docker.io/solita/centos-systemd  /sbin/init
podman run -it --tmpfs  docker.io/solita/centos-systemd  /sbin/init
podman run -it --systemd=true --tmpfs  docker.io/solita/centos-systemd  /sbin/init
podman run --systemd=true --tmpfs -it docker.io/solita/centos-systemd  /sbin/init
podman run --systemd=true --tmpfs   -it docker.io/solita/centos-systemd  /sbin/init
podman run --systemd=true --tmpfs --cap-add SYS_ADMIN  -it docker.io/solita/centos-systemd  /sbin/init
podman stop dbcc97964c5f
podman run --systemd=true  -it docker.io/solita/centos-systemd  /sbin/init
podman pull solita/centos-systemd:7
podman rmi 8652b9f0cb4c
podman rmi 300e315adb2f
podman stop 8749123cc647
podman run --systemd=always  -it quay.io/centos/centos:7 /sbin/init
podman stop baa14a8a16da
podman  run --systemd=true --privileged  -it quay.io/centos/centos:7 /sbin/init
podman stop 507c63459ccf
podman  run --systemd=true  -it quay.io/centos/centos:7 /sbin/init
podman run --systemd  -it quay.io/centos/centos:7 /sbin/init
podman --systemd  run -it quay.io/centos/centos:7 /sbin/init
podman --tmpfs  run -it quay.io/centos/centos:7 /sbin/init
podman stop c2af30b90ba6
podman stop 0319e477c101
podman containers
podman exec -it 0319e477c101 sh
podman run -it quay.io/centos/centos /sbin/init
podman stop bf24f2d0d432
podman run -it 8652b9f0cb4c /sbin/init
podman stop a1eb2aeebd81
podman stop bd836229ca43
podman exec -it bd836229ca43 sh
docker exec -it bd836229ca43 sh
podman containerlist
podman container
podman run -it quay.io/centos/centos  /bin/bash
podman kill eval docker ps -q
docker kill eval docker ps -q
podman rmi localhost/resume-make
podman rm localhost/resume-make
podman stop e11ea15a80e3
podman kill 04762ee923658983ac2dff4403e8a0d6aa9f222037aea1a73d6107818e21eb66
podman stop  04762ee923658983ac2dff4403e8a0d6aa9f222037aea1a73d6107818e21eb66
podman rm 8ffefb2f6cde
podman rmi 8ffefb2f6cde
podman run -it 065cf14a189c /bin/bash
docker rmi ed210e3e4a5b
podman help
podman ps -a
podman ls
podman pull ubuntu:16.04
git push --set-upstream origin more_files
git rm plot-results.plt
git rm scf.init
git checkout -b more_files
leafpad Linear_Interpolation.ipynb
vim _includes/navigation.html
vim _data/navigation.yml
vim  _includes/navigation.html
vim vim _includes/navigation.html
bundle add webrick
vim Gemfile
bundle update
vim _includes/head.html
bundle isntall
vim _layouts/
rm *.pdf *.npy
python plot-plate-hard.py 0.2 8 9
git push --set-upstream origin scripts

git rm smic.sh
git rm verification_and_scaling_test.sh
git rm test2.sh
git rm buildo.sh
git checkout -b scripts
git push --set-upstream origin cleanup_sh
git rm *.sh
ls *.sh
git checkout -b cleanup_sh
git push --set-upstream origin cleanup_tar
git rm *.gz
ls *.gz
git rm *.tar
git checkout -b cleanup_tar
git checkout -n cleanup_tar
git push --set-upstream origin cleanup
git rm *.png
git rm node-level-scaling-graph.py scaling-graph.py
cd tools/
git checkout -b cleanup
texmaker template.tex &
cd LaTeX_DL_468198_240419/
unzip LaTeX_DL_468198_01072021.zip
cp ../LaTeX_DL_468198_01072021.zip .
cd fuckFlorin/
mkdir fuckFlorin
git rm ../assets/js/plugins/jquery.magnific-popup.js
ls ../assets/js/plugins/
vim ../_includes/footer.html
vim ../package.json
vim ../Gruntfile.js
vim papers.md
firefox papers.html
pandoc papers.md -o papers.html
pandoc papers.md papers.html
pandoc papers.md
pandoc
ls ../data/list/publications.bib
ls ../data/cv/
rm -rf pandoc_resume/
git rm pandoc_resume/
vim markdown/resume.md
firefox output/resume.html
ls output/
make pdf
make html
sudo dnf install pandoc texlive-collection-context
cd pandoc_resume/
git clone https://github.com/mszep/pandoc_resume
podman run -it docker.io/diehlpk/nlmech /bin/bash
docker run -it docker.io/diehlpk/nlmech /bin/bash
podman pull docker.io/diehlpk/nlmech
docker pull docker.io/diehlpk/nlmech
podman im
cd NLMech/examples/qsModel/2D
git push --set-upstream origin docker
git checkout -b docker
python plot-plate-hard.py 0.2 8 10
python plot-plate-hard.py 0.2 8 6
sudo dnf remove openclonk
python plot-plate-hard.py 0.2 8 5
git add papers.md
cat /proc/cpuinfo
cap /proc/cpuinfo
python plot-plate-hard.py 0.2 8 4
pwgen -s -n 10
pwgen =s -n 10
vim paper7.csv
ls result_images/
ls *7*
evince paper5_diagonal.pdf
evince paper5_matrix.pdf
cd couplingpaperexamples/
python plot-plate-hard.py 0.2 8 1
python plot-plate-hard.py 0.2 8 0
python plot-plate-hard.py 0.2 8 13
python plot-plate-hard.py 0.2 4 1
pyth plot-plate-hard.py 0.2 4 1
cp ../hard/plot-plate-hard.py .
python bondbased2D-plate-hard.py 0.2 4 0
vim bondbased2D-plate-hard.py
cp ../hard/bondbased2D-plate-hard.py .
cd hard_large/
mkdir hard_large
mkdor hard_large
python plot-plate-hard.py 0.2 8 8
python plot-plate-hard.py 0.2 8 7
pass else
pass  lsu
scp daint:/scratch/snx3000/pdiehl/slurm-32055761.out .
pass -c ithenticate
pass insert ithenticate
pass inser ithenticate
pwgen -s -n -y 20
python plot-plate-hard.py 0.2 8 3
openclonk
sudo dnf install openclonk
sudo dnf install openclock
dnf search openclonk
python plot-plate-hard.py 1 8 1
python plot-plate-hard.py 1 8 8
python plot-plate-hard.py 1 8 3
python plot-plate-hard.py 1 8 2
python bondbased2D-plate-hard.py 1 8 0
python plot-plate-hard.py 1 8 13
python plot-plate-hard.py 1 8 12
ls *.txt
scp daint:/scratch/snx3000/pdiehl/log.txt log_daint_97.txt
python plot-plate-hard.py 1 8 6
python plot-plate-hard.py 1 8 5
python plot-plate-hard.py 1 8 0
cp panel.md papers.md
git apply 5382.diff
wget https://patch-diff.githubusercontent.com/raw/STEllAR-GROUP/hpx/pull/5382.diff
cd hpx-1.7.0-rc1/
tar -xvf 1.7.0-rc1.tar.gz
wget https://github.com/STEllAR-GROUP/hpx/archive/refs/tags/1.7.0-rc1.tar.gz
git clone https://github.com/msimberg/hpx.git hpx_simberg
git clone https://github.com/msimberg/hpx.git
git clone msimberg:prefer-installed-asio
python plot-plate-hard.py 0.2 8 2
git stauts
cd git/nonlocalmodels.github.io/
cd git/nonlocal
code qs-2d-elastic.md
code qs-2d-properties.md
code qs-1d-properties.md
code fd-logo-soft-material-2.md
code fd-logo-soft-material.md
code regular-mesh.md
code restart.md
sed -i 's/nonlocalmodels/perihpx/g' README.md
sed 's/nonlocalmodels/perihpx/g' README.md
grep nonlocalmodels README.md
find  - exec grep =l nonlocalmodel "[]" ";"
find  .  * -type f - exec grep =l nonlocalmodel "[]" ";"
find  . -type f * - exec grep =l nonlocalmodel "[]" ";"
find -type f . * - exec grep =l nonlocalmodel "[]" ";"
find . * - exec grep =l nonlocalmodel "[]" ";"
find . * - exec grep nonlocalmodel "[]" ";"
find . *
fin . *
code fd-crack-glass-material.md
cd crack_propagation/
cp ../logo/README.md .
cd restart/
cd logo2/
cd logo
cd examples/fdModel/
git checkout -b examples
git checkout -n examples
code simple-comapre.md
vim simple-comapre.md
cd nonlocalmodels.github.io/
;s ~/git/documents/
cd AnalyticStiffnessPython/hard/
git add Linear_Interpolation.ipynb
git clone https://github.com/diehlpk/reusommer21.git
atismer
ls /tmp/
python plot-plate-hard.py 2 8 1
python bondbased2D-plate-hard.py 1 4 0
convert -flatten 2221544261594721591-256.png 2221544261594721591-256-white.png
display 2221544261594721591-256.png
display 303281881582967221-256-white.png
display 303281881582967221-256.png
convert -flatten 303281881582967221-256.png 303281881582967221-256-white.png
git push --set-upstream origin tags
aspell -c -l EN_us ../docs/content/yaml-options.md
code docs/content/yaml-options.md
git checkout -b tags
python plot-plate-hard.py 1 4 1
python plot-plate-hard.py 1 4 8
cd git/AnalyticStiffnessPython/plate-hard-spline-potential/
cp bondbased2D-plate-hard.py plate-hard-spline-potential/
mkdir plate-hard-spline-potential
cd -=
aspell -c -l EN_us paper/paper.md
cd Kinetic.jl/
git clone https://github.com/vavrines/Kinetic.jl.git
git add index.html
cd shortcourse.github.io/
git clone https://github.com/shortcourse/shortcourse.github.io.git
git add Spline\ potential.ipynb
git add New\ potential.ipynb
ls l-ah
ls *python*
ls *.notebook
ls *ipython
git branch -d pum_coupling
git branch -d improve-docker
git branch -d readme
git branch -d yaml
git branch -d hpx-1.6
git branch -d equations
git branch -d deploy
git branch -d coverage
git branch -d fix_2d_qs_example
git branch -d fix-coverage
git branch -d fix
git branch -d fix*
git branch -d install-instructions
git branch -d add-version-numbers
git add md_content_equations.html
cp ../docs/doxy/html/md_content_equations.html ~/git/nonlocalmodels.github.io/documentation/
cd documentation/
git push --set-upstream origin equations
cd NLMech2/build
code content/equations.md
vim conf.doxy.in
git add equations.md
cp yaml-options.md equations.md
cd content/
git checkout -b equations
git cechkout -b equations
git ush
scp daint:/scratch/snx3000/pdiehl/Octo-Tiger-mpi/build/hpx/build/CMakeCache.txt .
git push --set-upstream origin fix_2d_qs_example
git checkout -b fix_2d_qs_example
cd git/NLMech2/build
../../../build/bin/NLMech -i input.yaml --hpx:threads=20
../../../build/bin/NLMech -i input.yaml --hpx:threads=2
code input.yaml
ls /usr/include/asio
sudo dnf install asio-devel
dnf search asio
sudo dnf install asio
../../../build/bin/mesh -i input_mesh.yaml -d 2
cd examples/qsModel/2D/
git branch main
tar -xvf 2102\(2\).00223
mkdir plate-hard-new-potential
ssh -X rostam
pass insert incite
texmaker Publications_template.tex
cp ../INCITE_2019/Publications_template.tex .
cd INCITE_2021/
mkdir INCITE_2021
cd git/documents/allocation_requests/
cmake -DBUILD_TESTS=ON ..
git rm ../tests/main.cpp
rm -rf build
mv ../tests/main.cpp .
python bondbased2D-plate-second.py 0.2 4 13
python bondbased2D-plate-second.py 0.2 4 14
ls *y*.pdf -lah | wc -l
ls *y*.pdf -lah
ls *y*.pdf
ls *y*
vim ../tests/CMakeLists.txt
cd git/BlazeIterative/
python bondbased2D-plate-second.py 0.2 4 11
ls -lah *-y*.pdf | wc -l
ls -lah *-y*.pdf
ls *-y*.pdf
evince bond-based-2d-plate-u-y-0.2-4-10.pdf &
cd plate-soft-new-potential/second/
git push --set-upstream origin new-install
git checkout -b new-install
g++ main_Arnoldi.cpp -llapacke -llapack -lblas
g++ main_Arnoldi.cpp -Ddgeev=dgeev_
g++ main_Arnoldi.cpp
cp ../tests/main_Arnoldi.cpp /tmp/
vim ../tests/main_Arnoldi.cpp
g++ main.cpp
vim main.cpp
sudo make install
vim /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/GMRESTag.hpp
vim /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/GMRES.hpp
vim /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/Lanczos.hpp
vim /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/LanczosTag.hpp
vim /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/PreconditionCGTag.hpp
vim /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/PreconditionBiCGSTAB.hpp
vim /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/ArnoldiTag.hpp
vim /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/Arnoldi.hpp
vim /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/PreconditionBiCGSTABTag.hpp
vim /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/BiCGSTABTag.hpp
/home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/BiCGSTABTag.hpp
vim /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/ConjugateGradient.hpp
/home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/ConjugateGradient.hpp
vim /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/ConjugateGradientTag.hpp
/home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/ConjugateGradientTag.hpp
vim /home/diehlpk/git/BlazeIterative/include/BlazeIterative.hpp
ccmake .
cd BlazeIterative/
git mv IterativeTag.hpp solve.hpp TerminationStatus.hpp IterativeCommon.hpp BlazeIterative/
git mv solvers/ BlazeIterative/
mkdir BlazeIterative
cd include/
ls /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/
cat /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/solvers.hpp
ls /home/diehlpk/git/BlazeIterative/include/BlazeIterative/solvers/solvers.hpp
find -name "*hpp" -exec leafpad "{}" ";"
vim BlazeIterative.hpp
git mv BlazeIterative/BlazeIterative.hpp .
git mv *.hpp BlazeIterative/
ls include/
cat /usr/include/vtk/vtkXMLCompositeDataReader.h
cat /usr/include/vtk/vtk3DS.h
ls -lah /usr/include/vtk/vtk3DS.h
ls -lah /usr/include/vtk/
ls -lah /usr/include/
ls -lah /usr/local/include/
g++ main.cpp -lpthread
find -name "*hpp"
sudo vim /usr/local/include/BlazeIterative/solvers/ConjugateGradientTag.hpp
vim /usr/local/include/BlazeIterative/solvers/ConjugateGradientTag.hpp
vim cmake_install.cmake
code docs/paper.md
git branch joss
sudo restart
convert -density 500  4thSIAMTXLAMeeting.pdf  4thSIAMTXLAMeeting.jpeg
convert -density 500 -background white -alpha remove -alpha off  4thSIAMTXLAMeeting.pdf  4thSIAMTXLAMeeting.jpeg
convert -density 500 -background white -alpha remove -alpha off --flatten 4thSIAMTXLAMeeting.pdf  4thSIAMTXLAMeeting.jpeg
convert -density 500 -background white -alpha remove -alpha off --flatten 4thSIAMTXLAMeeting.pdf  4thSIAMTXLAMeeting.png
convert -density 500 -background white -alpha remove -alpha off --flatten 4thSIAMTXLAMeeting.pdf  4thSIAMTXLAMeeting.pmg
git clone https://github.com/elipapa/markdown-cv.git
rm CMakeLists.txt
ls *cv
ls *cv*
podman-compose up
docker-compose up -d
latexmk -pdf resume.tex
cd output/
make docx
lualatex resume.tex
pdflatex resume.tex
git clone https://github.com/mszep/pandoc_resume.git
python bondbased2D-plate-second.py 0.2 4 3
code bondbased2D-plate-second.py
cp ../bondbased2D-plate.py bondbased2D-plate-second.py
mkdir second
python bondbased2D-plate.py 0.2 4 1
python bondbased2D-plate.py 1 4 1
python bondbased2D-plate.py 1 4 0
code bondbased2D-plate.py
vim bondbased2D-plate.py
cp ../plate-new/bondbased2D-plate.py .
cd plate-soft-new-potential
mkdir plate-soft-new-potential
rm -rf plate-soft-new/
ls plate-soft-new/
ls plate-soft-new
mkdir plate-soft-new
rm -rf potential/
cd plate-soft-new potential
mkdir plate-soft-new potential
rm -rf plate-soft-new-potential
rm -rf plate-soft-old
mkdir plate-soft-old
cp ../bondbased2D-plate-hard.py .
cp plot-plate-hard.py ..
cp plot-plate-hard.py .
cp bondbased2D-plate-hard.py ..
python plot-plate-hard.py 1 4 3
scp summit.olcf.ornl.gov:/gpfs/alpine/cph102/proj-shared/diehl/ieee_cluster/blast_gpu/8/128/log2.txt .
python bondbased2D-plate.py 0.2 4 13
cd git/AnalyticStiffnessPython/plate-new/
git clone https://github.com/STEllAR-GROUP/USACM16-shortcourse.git
cd git/TBAA2020/
leafpad bondbased2D-plate.py
python bondbased2D-plate.py 0.2 4 12
texmaker timetable.tex
cd timetable/
sudo dnf install texlive-qrcode
sudo dnf install texlive-tikzposter
sudo dnf install texlive-endnotes
ssh-add ~/.ssh/id_github
sudo dnf install texlive-laspage
texmaker syllabus/syllabus.tex
git pyll
thunar.
git add reduce/CMakeLists.txt
git add reduce/main.cpp
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.6.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ .
cd reduce/
cp CMakeLists.txt reduce/
mv listing3_1.cpp reduce/main.cpp
mkdir reduce
git clone https://github.com/STEllAR-GROUP/hpx_overview_examples.git
sudo dnf remove lincity-ng
sudo dnf remove supertux
python bondbased2D-plate.py 0.2 4 5
python bondbased2D-plate.py 0.2 4 3
vim ../bondbased2D-plate.py
cp ../bond-based-2d-plate-0.2-4-2-displacement.npy .
cp ../plate-10-3/second/bondbased2D-plate.py second/
evince bond-based-2d-plate-u-y-0.2-4-2.pdf
rm -rf /home/diehlpk/.irssi/certs
ped
mv libera.pem ~/.config/hexchat/certs

mm libera.pem ~/.config/hexchat/certs

mkdir ~/.config/hexchat/certs
openssl req -x509 -new -newkey rsa:4096 -sha256 -days 1096 -nodes -out libera.pem -keyout libera.pem
cd ~/.irssi/certs
mkdir -p ~/.irssi/certs
mkdir ~/.irssi/certs
python bondbased2D-plate.py 0.2 4 28
code plate-10-3/bondbased2D-plate.py .
code plate-10-3/bondbased2D-plate.py
cp ../plate-10-3/bondbased2D-plate.py .
mkdir plate-new
ls ../*displace*
ls ../*diesplace*
cp ../bond-based-2d-plate-0.2-4-27-displacement.npy .
ls ../bond-based-2d-plate-0.2-4-*
cp ../bondbased2D-plate.py .
ls -d
ls -f
python bondbased2D-tensile-second.py 1 4 21
python bondbased2D-tensile-second.py 0.2 4 21
rm bond-based-2d-tensile-1.0-4-21-displacement.npy
python plot-plate-hard.py 0.2 4 21
cp ../bond-based-2d-tensile-1.0-4-20-displacement.npy .
code bondbased2D-tensile-second.py
cd git/AnalyticStiffnessPython/tensile/
git push --set-upstream origin yaml
madoc doc
git add docs/content/yaml-options.md
cp docs/content/install-instructions.md docs/content/yaml-options.md
git checkout -b yaml
exir
texmaker nist.tex
cp long.tex nist.tex
firefox long.html
pdftohtml long.pdf
xhlatex
sudo shutdown -P 23:00
sudo shupdown -P 23:00
scp summit.olcf.ornl.gov:/gpfs/alpine/cph102/proj-shared/diehl/ieee_cluster/blast_gpu/8/256/log.txt 256.log
scp summit.olcf.ornl.gov:/gpfs/alpine/cph102/proj-shared/diehl/ieee_cluster/blast_gpu/8/128/log.txt 128.log
ssh -p 64539 18.208.160.157
git add documentation/.empty
touch documentation/.empty
mkdir documentation/
git push --set-upstream origin gh-pages
git pussh
git checkout -b gh-pages
leafpad .circleci/Docker/Dockerfile
git push --set-upstream origin improve-docker
vim /home/diehlpk/git/perihpx/nonlocalheatequation/src/2d_nonlocal_distributed.cpp
git push --set-upstream origin move
git checkout -b move
podman  pull diehlpk/nlmech:latest
git checkout -b improve-docker
git push --set-upstream origin update

git checkout -b update
leafpad article.tex
mv coupling-quartic-approach-2-convergence-fdm-direchlet-moving-8.pdf coupling-quartic-approach-2-convergence-fdm-d-moving-8.pdf
mv coupling-quartic-approach-1-convergence-fdm-direchlet-moving-8.pdf coupling-quartic-approach-1-convergence-fdm-d-moving-8.pdf
cd Figures/
cp ../Coupling\ theory.zip .
cd coupling/
mkdir coupling
unzip elsarticle-template.zip
cp ../elsarticle-template.zip .
unzip elsarticle-ecrc.zip
cp ../elsarticle-ecrc.zip .
cd else/
mkdir else
scp summit.olcf.ornl.gov:ieee-cluster-21.tar.gz .
pwgen -s -n 20
./bin/NLMech
cd ~/git/NLMech2/
evince coupling-quartic-approach-1-convergence-fdm-direchlet-moving-64.pdf
evince coupling-quartic-approach-1-convergence-fdm-direchlet-moving-16.pdf
evince coupling-quartic-approach-1-convergence-fdm-direchlet-moving-8.pdf
evince coupling-quartic-approach-1-convergence-fdm-moving-16.pdf &
vim keynote.md
python  coupling-approach-1-direchlet-moving.py Quartic
evince coupling-quartic-approach-1-direchlet-moving.pdf &
python  coupling-approach-1-direchlet-moving.py
python  coupling-approach-2-convergence-dirchlet.py Quartic FDM 64
python  coupling-vhm-convergence-fdm.py Quartic 64
python  coupling-vhm-convergence-fdm.py Quartic FDM 64
python  coupling-approach-2-convergence.py Quartic FDM 64
python  coupling-approach-2-convergence.py Quartic FDM 32
python  coupling-approach-2-convergence.py Quartic FDM 16
python  coupling-approach-2-convergence.py Quartic FDM 8
evince  coupling-quartic-approach-2-convergence-fdm-8.pdf
evince  coupling-quartic-approach-1.pdf
evince  coupling-quadratic-approach-1.pdf
python  coupling-approach-2-convergence-dirchlet.py Quartic FDM 32
python  coupling-approach-2-convergence-dirchlet.py Quartic FDM 16
python  coupling-approach-2-convergence-dirchlet.py Quartic FDM 8
pass -c lus
evince coupling-quartic-approach-2-convergence-fdm-direchlet-8.pdf &
python  coupling-approach-2-convergence-dirchlet.py Quartic FDM 3
python  coupling-approach-2-convergence-dirchlet.py Quartic FDM 2
evince CsMag_template.pdf
evine CsMag_template.pdf
cd git/documents/papers/CiSE/
vim paper.bibtex
cat blast.32.ini
cat blast.16.ini
cat blast.8.ini
cat blast.34.ini
vim blast.8.ini
vim blast.16.ini
vim blast.32.ini
git clone https://github.com/PeriHPX/buildInfrastructure.git
git clone https://github.com/PeriHPX/nonlocalheatequation.git
https://github.com/PeriHPX/nonlocalheatequation.git
rm -rf nonlocalheatequation/
git clone https://github.com/diehlpk/nonlocalheatequation.git
git clone https://github.com/PeriHPX/perihpx.github.io.git
mkdir perihpx
aspell -c -l EN_us ../docs/content/install-instructions.md
aspell -c -l EN_us ../docs/content/cmake-options.md
./buildAll.sh
chmod a+x buildAll.sh
chmod a+x buildFedora.sh
./buildFedora.sh
vim buildAll.sh
git push --set-upstream origin fix-coverage
aspell -c -l EN_us ../README.md
git checkout -b fix-coverage
git checkout -b fix coverage
git push --set-upstream origin install-instructions
./build-all.sh Release without-gcc flann
git mv buildFedoraALL.sh buildAll.sh
./build-all.sh Release without-gcc yamlcpp
./build-all.sh Release without-gcc vtk
vim config.sh
./build-all.sh Release without-gcc blazeIterative
./build-all.sh Release without-gcc blaze_iterative
./build-all.sh Release without-gcc blaze
./build-all.sh Release without-gcc boost
./build-all.sh Release without-gcc jemalloc
./build-all.sh Release without-gcc hwloc
vim build-cmake.sh
./build-all.sh Release without-gcc cmake
./build-all.sh
git clone https://github.com/nonlocalmodels/HPCBuildInfrastructure.git
git clone 
https://github.com/nonlocalmodels/HPCBuildInfrastructure.git
git clone 

git add install-instructions.md
code install-instructions.md
cp cmake-options.md install-instructions.md
git checkout -b install-instructions
vim buildFedora.sh
git mv Fedora/ bash
git rm -rf Ubuntu/
git push --set-upstream origin add-version-numbers
dnf search blaze
git checkout -b add-version-numbers
python  coupling-approach-2-convergence-dirchlet.py Quartic FDM 4
diff coupling-approach-1-convergence.py  coupling-approach-2-convergence-dirchlet.py
python  coupling-approach-1-convergence-dirchlet.py Quartic FDM 8
python  coupling-approach-1-convergence.py Quartic FDM 8
evince coupling-quartic-approach-2-convergence-fdm-direchlet-16.pdf &
diff coupling-approach-2-convergence.py  coupling-approach-2-convergence-dirchlet.py
diff coupling-approach-1-convergence-dirchlet.py  coupling-approach-2-convergence-dirchlet.py
diff coupling-approach-2-direchlet.py  coupling-approach-2-convergence-dirchlet.py
diff coupling-approach-2-convergence.py coupling-approach-2-convergence-dirchlet.py
diff coupling-approach-2-convergence-dirchlet-moving.py coupling-approach-2-convergence-dirchlet.py
evince coupling-quartic-approach-2-1-direchlet.pdf
python  coupling-approach-2-convergence-dirchlet.py Quartic FDM
python plot-vmax.py
pass -c fedora
git add plot-vmax.py
evince vmax-neumann.pdf
code  plot-vmax.py
cp coupling-all.py plot-vmax.py
evince coupling-quartic-approach-1-kappa-direchlet.pdf  &
evince coupling-quartic-approach-2-kappa-direchlet.pdf  &
python coupling-approach-1-kappa-direchlet.py Quartic
git puish
dnf search moderncv
dnf searhc tewallist
sudo dnf install texlive-tewaklist
pwgen -n 20 -s -y
sudo dnf group install 'pantheon desktop'
leafpad paper.md
cd git/documents/papers/IEEECluster21/
coveralls --exclude build --gcov-options '\-lp' -t 4DfUYPsrwug88XV31c0PQqBwrt3rhjqeT

history | grep  cover
gcovr --exclude-directories=build --exclude-directories=data --exclude-directories=/usr/include/ -r ..
python coupling-approach-2-kappa-direchlet.py Quartic
python coupling-approach-2-kappa-direchlet.py
code add coupling-approach-2-kappa-direchlet.py
git add coupling-approach-2-kappa-direchlet.py
cp coupling-approach-1-kappa-direchlet.py coupling-approach-2-kappa-direchlet.py
python coupling-approach-2-kappa.py Quartic
evince coupling-quartic-approach-2-kappa.pdf  &
python coupling-approach-2-kappa.py
code coupling-approach-2-kappa.py
git add coupling-approach-2-kappa.py
cp coupling-approach-1-kappa.py coupling-approach-2-kappa.py
git add coupling-approach-1-kappa-direchlet.py
python coupling-approach-1-kappa.py Quartic
evince coupling-quartic-approach-1-kappa.pdf &
evince coupling-quartic-approach-1-kappa-direchlet.pdf
code coupling-approach-1-kappa-direchlet.py
cp coupling-approach-1-kappa.py coupling-approach-1-kappa-direchlet.py
evince Project_Summary_template.pdf
evince Publications_template.pdf
evince submission.pdf
cd INCITE_2019/
git add coupling-approach-1-kappa.py
python coupling-approach-1-kappa.py Quartic FDM
octave --force-gui
octave
code coupling-approach-1-kappa.py
cp coupling-approach-1.py coupling-approach-1-kappa.py
cd ~/Compile/matlab/
sudo ./install
unzip matlab
mv ../matlab_R2021a_glnxa64.zip matlab
cd matlab/
mkdir matlab
cp ~/Downloads/matlab_R2021a_glnxa64.zip .
cd ~/Compile/
unzip matlab_R2021a_glnxa64.zip
pass lsu
git push --set-upstream origin readme
git checkout -b readme
git chekcout -b readme
python plot-plate-hard.py 1 4 7
cd git/AnalyticStiffnessPython/hard/
python plot-plate-hard.py 1 4 2
git branch -d update
git branch -d spack gnu
vim _posts/2020-10-01-season3-epsiode-5.markdown
git push --set-upstream origin update
cd git/FLOSSforScience.github.io/
git info
python plot-plate-hard.py 1 4 4
sudo dnf install texlive-scheme-medium
sudo dnf install texlive-full
sudo dnf install texlive
git push --set-upstream origin fix
git checkout -b fix
git push --set-upstream origin deploy
vim ../.circleci/Docker/Dockerfile
git checkout -b deploy
coveralls --gcov-options '\-lp' -t oNRrkFA7lDP3onprqLGjEXSKFw5INO3VS
coveralls --gcov-options '\-lp' -t
history | grep  cmake
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.6.0/build/lib/cmake/HPX/ -DHPXCL_WITH_CUDA=ON ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DHPXCL_WITH_CUDA=ON ..
cd Compile/hpx-1.6.0/build/
git checkout coverage
Hey, 

should we upload a preprint next week once we cleaned up the short paper?

Patrick
sudo dnf system-upgrade download --refresh --releasever=34 --allowerasing

sudo dnf remove "texlive*"
sudo dnf remove tezxlive*
podman rmi *
podman rmi 66c9b8b3e8b8
rm -rf Trilinos-trilinos-release-13-0-0/
rm -rf hpx-1.3.0/
rm -rf hpx-1.2.0/
rm -rf hpx-1.1.0/
rm *.gz
podman rmi 7536610d7fc0
podman rmi bbc1822d832f
podman 999659bda268
podman rmi 999659bda268
sudo dnf system-upgrade download --releasever=34 --allowerasing
podman rmi 66c9b8b3e8b8 be0b3cb1d0e9 c9b1b09572e8
podman rmi 82333398c779
podman rmi 6ebfc12d747b
podman rmi 27777657b5e3
podman rmi 9d287fdc8543
podman rmi 4c53be6175c9
podman --images
podman --list
sudo dnf remove vdrift
wait 30
wait
git rebase hpx-1.6
tar -xvf 2102\(1\).00223
git checkout hpx-1.6
git push --set-upstream origin hpx-1.6
sudo dnf system-upgrade download --releasever=34
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.6.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..

cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..

history | grep cmake
history | grep install cmake
git checkout -b hpx-1.6
git push --set-upstream origin coverage

git checkout -b coverage
cd hpx-1.6.0/
tar -xvf hpx-1.6.0.tar.gz
cp ~/Downloads/hpx-1.6.0.tar.gz .
sudo dnf system-upgrade download --refresh --releasever=34

git checkout -b update readme
cp ~/git/buildinfrastrcutre/Docker/Dockerfile Fedora
dnf search tkz | grep graph
dnf search tikz | grep graph
dnf search tikz | graph
dnf search tikz
git push --set-upstream origin fedora34
git checkout -b fedora34
cd git/buildinfrastrcutre/
git commit -m "Fix tests" examples/qsModel/1D/input.yaml examples/qsModel/1D/input_legacy_vtk.yaml
vim examples/qsModel/1D/input_legacy_vtk.yaml
vim examples/qsModel/1D/input.yaml
make test quasistatic.1D.elastic_legacy_vtk
make quasistatic.1D.elastic_legacy_vtk
git add input_mesh-2.yaml
git add input_mesh.yaml
git push --set-upstream origin pum_coupling
~/git/NLMech2/build/bin/NLMech -i input-2.yaml --hpx::threads=20
mkdir out-const-2/
vim input_mesh-2.yaml
cp ~/Downloads/pum_mesh_small_2.vtu .
python plot-plate-hard.py 0.2 4 4
~/git/NLMech2/build/bin/mesh -i input_mesh-2.yaml -d 2
cp input_mesh.yaml input_mesh-2.yaml
vim input_mesh.yaml input_mesh-2.yaml
rm out-const/*.vtu
kate input.yaml
mkdir out-const/
cp ~/Downloads/pum_mesh_small.vtu .
cp ~/Downloads/pum_mesh_large.vtu .
cp ~/Downloads/pum_mesh_large.vtu ,
rm input.yaml
cp ../inclined/input_const_load_all.yaml input.yaml
rm input_linear_top_bottom.yaml
vim input_linear_top_bottom.yaml
cp ../inclined/input_linear_top_bottom.yaml .
cd git/paperPUMPD/inclined/
python plot-plate-hard.py 0.2 4 3
git checkout -b pum_coupling
git branch -d analyticstiffness
git branch -d info
git branch -d loading
git branch -d error-missing-mesh
git branch -d fix_nu
git branch -d plain
git branch -d smartpointers
git branch -d restart-bug
python plot-plate-hard.py 0.2 4 2ls
~/git/NLMech2/build/bin/NLMech -i input_const_load_top-bottom-fine-2.yaml --hpx::threads=20
python plot-plate-hard.py 0.2 4 2
rm -rf out_top_bottom_const-2/*.vtu
vdrift
sudo dnf install vdrift
dnf search vdrift
sudo dnf remove haxima
haxima
sudo dnf install haxima
sudo dnf remove rogue
rogue
rouge
sudo dnf install rogue
python plot-plate-hard.py 1 4 10
python coupling-approach-1.py Quartic FDM
evince coupling-quartic-approach-1.pdf &
python coupling-approach-2.py Quartic FDM
evince coupling-quartic-approach-2-1.pdf &
evince coupling-quartic-approach-2.pdf &
evince coupling-linear-approach-1.pdf &
python coupling-approach-1.py Linear FDM
python coupling-approach-2-convergence-dirchlet-moving.py Quartic FDM 64 0.0000355
python coupling-approach-1-convergence-dirchlet-moving.py Quartic FDM 64 0.0000355
python coupling-vhm-convergence-fdm-dirchlet-moving.py Quartic 8 0.0020393
~/git/NLMech2/build/bin/NLMech -i input_const_load_top-bottom.yaml --hpx::threads=20
vim input_const_load_top-bottom.yaml
rm out_top_bottom_const/*.vtu
rm -rf out_top_bottom_const/*.vtu
python coupling-vhm-convergence-fdm-dirchlet-moving.py Quartic 16 0.0005400
python coupling-vhm-convergence-fdm-dirchlet-moving.py Quartic 32 0.0001386
python coupling-approach-1-convergence-moving.py Quartic FDM 32 0.0016785
python coupling-vhm-convergence-fdm-dirchlet-moving.py Quartic 64 0.0000351
python coupling-approach-2-convergence-moving.py Quartic FDM 32 0.0016785
python coupling-approach-1-convergence-moving.py Quartic FDM 16 0.0067139
python coupling-approach-2-convergence-moving.py Quartic FDM 16 0.0067139
rm out_top_bottom_const-2/output_*.vtu
~/git/NLMech2/build/bin/mesh -i input_mesh_fine.yaml -d 2
rm mesh_fine_2.vtu
vim input_mesh_fine.yaml
cd 2mm/
cd Simulations/PUM/New_Results_Mode_1_crack/
git add coupling.m
~
rm -rf out_top_bottom_const-g-2.0
rm -rf out_top_bottom_linear/
rm -rf out
rm -rf out_top_bottom_const_crack*
rm -rf out_top_bottom_const2
rm -rf out_all_const/
rm out-g-* -rf
rm  out_fine/*.vtu
rm -rf  out_fine/*.vtu
rm -rf  out_fine/*.vy
python coupling-approach-2-convergence-moving.py Quartic FDM 64 0.0004196
python coupling-approach-1-convergence-moving.py Quartic FDM 64 0.0004196
python coupling-approach-2-convergence-moving.py Quartic FDM 8 0.026855
python coupling-approach-1-convergence-moving.py Quartic FDM 8 0.026855
python coupling-approach-1-convergence-moving.py Quartic FDM 8 0.0026855
python coupling-approach-1-convergence-moving.py Quartic 8 0.0026855
git push --set-upstream origin publications_readme
firefox ../doc/html/index.html
git checkout -b publications_readme
git add ../doc/html/*
git commit -m "Update doc" ../doc/html/*
git commit -m "Update doc" doc/html/*
git commit -a doc/html/*
git checkout -f gh-pages
git checkout doc
git push --set-upstream origin doc
git checkout -b doc
python coupling-approach-2-convergence-dirchlet-moving.py Quartic FDM 32 0.0001422
python coupling-approach-1-convergence-dirchlet-moving.py Quartic FDM 32 0.0001422
python coupling-approach-2-convergence-dirchlet-moving.py Quartic FDM 16 0.0005687
python coupling-approach-1-convergence-dirchlet-moving.py Quartic FDM 16 0.0005687
python coupling-approach-1-convergence-dirchlet-moving.py Quartic FDM 16 0.0022748
python coupling-approach-2-convergence-dirchlet-moving.py Quartic FDM 8 0.0022748
python coupling-approach-1-convergence-dirchlet-moving.py Quartic FDM 8 0.0022748
python coupling-approach-1-convergence-dirchlet-moving.py Quartic FDM 8
python coupling-approach-2-convergence-dirchlet-moving.py Quartic FDM 8
diff coupling-approach-1-convergence-dirchlet-moving.py coupling-approach-2-convergence-dirchlet-moving.py
diff coupling-approach-1-direchlet-moving.py coupling-approach-2-direchlet-moving.py
python coupling-approach-2-convergence-direchlet-moving.py Quartic FDM 8
python coupling-approach-2-direchlet-moving.py Quartic FDM
python coupling-approach-1-convergence-dirchlet-moving.py Quartic Linear 8
python coupling-all.py Cubic
git add coupling-approach-1-direchlet-moving.py
python coupling-approach-2-convergence-dirchlet-moving.py Quartic FDM 9
git add  coupling-approach-2-convergence-dirchlet-moving.py
cp coupling-approach-2-convergence-dirchlet.py coupling-approach-2-convergence-dirchlet-moving.py
python coupling-approach-1-convergence-moving.py Quartic Linear 8
python coupling-approach-2-convergence-moving.py Quartic FDM 8
evince coupling-quartic-approach-2-convergence-fdm-moving-8.pdf &
git add coupling-approach-2-convergence-moving.py
cp coupling-approach-2-convergence.py coupling-approach-2-convergence-moving.py
python coupling-approach-2-direchlet.py Quartic FDM
git add coupling-approach-2-direchlet-moving.py
cp coupling-approach-2-direchlet.py coupling-approach-2-direchlet-moving.py
python coupling-approach-2-moving.py Quartic
git add coupling-approach-2-moving.py
rm  coupling-2-moving.py
cp coupling-approach-2.py coupling-approach-2-moving.py
cp coupling-approach-2.py coupling-2-moving.py
python coupling-approach-1-convergence-dirchlet-moving.py Quartiv FDM 8
cp coupling-approach-1-convergence-dirchlet.py coupling-approach-1-convergence-dirchlet-moving.py
git add coupling-approach-1-convergence-dirchlet-moving.py
evince coupling-quartic-approach-1-convergence-fdm-moving-8.pdf &
python coupling-approach-1-convergence-moving.py Quartic Linear 4
evince coupling-quartic-approach-1-convergence-fdm-moving-4.pdf &
evince coupling-quartic-approach-1-convergence-fdm-moving-4.pdf
ls *4*
evince coupling-linear-approach-1-convergence-fdm-moving-8.pdf
evince coupling-linear-approach-1-convergence-fdm-moving-4.pdf &
python coupling-approach-1-convergence-moving.py Quartic FDM 4
python coupling-approach-1-convergence-moving.py Quartic FDM 8
python coupling-approach-1-convergence-moving.py Linear FDM 8
evince coupling-linear-approach-1-convergence-fdm-moving-8.pdf &
git commit -m "m-convergence for approach 1" coupling-approach-1-moving.py coupling-approach-1-convergence-moving.py
git commit -m "m-convergence for approach 1" coupling-approach-1-moving.py oupling-approach-1-convergence-moving.py
git add coupling-approach-1-convergence-moving.py
cp coupling-approach-1-convergence.py coupling-approach-1-convergence-moving.py
cp coupling-approach-1-direchlet.py coupling-approach-1-direchlet-moving.py
python coupling-approach-1-moving.py Quartic
evince coupling-quartic-approach-1-moving.pdf &
python coupling-approach-1-moving.py Linear
evince coupling-linear-approach-1-moving.pdf &
python coupling-vhm-convergence-fdm-moving.py Quartic 64
python coupling-vhm-convergence-fdm-moving.py Quartic 32
python coupling-vhm-convergence-fdm-moving.py Quartic 16
python coupling-vhm-convergence-fdm-moving.py Quartic 8
python coupling-vhm-convergence-fdm-dirchlet-moving.py Quartic 8
python coupling-vhm-convergence-fdm-moving.py Quartic FDM 8
python coupling-vhm-convergence-fdm-moving.py Quartic FDM *
python coupling-approach-2-convergence-dirchlet.py Quartic FDM 8
python coupling-approach-2-direchlet.py Quartic FDM 8
python coupling-approach-2-dirchlet.py Quartic FDM 8
python coupling-approach-2--dirchlet.py Quartic FDM 8
python coupling-approach-1-convergence-dirchlet.py Quartic FDM 8
python coupling-approach-1-direchlet.py Quartic FDM
python coupling-approach-2-convergence.py Quartic FDM 8
python coupling-approach-1-convergence.py Quartic FDM 8
python coupling-vhm-convergence-fdm-dirchlet.py Quartic 8
python coupling-vhm-direchlet.py Quartic
python coupling-vhm-convergence-fdm.py Quartic 8
python coupling-vhm.py Quartic FDM
python coupling-all-direchlet.py Cubic
evince coupling-cubic-all.pdf &
cp coupling-approach-1.py coupling-approach-1-moving.py
pass -c token
ssh -A rostam
ls -lah cise.zip
zip -r --exclude='*.pptx*'  cise.zip CiSE/*
zip -r --exclude=*.pptx*  cise.zip CiSE/*
zip -r -x '*.ppt*' cise.zip CiSE/*
rm cise.zip
zip -r cise.zip CiSE/*
texmaker talk2.tex &
texmaker talk3.tex &
cat talk.tex |  tr -s ' ' > talk2.tex
cat talk.tex |  tr -s ' '
tr -s ' ' talk.tex
cd 2021/EMI/
cp -r 2020/WCCM/ 2021/EMI
cd 2020/WCCM/ 2021/EMI -r
mkdir 2021
ls 2020
cat ../stationary_crack/input.yaml
mkdir out_top_bottom_const2
libreoffice
libreoffice crack_path.ods
libreffice crack_path.ods
ls out_top_bottom_const
git add *.yaml
git checkout -b joss
python coupling-vhm-convergence-fdm-dirchlet-moving.py Quartic 64
python coupling-vhm-convergence-fdm-dirchlet-moving.py Quartic 32
python coupling-vhm-convergence-fdm-dirchlet-moving.py Quartic 16
git commit -m "m-convergence vhm dirchlet" coupling-vhm-convergence-fdm-dirchlet.py coupling-vhm-convergence-fdm-dirchlet-moving.py
evince coupling-quartic-vhm-convergence-fdm-dirchlet-moving-8.pdf &
python coupling-vhm-convergence-fdm-dirchlet-moving.py Quartic FDM 8
python coupling-vhm-convergence-fdm-dirchlet-moving.py
git add coupling-vhm-convergence-fdm-dirchlet-moving.py
cp coupling-vhm-convergence-fdm.py coupling-vhm-convergence-fdm-dirchlet-moving.py
git add coupling-vhm-direchlet-moving.py
evince coupling-quartic-vhm-convergence-fdm-moving-8.pdf &
evince coupling-quartic-vhm-convergence-fdm-moving8.pdf
evince coupling-quartic-vhm-direchlet-moving.pdf &
evince coupling-quartic-vhm-direchlet-moving.pdf
python coupling-vhm-direchlet-moving.py
cp coupling-vhm-direchlet.py coupling-vhm-direchlet-moving.py
code coupling-vhm-convergence-fdm-moving.py
~/git/NLMech2/build/bin/mesh -i input_mesh_large.yaml -d 2
vim input_mesh_large.yaml
cp input_mesh.yaml input_mesh_large.yaml
~/git/NLMech2/build/bin/mesh -i input_mesh.yaml -d 2
cp ../stationary_crack/input_mesh.yaml .
mkdir cutoff
./run2.sh
texmaker Latex-Briefvorlage2.tex
vim run2.sh
evince bewerbung_diehl2.pdf
evince bewerbung_diehl.pdf
leafpad industrie.tex &
git add coupling-vhm-convergence-fdm-moving.py
cp coupling-vhm-convergence-fdm.py coupling-vhm-convergence-fdm-moving.py
evince coupling-quartic-vhm-moving.pdf &
evince coupling-quarticvhm-moving.pdf &
evince coupling-linear-vhm-moving.pdf &
/usr/bin/python
texmaker industrie.tex &
cd Documents/Bewerbungen/berlin/
texmaker industrie.tex
leafpad industrie.tex
cp ../boulder/diversity.tex industrie.tex
texmaker CsMag_template.tex &
evince CsMag_template.pdf &
evince coupling-quartic-vhm.pdf
python coupling-vhm-moving.py Quartic
python add coupling-vhm-moving.py Quartic
git add coupling-vhm-moving.py
git aff coupling-vhm-moving.py
cp coupling-vhm.py coupling-vhm-moving.py
cp run.sh run2.sh
evince diplom.pdf
evince Latex-Briefvorlage2.pdf &
latexmk -pdf Latex-Briefvorlage2.tex
leafpad Latex-Briefvorlage2.tex
evince Latex-Briefvorlage2.pdf
cp Latex-Briefvorlage.tex Latex-Briefvorlage2.tex
git mv plots/*.ps .
ls plots/
git mv plots/*.pdf .
git mv plots/*.png .
ls tables/
rm -rf content/
ls content/
rm -rf sections/
git rm sections/
git mv sections/*.tex .
rm main.*
git rm main.tex
rm main.fls
rm main.fs
rm main.aux
9.661e-8-8.668e-8
pyhon
git push --set-upstream origin publications
leafpad ./doc/conf.doxy.in
leafpad ..doc/conf.doxy.in
git add publications.md
cp cmake-options.md publications.md
git checkout -b publications
git push --set-upstream origin funding


git checkout -b funding
python coupling-approach-2-direchlet.py  Quartic FDM
python coupling-vhm.py Quartic
evince coupling-linear-quartic-approach-2-1.pdf
python coupling-approach-2.py Linear-quartic
evince coupling-linear-cubic-approach-2-1.pdf
python coupling-approach-2.py Linear-cubic FDM
rm coupling-linear-cubic-approach-2-1.pdf
python coupling-approach-2-convergence.py Linear-cubic FDM 16
python coupling-approach-1-convergence.py Linear-cubic FDM 16
evince coupling-linear-cubic-vhm-convergence-fdm-16.pdf
python coupling-vhm-convergence-fdm.py Linear-cubic 16
evince coupling-linear-cubic-vhm-convergence-fdm-8.pdf
python coupling-vhm-convergence-fdm.py Linear-cubic 8
python coupling-approach-1.py Linear-cubic FDM
python coupling-vhm.py Linear-cubic FDM
evince coupling-linear-cubic-approach-1.pdf
evince coupling-linear-cubic-vhm.pdf
pythob
python coupling-vhm.py Linear-cubic
python plot-plate-hard.py 0.2 8 27
~/git/NLMech2/build/bin/NLMech -i input_fine_2.yml --hpx::threads=20
vim input_fine_2.yml
rm out_fine/*.vtu
git push origin master
git merge --no-ff docu
git checkout docu
git branch -d docu
git push --set-upstream origin docu
git branch -m dcu docu
git push --set-upstream origin dcu
leafpad ../doc/conf.doxy.in
git add *.md
git add *,d
vim program-options.md
cp cmake-options.md program-options.md
vim install-instructions.md
vim cmake-options.md
touch cmake-options.md
mkdir content
leafpad doc/conf.doxy.in
git checkout -b dcu
python plot-plate-hard.py 0.2 8 23
~/git/NLMech2/build/bin/mesh -i input_mesh_fine_2.yaml -d 2
vim input_mesh_fine_2.yaml
cd out_fine/
cd Simulations/PUM/New_Results_Mode_1_crack/2mm/inp/
cd git/paperPUMPD/stationary_crack/
tar -xvf 2102.00223
ls template.*
leafpad ieee.tex
texmaker bare_jrnl.tex &
tar -xvf 2010.04106
latexmk bare_jrnl.tex
git push --set-upstream origin info
git commti 0a
git checkout -b info
git checkout -n info
~/git/NLMech2/build/bin/NLMech -i input_mesh_fine_2.yaml --hpx::threads=20
rm -rf out_fine/*.vtu
~/git/NLMech2/build/bin/NLMech -i input.yml --hpx::threads=20
git checkout plain
git brnach
python plot-plate-hard.py 0.2 8 14
python plot-plate-hard.py 0.2 8 20
mkdir out_fine
tar -xvf modeI.tar.bz2
cp ~/Downloads/modeI.tar.bz2 .
ssh-add ~/.ssh/id_rsa_lm2
tar -xvf bar.tar.bz2
cp ~/Downloads/bar.tar.bz2 .
scp rostam:"/work/diehlpk/PUM/bar/out_top_bottom_const-12/output_200.vtu" .
cd out_top_bottom_const-12/
scp rostam:"/work/diehlpk/PUM/bar/out_top_bottom_const-8/output_200.vtu" .
cd out_top_bottom_const-8/
scp rostam:"/work/diehlpk/PUM/bar/out_top_bottom_const-4/output_200.vtu" .
scp rostam:"/work/diehlpk/PUM/bar/out_top_bottom_const-4/output_200.vtu" . &
cd out_top_bottom_const-4/
python coupling-approach-1-convergence.py Quartic FDM 32
python coupling-vhm-convergence-fdm.py Quartic 64
python coupling-vhm-convergence-fdm.py Quartic 32
python coupling-vhm-convergence-fdm.py Quartic 16
python coupling-vhm-convergence.py Quartic 8
python coupling-approach-2-convergence.py Quartic FDM 64
python coupling-approach-2-convergence.py Quartic FDM 32
python coupling-approach-2-convergence.py Quartic FDM 16
python coupling-approach-1-convergence.py Quartic FDM 64
python coupling-approach-1-convergence.py Quartic FDM 16
git add input_const_top_bottom-12.yaml
vim input_const_top_bottom-12.yaml
git add input_const_top_bottom-8.yaml
vim input_const_top_bottom-8.yaml
vim input_const_top_bottom-4.yaml
vim input_const_top_bottom.yaml
cp input_const_top_bottom.yaml input_const_top_bottom-10.yaml
git rm input_const_top_bottom-fine.yaml
git rm input_const_top_bottom-fine-2.yaml
git rm input_mesh_fine.yaml
git rm input_mesh_fine-2.yaml
cd git/paperPUMPD/bar/
evince list.pdf
python coupling-vhm-convergence-fdm.py Quartic FDM 8
python coupling-vhm-convergence.py Quartic FDM 8
python coupling-vhm-convergence-fdm-dirchlet.py Quartic 64
python coupling-vhm-convergence-fdm-dirchlet.py Quartic 16
python coupling-vhm-convergence-fdm-dirchlet.py Quartic 32
python coupling-approach-2-convergence-dirchlet.py Quartic FDM 64
python coupling-approach-2-convergence-dirchlet.py Quartic FDM 32
python coupling-approach-2-convergence-dirchlet.py Quartic FDM 16
python coupling-approach-2-convergence-direchlet.py Quartic FDM 8
python coupling-approach-2-convergence=direchlet.py Quartic FDM 8
python coupling-approach-1-direchlet.py Quartic FDM 8
python coupling-approach-1-dirchlet.py Quartic FDM 8
python coupling-approach-2-direchlet.py Quartic FDM 64
python coupling-approach-1-direchlet.py Quartic FDM 64
python coupling-approach-2-dirchlet.py Quartic FDM 64
python coupling-approach-1-convergence-dirchlet.py Quartic FDM 64
python coupling-approach-1-convergence-dirchlet.py Quartic FDM 32
python coupling-approach-1-convergence-dirchlet.py Quartic FDM 16
python coupling-vhm.py Quartic FDM 8
python coupling-approach-1-convergence.py Quartic 8 FDM
python coupling-approach-1-convergence.py Quartic 8
python coupling-approach-1.py Quartic 8
python coupling-approach-2.py Quartic FDM 8
python coupling-approach-3-convergence.py Quartic FDM 8
cd ==
CD --
cd Notes/
cd Coupling_FE/
python coupling-approach-2.py Quartic 8
python coupling-vhm-convergence=fdm.py Quartic FDM 8
evince coupling-quartic-vhm-convergence-fdm-dirchlet-8.pdf &
evince coupling-quartic-vhm-direchlet.pdf &
evince coupling-quadratic-vhm-direchlet.pdf &
python coupling-vhm-dirchlet.py Quartic
python coupling-vhm-dirchlet.py Quartic 8
python coupling-vhm-direchlet.py Quartic 8
evince coupling-quartic-vhm-convergence-fdm-dirchlet-8.pdf
evince coupling-cubic-all-direchlet.pdf &
evince coupling-cubic-all-direchlet.pdf
evince coupling-all.py
python coupling-approach-1-convergence-dirchlet.py Quartic 8 FDM
python coupling-approach-1-convergence-direchlet.py Quartic 8 FDM
python coupling-approach-1-direchlet.py Quartic 8
python coupling-vhm.py Cubic FDM
python coupling-approach-2.py Cubic FDM
python coupling-approach-1.py Cubic FDM
code coupling-all.py
git add coupling-all.py
cp coupling-all-direchlet.py coupling-all.py
git mv coupling-all.py coupling-all-direchlet.py
git rebase origin/update
git rebase update
module avail
nvcc
git checkout update_cuda
cd hpxcl/
git clone git@github.com:STEllAR-GROUP/hpxcl.git
dnf clean all
python coupling-vhm-direchlet.py Cubic
python coupling-approach-2-direchlet.py Cubic
python coupling-all.py
ls *.csv
python coupling-approach-1-direchlet.py Cubic
python coupling-approach-1-direchlet.py Quartic
cd Pictures/
libreoffice pd2.csv
python coupling-approach-1.py Quartic FDM 8
python coupling-approach-2-direchlet.py Quartic
cp coupling-approach-2.py coupling-all.py
audacity
sudo dnf install kwave
dnf search kwave
git add orcid.pdf
cp ~/Downloads/orcid.pdf .
evince coupling-quartic-approach-1-convergence-fdm-direchlet-128.pdf
python coupling-approach-1-convergence-dirchlet.py Quartic FDM 128
evince coupling-quartic-approach-2-convergence-fdm-direchlet-128.pdf
python coupling-approach-2-convergence-dirchlet.py Quartic FDM 128
evince coupling-quartic-vhm-convergence-fdm-dirchlet-128.pdf
python coupling-vhm-convergence-fdm-dirchlet.py Quartic 128
evince coupling-quartic-vhm-convergence-fdm-dirchlet-64.pdf
evince coupling-quartic-vhm-convergence-fdm-dirchlet-65.pdf
evince coupling-quartic-vhm-convergence-fdm-dirchlet-32.pdf
evince coupling-quartic-approach-2-convergence-fdm-direchlet-32.pdf
evince coupling-quartic-approach-2-convergence-fdm-direchlet-8.pdf
python coupling-approach-2-convergence-dirchlet.py
evince coupling-quartic-approach-1-direchlet.pdf
evince coupling-quartic-approach-1.pdf
dnf search kernel-devel
uname -r
cat /proc/version
dnf search libxslt
dnf search xsltproc
dnf search libpng
git push --set-upstream origin plain
~/git/NLMech2/build/bin/NLMech -i input_const_top_bottom.yaml --hpx::threads=20
git checkout -b plain
rm out_top_bottom_const-new/*.vtu
make -j 40
git add ../src/material/pd/rnpBond.cpp
git pll
python bondbased2D-plate-hard.py 0.5 4 0
cat /tmp/cuda-installer.log
./cuda_11.2.2_460.32.03_linux.run --toolkit --silent
./cuda_11.2.2_460.32.03_linux.run --toolkit --accept-license
./NVIDIA-Linux-x86_64-460.32.03.run -A | grep driver
./NVIDIA-Linux-x86_64-460.32.03.run -A
./NVIDIA-Linux-x86_64-460.32.03.run --help
cd nvidia_installers/
./cuda_11.2.2_460.32.03_linux.run --toolkit --noprompt
./cuda_11.2.2_460.32.03_linux.run --toolkit
./cuda_11.2.2_460.32.03_linux.run --help
./NVIDIA-Linux-x86_64-460.32.03.run
./cuda_11.2.2_460.32.03_linux.run --extract=/home/diehlpk/Downloads/nvidia_installers/
./cuda_11.2.2_460.32.03_linux.run -help
./cuda_11.2.2_460.32.03_linux.run
./cuda_11.2.2_460.32.03_linux.run -extract-only=/home/diehlpk/Downloads/nvidia_installers/
./cuda_11.2.2_460.32.03_linux.run --extract-only
./cuda_11.2.2_460.32.03_linux.run - tar mxvf
./cuda_11.2.2_460.32.03_linux.run -extract=/home/diehlpk/Downloads/nvidia_installers/
./cuda_11.2.2_460.32.03_linux.run -extract=nvidia_installers/
./cuda_11.2.2_460.32.03_linux.run -extract=`pwd`/nvidia_installers
mkdir nvidia_installers
git push --set-upstream origin fix_nu
chmod a+x cuda_11.2.2_460.32.03_linux.run
wget wget https://developer.download.nvidia.com/compute/cuda/11.2.2/local_installers/cuda_11.2.2_460.32.03_linux.run
git checkout -b fix_nu
cuda
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ ..
texcount -inc -total CsMag_template.tex
pdftotext CsMag_template.pdf - | wc -w
cd 2mm
cd New_Results_Mode_1_crack
find -name "*.tex" -exec aspell check -l En_us "{}" ";"
mkdir out_top_bottom_const-long/
scp X.0.silo.tar.gz summit.olcf.ornl.gov:/gpfs/alpine/cph102/proj-shared/diehl/ieee_cluster/blast_gpu/Blast_restart
tar -xvf X.0.silo.tar.gz
cd ~/git/documents/papers/CiSE/
python plot-plate-hard.py 0.2 4 6
python plot-plate-hard.py 0.2 4 23
python plot-plate-hard.py 0.2 4 15
python plot-plate-hard.py 0.2 4 14
python plot-plate-hard.py 0.2 4 16
python plot-plate-hard.py 0.2 4 13
python plot-plate-hard.py 0.2 4 12
python plot-plate-hard.py 0.2 4 11
python plot-plate-hard.py 0.2 4 7
python plot-plate-hard.py 0.2 4 8
python coupling-approach-1.py Quartic
dig TXT +short o-o.myaddr.l.google.com @ns1.google.com
ssh -X pdiehl@login1.ookami.stonybrook.edu
dig TXT +short o-o.myaddr.l.google.com @ns1.google.com | awk -F'"' '{ print $2}'
dig +short myip.opendns.com @resolver1.opendns.com
host myip.opendns.com resolver1.opendns.com
evince bond-based-2d-plate-0.2-4-7-u-y-rotated-hard.pdf
evince bond-based-2d-plate-0.2-4-8-u-y-rotated-hard.pdf
evince bond-based-2d-plate-0.2-4-9-u-y-rotated-hard.pdf
evince bond-based-2d-plate-0.2-4-12-u-y-rotated-hard.pdf
evince bond-based-2d-plate-0.2-4-11-u-y-rotated-hard.pdf
evince bond-based-2d-plate-0.2-4-10-u-y-rotated-hard.pdf
evince bond-based-2d-plate-0.2-4-6-u-y-rotated-hard.pdf
python plot-plate-hard.py 0.2 4 10
python plot-plate-hard.py 0.2 4 9
evince bond-based-2d-plate-0.2-4-5-u-y-rotated-hard.pdf
python plot-plate-hard.py 0.2 4 5
ls *rotated*.pdf
python plot-plate-hard.py 0.2 4 0
mv ../*.pdf .
cd old/
cd cv
cat publications.bib | grep @Misc | wc -l
cat publications.bib | grep @Misc
cat publications.bib | grep @misc
cat publications.bib | grep talk
cat publications.bib
mae
pdftotext CsMag_template.pdf | wc -w
cat CsMag_template.txt | wc -w
cat CsMag_template.txt | wc
cat CsMag_template.txt
ls CsMag_template.txt
pdftotext -layout  CsMag_template.pdf
pdftotext CsMag_template.pdf
pdftotext CsMag_template.pdf- | wc -w



find -name "*.tex" -exec grep -Hn Clayton:2007ve "{}" ";"
find -name "*.tex" -exec grep -n file Clayton:2007ve "{}" ";"
find -name "*.tex" -exec grep -n Clayton:2007ve "{}" ";"
find -name "*.tex" -exec grep Clayton:2007ve "{}" ";"
find -name "*.tex" -exec grep "{}"  Clayton:2007ve ";"
find -name "*.tex" -exec "{}" grep Clayton:2007ve ";"
find -name "*.tex" -exec grep Clayton:2007ve
find -name "*.tex" =exec grep Clayton:2007ve
cd git/gateways2020/
git add coupling-approach-2-convergence-dirchlet.py
cp coupling-approach-2-convergence.py coupling-approach-2-convergence-dirchlet.py
python coupling-vhm-convergence-fdm-dirchlet.py Quartic FDM 8
git add coupling-vhm-convergence-fdm-dirchlet.py
cp coupling-vhm-convergence-fdm.py coupling-vhm-convergence-fdm-dirchlet.py
evince coupling-quartic-approach-1-convergence-fdm-direchlet-16.pdf
evince coupling-quartic-approach-1-convergence-fdm-direchlet8.pdf
git add coupling-approach-1-convergence-dirchlet.py
cp coupling-approach-1-convergence.py coupling-approach-1-convergence-dirchlet.py
curl 52.47.209.216:22
cp output.nls article.nls
cp output.bbl article.bbl
corsix-th
sudo luarocks install  luafilesystem
luarocks install --local luafilesystem
sudo dnf install lua-devel
sudo dnf search lua-devel
sudo dnf search lua
sudo dnf dearch lua
sudo dnf lua
luarocks install luafilesystem
sudo dnf install luarocks
dnf search luarocks
dnf search luafilesystem
sudo dnf install corsix-th
dnf install corsix-th
dnf search corsix-th
dnf search cor-sixth
dnf search corsixth
dnf search CorsixTH
dnf search wideland
python plot-plate-hard.py 1 4 0
evince coupling-quartic-approach-1-convergence-fdm-64.pdf &
evince coupling-quartic-approach-1-convergence-fdm-16.pdf &
evince coupling-quartic-approach-1-convergence-fdm-8.pdf &
evince coupling-quartic-approach-1-convergence-fdm-8.pdf
evince coupling-quartic-approach-1-convergence-fdm-1.pdf
evince coupling-quartic-approach-1-convergence-fdm-1.pdf &
python coupling-approach-1-convergence.py Quartic FDM 1
python coupling-approach-1-convergence.py Quartic FDM 2
evince coupling-quartic-approach-1-convergence-fdm-2.pdf &
evince coupling-quartic-approach-1-convergence-exact-2.pdf &
python coupling-approach-1-convergence.py Quartic Exact 2
pyth coupling-approach-1-convergence.py Quartic Exact 2
ParallelComputationMath
vim ../webpage/index.md
we webpage/
ssh -o ProxyJump=pdiehl@bounce.cct.lsu.edu:2525 pdiehl@vault
ssh pdiehl@vault.cct.lsu.edu
ssh pdiehl@bounce.cct.lsu.edu:2525
ssh-add key
texmaker poster.tex &
cd poster/
cd courses/ParallelComputationMath
ssh pdiehl@login.ookami.stonybrook.edu
pass insert stony
pwgen -n 15 -s
python coupling-approach-2-convergence.py Quartic FDM
python coupling-approach-2-convergence.py Quartic Exact
python coupling-approach-1-convergence.py Quartic Exact
python coupling-approach-1-convergence.py Quartic FDM
python coupling-approach-2-convergence.py Linear Exact
evince coupling-quartic-approach-2-convergence-exact.pdf &
evince coupling-linear-approach-2-convergence-exact.pdf &
evince coupling-quartic-approach-2-convergence-exact.pdf *
evince coupling-quartic-approach-2-convergence-exact.pdf
evince coupling-linear-approach-2-1.pdf
evince coupling-linear-approach-2-convergence-exact.pdf
git add coupling-approach-2-convergence.py
cp coupling-approach-2.py coupling-approach-2-convergence.py
git rebase error-missing-mesh
git checkout rc0.1.0
rm mesh.vtu
git checkout error-missing-mesh
texmaker grants.tex
cd grants/
cd CiSE/
git mv IDPDS20/ CiSE
cd IDPDS20/
cd git/documents/papers/
vim ../bar/input_const_top_bottom.yaml
Hi, 

I updated the title. 

I will submit it by tomorrow. 

Thanks,

Patrick
make tests
cd hpx-1.4.1/
git commit -s
cd Compile/hpx-1.5.0/
git push --set-upstream origin error-missing-mesh

git checkout -b error-missing-mesh
cd stationary_crack/
cd plate/
scp ~/Downloads/Blast_restart.zip summit.olcf.ornl.gov:
python coupling-vhm-convergence-fdm.py Quartic
evince coupling-quartic-vhm-convergence-fdm.pdf &
evince coupling-quartic-vhm-convergence-exact.pdf &
python coupling-vhm-convergence-exact.py Quartic
python coupling-vhm-convergence.py Quartic
evince coupling-cubic-vhm-convergence-fdm.pdf &
python coupling-vhm-convergence-fdm.py Cubic
evince coupling-quadratic-vhm-convergence-fdm.pdf &
python coupling-vhm-convergence-fdm.py Quadratic
python coupling-vhm-convergence-fdm.py Linear
evince coupling-linear-vhm-convergence-fdm.pdf &
evince coupling-vhm-convergence-fdm.py Linear
git commit -m "Correct code for all cases for approach 1 m-convergence" coupling-approach-1-convergence.py
evince coupling-cubic-approach-1-convergence-fdm.pdf &
python coupling-approach-1-convergence.py Cubic FDM
evince coupling-quartic-approach-1-convergence-fdm.pdf &
python coupling-approach-1-convergence.py Quartic
evince coupling-quartic-approach-1-convergence-exact.pdf &
evince coupling-cubic-approach-1-convergence-exact.pdf &
python coupling-approach-1-convergence.py Cubic
python coupling-approach-1-convergence.py Quadratic
evince coupling-linear-approach-1-convergence-exact.pdf &
evince coupling-quadratic-approach-1-convergence-exact.pdf &
python coupling-approach-1-convergence.py Linear
git commit -m "Correct code for linear case for approach 1 m-convergence" coupling-approach-1-convergence.py
git commit -m "Correct code for linear case for approach 1 m-convergence"
evince coupling-linear-vhm-convergence-exact.pdf
evince coupling-quartic-vhm-convergence-exact.pdf
python coupling-vhm-convergence-fdm.py Qurtic
evince coupling-quadratic-vhm-convergence-exact.pdf
evince coupling-quartic-vhm-convergence-fdm.pdf
git add coupling-approach-1-convergence.py
cp coupling-approach-1.py coupling-approach-1-convergence.py
libreoffice v1309-summit.ods
ls *.ods
cp ./bondbased2D-plate-hard.py ..
python coupling-vhm-convergence-fhm.py Quartic
evince coupling-cubic-vhm-convergence-exact.pdf
python coupling-vhm-convergence.py Cubic
evince coupling-cubic-vhm-exact.pdf
evince coupling-quartic-vhm-exact.pdf
evince bond-based-2d-plate-1.0-4-1-displacement-hard.npy
python coupling-approach-2.py Cubic
python coupling-approach-2.py Quartic
python coupling-vhm.py Quartic  FDM
python coupling-vhm.py Cubic  FDM
evince coupling-cubic-vhm-convergence-fdm.pdf
evince coupling-cubic-vhm.pdf
python coupling-vhm-convergence.py Linear
python coupling-vhm-convergence.py Quadratic
python bondbased2D-plate-hard.py 0.2 4 1
evince bond-based-2d-plate-0.2-4-2-u-y-rotated-hard.pdf
evince bond-based-2d-plate-0.2-8-2-u-y-rotated-hard.pdf
ls *rot*
ls *rotaded*
ls *rotaed*
ls *roated*
python bondbased2D-plate-hard.py 1 4 1
evince coupling-cubic-vhm-direchlet.pdf &
python coupling-vhm-direchlet.py Quadratic  FDM
evince coupling-quartic-
evince coupling-quartic-vhm.pdf &
python coupling-vhm.py Quartic  Exact
evince coupling-quartic-vhm-exact.pdf &
display Prashant.png
display patrick\ diehl.png
git add Prashant.png
git rm prashant\ jha.png
git remove prashant\ jha.png
cp ~/Downloads/Prashant.png .
cd pics/
cd git/hpx.wiki/
evince coupling-quartic-approach-2-1-direchlet.pdf &
evince coupling-cubic-approach-2-1-direchlet.pdf &
python coupling-approach-2-direchlet.py Quadratic
evince coupling-quadratic-approach-2-1-direchlet.pdf &
evince coupling-quadratic-approach-2-1-direchlet.pdf
python coupling-approach-2.py Quadratic
python coupling-approach-2.py Linear
rm plot-plate.py
cp plot-plate.py plot-plate-hard.py hard/
evince coupling-cubic-vhm.pdf &
python coupling-vhm.py Cubic  Exact
evince coupling-linear-vhm.pdf &
python coupling-vhm.py Linear  Exact
make -j 23
vim tools/browser/browser.c
cd silo-4.10.2/
cd Compile/silo/
evince coupling-quadratic-approach-2-1.pdf &
evince coupling-cubic-approach-2-1.pdf &
evince coupling-quadr-approach-2-1.pdf &
evince coupling-linear-approach-2-1.pdf &
evince coupling-quadratic-approach-1.pdf &
evince coupling-cubic-approach-1.pdf &
python coupling-approach-1.py Cubic
python coupling-approach-1.py Quadratic
python coupling-approach-1.py Linear
evince bond-based-2d-plate-0.2-4-2-d-rotated-hard.pdf
discord &
cp  bond-based-2d-plate-u-y-0.2-4-2-hard.pdf ~/Desktop/
evince bond-based-2d-plate-u-y-1.0-4-2-hard.pdf &
evince bond-based-2d-plate-u-y-1.0-4-1-hard.pdf &
evince bond-based-2d-plate-d-1.0-4-1-hard.pdf &
evince bond-based-2d-plate-d-1.0-4-2-hard.pdf &
evince bond-based-2d-plate-d--1.0-4-2-hard.pdf &
evince bond-based-2d-plate-u-y-1.0-4-3-hard.pdf &
ls bond-based-2d-plate-u-y-0.2-4-*-hard.pdf &
evince bond-based-2d-plate-u-y-0.2-4-3-hard.pdf &
evince bond-based-2d-plate-u-y-0.2-4-2-hard.pdf &
git add 2021-03-18-cairo-talks.md
cp 2021-01-19-word-count-latex.md 2021-03-18-cairo-talks.md
vim blast.ini
ls -lah bond-based-2d-plate-u-y-0.2-4-2-hard.pdf
sudo shutdown -P 1:00
sudo shutdown -P 24:00
python bondbased2D-plate-hard.py 1 8 1
evince bond-based-2d-plate-u-y-1.0-8-2-hard.pdf &
evince bond-based-2d-plate-u-y-0.2-8-2-hard.pdf &
ls *rotated*hard*
ls *rotated*
ls *rotated
ls *rotaed
ls *roated
ls *roated*hard
python plot-plate.py 0.2 8 2
cp plot-plate.py plot-plate-hard.py
evince bond-based-2d-plate-d-0.2-8-2-hard.pdf &
evince bond-based-2d-plate-d-1.0-8-2-hard.pdf &
git commit -m "Clean the soft loading" bondbased2D-plate-soft.py
git commti -m "Clean the soft loading"
evince bond-based-2d-plate-u-y-1.0-10-2-hard.pdf &
python bondbased2D-plate-hard.py 1 10 1
evince bond-based-2d-plate-d-0.2-4-2-hard.pdf &
python bondbased2D-plate-hard.py 0.5 4 1
evince bond-based-2d-plate-u-y-0.5-4-2-hard.pdf &
evince bond-based-2d-plate-d-0.5-4-2-hard.pdf &
evince bond-based-2d-plate-d--0.2-4-2-hard.pdf &
evince bond-based-2d-plate-u-y-0.5-4-2-hard.pdf
evince bond-based-2d-plate-d-0.5-4-2-hard.pdf
evince bond-based-2d-plate-u-y-1.0-4-2-hard.pdf
evince bond-based-2d-plate-d-1.0-4-2-hard.pdf
evince bond-based-2d-plate-d-1-4-2-hard.pdf
pwgen -n 15 -s -y
evince bond-based-2d-plate-u-x-1.0-4-2-hard.pdf &
scp rostam:"/work/diehlpk/PUM/bar/out_top_bottom_const-fine/output_34.vtu" .
rm -rf *.vtu
cd out_top_bottom_const-fine/
vim tools/compare/compare.cpp
git add panel.md
cp program.md panel.md
evince coupling-quart-approach-2-1.pdf &
python coupling-vhm.py Quartic Exact
python coupling-vhm.py Cubic Exact
python coupling-vhm.py Linear Exact
python coupling-vhm.py Linear
python coupling-vhm.py Quadratic
python coupling-vhm.py Cubic
evince coupling-quarti-vhm.pdf
evince coupling-quadratic-vhm.pdf
evince coupling-quad-approach-1.pdf &
evince coupling-linear-approach-1.pdf
python coupling-approach-1-direchlet.py Quadratic
evince coupling-cubic-approach-2-1-direchlet.pdf
python coupling-vhm-direchlet.py Quadratic
evince coupling-cubic-approach-1-direchlet.pdf &
evince coupling-cubic-approach-2-direchlet.pdf &
evince coupling-cubic-approach-2-direchlet.pdf
evince coupling-quartic-vhm-direchlet.pdf
evince coupling-cubic-vhm-direchlet.pdf
evince coupling-quadratic-vhm-direchlet.pdf
git add coupling-vhm-direchlet.py
cp coupling-vhm.py coupling-vhm-direchlet.py
evince coupling-quadratic-approach-1-direchlet.pdf &
evince coupling-quadratic-approach-1-direchlet.pdf
evince coupling-quadra-approach-1-direchlet.pdf
evince coupling-cubic-approach-1-direchlet.pdf
evince coupling-quadratic-approach-2-direchlet.pdf &
git add coupling-approach-1-direchlet.py
cp coupling-approach-1.py coupling-approach-1-direchlet.py
libreoffice pd2.csv &
libreoffice pd.ods &
git add coupling-approach-2-direchlet.py
cp coupling-approach-2.py coupling-approach-2-direchlet.py
rm coupling-approach-1-old.py
rm coupling-approach-1-martha.py
cd  ..
evince coupling-quadratic-vhm-convergence-exact.pdf &
evince coupling-quadratic-vhm-convergence.pdf &
evince coupling-cibic-approach-2-1.pdf &
touch ieee.tex
~/git/NLMech2/build/bin/NLMech -i input_const_top_bottom-12.yaml --hpx::threads=20
mkdir out_top_bottom_const-12/
cp input_const_top_bottom-8.yaml input_const_top_bottom-12.yaml
leafpad input_const_top_bottom-fine.yaml &
leafpad input_const_top_bottom.yaml &
leafpad input_const_top_bottom.yaml
leafpad input_const_load_top-bottom.yaml
leafpad input_linear_load_top-bottom.yaml
vim mesh.vtu
cd ../paperCouplingAnalysis/
~/git/NLMech2/build/bin/NLMech -i input_const_top_bottom-8.yaml --hpx::threads=20
mkdir out_top_bottom_const-8/
cp input_const_top_bottom-4.yaml input_const_top_bottom-8.yaml
rm input_const_top_bottom-2-5.yaml
rm -rf out_top_bottom_const-2-5/
rm -rf out_top_bottom_const/
mv pum_balken_8_200_u.png pd_balken_8_200_u.png
mv pum_balken_8_200_damage.png pd_balken_8_200_damage.png
cd out_top_bottom_const-new/
vim input_const_top_bottom-2-5.yaml
~/git/NLMech2/build/bin/NLMech -i input_const_top_bottom-4.yaml --hpx::threads=20
git mv input_const_top_bottom-2.yaml input_const_top_bottom-4.yaml
mkdir out_top_bottom_const-4/
rm -rf out_top_bottom_const-2/
vim input_const_top_bottom-2.yaml
raj gay bbt
~/git/NLMech2/build/bin/NLMech -i input_const_top_bottom-2.yaml --hpx::threads=20
mkdir out_top_bottom_const-new/
python bondbased2D-plate-hard.py 5 4 1
cp bondbased2D-plate-soft.py bondbased2D-plate-hard.py
vim ~/Downloads/letter.txt
evince coupling-quarti-approach-2-1.pdf &
evince coupling-auqrtic-approach-2-1.pdf &
git rebase -i HEAD~4
git rebase HEAD~4
git history
evince coupling-quadratic-approach-2-1.pdf
python coupling-approach-2.py
git add coupling-approach-2.py
git add coupling-vhm-convergence-fdm.py
cp coupling-vhm-convergence.py coupling-vhm-convergence-fdm.py
evince coupling-quartic-vhm-convergence.pdf &
evince coupling-linear-vhm-convergence.pdf &
evince coupling-linear-vhm-convergence.pdf
python coupling-vhm-convergence.py
git add coupling-vhm-convergence.py
cp coupling-vhm.py coupling-vhm-convergence.py
git mv coupling.py coupling-vhm.py
python coupling.py Quartic
python coupling.py Linear
python coupling.py Cubic
python coupling.py Quadratic
python coupling.py LICENSE
evince coupling-linear-vhm.pdf
cd bar/
libreoffice pd2.ods &
scp rostam:"/work/diehlpk/PUM/bar/out_top_bottom_const-fine/output*200.vtu" .
cd out_top_bottom_const-fine
cp coupling-approach-1.py coupling-approach-2.py
evince coupling-qu-approach-1.pdf &
python coupling-approach-1.py LICENSE
evince coupling-quadratic-approach-1.pdf
evince coupling-linear.pdf &
evince coupling-linear.pdf
evince coupling-cubic.pdf
evince coupling-quartic.pdf &
evince coupling-quadratic.pdf &
evince coupling-quadratic.pdf
python coupling-approach.py Linear
cp coupling-approach-1-old.py coupling-approach-1.py
python coupling-approach-1-old.py Quadratic
python coupling-approach-1-old.py Linear
python coupling-approach-1-old.py
EXIT
unzip Recording_and_audio_bumpers.zip
scp rostam:"work/diehlpk/PUM/bar/out_top_bottom_const-fine/output*200.vtu" .
mkdir out_top_bottom_const-fine
dnf search fifengine
sudo dnf install fifechan.x86_64
dnf search fifechan
vim _posts/2020-07-01-season3-epsiode-7.markdown
cd FLOSSforScience.github.io/
cp coupling-approach-1.py coupling-approach-1-old.py
git add input_const_top_bottom-fine-2.yaml
vim input_const_top_bottom-fine-2.yaml
cp input_const_top_bottom-fine.yaml input_const_top_bottom-fine-2.yaml
git add input_mesh_fine-2.yaml
vim input_mesh_fine-2.yaml
~/git/NLMech2/build/bin/mesh -i input_mesh_fine-2.yaml -d 2
cp input_mesh_fine.yaml input_mesh_fine-2.yaml
git mv input_const_top_bottom-3.yaml input_const_top_bottom-2.yaml
vim input_const_top_bottom-3.yaml
git add input_const_top_bottom-2-5.yaml
git add input_const_top_bottom-fine.yaml
vim input_const_top_bottom-fine.yaml
cp input_const_top_bottom.yaml input_const_top_bottom-fine.yaml
co input_const_top_bottom.yaml input_const_top_bottom-fine.yaml
git add input_mesh_fine.yaml
cp input_mesh.yaml input_mesh_fine.yaml
python coupling-approach-1-martha.py Linear
cp coupling-approach-1.py coupling-approach-1-martha.py
git add coupling-approach-1.py
evince coupling-cubic.pdf &
python coupling-approach-1.py Qudratic
vim ../../cv/index.md
python coupling-approach-1.py Lineae
libreoffice pd3.csv &
python coupling-approach-1.py Linea
libreoffice pd.csv &
cp coupling.py coupling-approach-1.py
git rm footer.md
vim footer.md
git add footer.md
touch footer.md
touch committee.md
touch program.md
wget https://raw.githubusercontent.com/pages-themes/minimal/master/index.md
git clone git@github.com:AMTE2020/AMTE2020.github.io.git
cd out_top_bottom_const
cd paperPUMPD/
libreoffice pd.csv
code &
pdflatex survey-10.tex
leafpad survey-10.tex
cp survey.tex survey-10.tex
pdflatex survey-9.tex
leafpad survey-9.tex
cp survey.tex survey-9.tex
pdflatex survey-8.tex
leafpad survey-8.tex
cp survey.tex survey-8.tex
pdflatex survey-7.tex
leafpad survey-7.tex
cp survey.tex survey-7.tex
pdflatex survey-6.tex
leafpad survey-6.tex
cp survey.tex survey-6.tex
pdflatex survey-5.tex
leafpad survey-5.tex
cp survey.tex survey-5.tex
pdflatex survey-4.tex
leafpad survey-4.tex
cp survey.tex survey-4.tex
pdflatex survey-3.tex
leafpad survey-3.tex
cp survey.tex survey-3.tex
evince survey-2.pdf
pdflatex survey-2.tex
leafpad survey-2.tex
cp survey.tex survey-2.tex
leafpad survey.tex
evince survey-1.pdf
pdflatex survey-1.tex
cp ../pgf-pie.sty .
dnf search pgf-pie
leafpad survey-1.tex
cp survey.tex survey-1.tex
mv survey.pdf 2020.pdf
pdflatex survey.tex
mv survey.pdf 2019.pdf
evince survey.pdf
touch survey.tex
cd Gateways/
mkdir Gateways
python plot-tensile.py 1.0 4 21
python plot-tensile.py 1.0 4 11
vim plot-tensile.py
python plot-tensile.py 0.2 4 2
python plot-tensile.py 0.2 4 11
ls new/
cp plot-plate.py ..
git add ../plot-plate.py
python plot-plate.py 0.2 4 18
rsync -azv rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10-3/*.npy" .
ls -lah *-d*.pdf
ls -lah *d*.pdf
ls -lah *d*-.pdf
ls -lah *-d*-.pdf
cp ../plot-plate.py .
cp plate-10-3/bondbased2D-plate.py bondbased2D-plate-soft.py
rsync -azv rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10-3/*.py" .
ls plate-10-3/*.py
git rm bondbased2D-plate.py
cat .git/refs/heads/main
ls .git/refs/heads/main
sudo dnf remove FlightGear
sudo dnf remove fligthgear
sudo dnf remove flightgear
sudo dnf remove widelands
unzip 767-300.zip
rm -rd A340-600
rm -rd A340-600.zip
rm -rf f18
rm -rf f18.zip
rm -rf F-15
rm -rf F-15.zip
unzip F-15.zip
unzip A340-600.zip
unzip f18.zip
libreoffice fd.csv &
vim Plugin/CMakeLists.txt
vim io/CMakeLists.txt
git add LAMMPSTemporalReader.xml
wget https://raw.githubusercontent.com/PeriVIS/PeriVIS/main/filter/io/LAMMPSTemporalReader/LAMMPSTemporalReader.xml
cd Plugin/
cd io/LAMMPSTemporalReader/
cmake -DParaView_DIR=/home/diehlpk/Compile/ParaView-v5.9.0/build/ .
touch CMakeLists.txt
git rm LAMMPSTemporalReader.xml
cat LAMMPSTemporalReader.xml
ls LAMMPSTemporalReader.xml
cd filter/
git checkout cmake-fixes
cd git/PeriVIS/
libreoffice 2019.csv
libre 2019.csv
libreoffice Using\ CxxExplorer\ Part\ 2_February\ 15,\ 2021_14.42.csv
libreoffice Using\ CxxExplorer_January\ 22,\ 2021_13.52.csv
unzip Using+CxxExplorer+Part+2_February+15,+2021_14.42.zip
unzip Using+CxxExplorer_January+22,+2021_13.52.zip
rsync -azv rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10-3/*.pdf" .
git branch -m master main
git fetch origin
git branch -u origin/main main
cd PowerTiger/
cd crowdsourcingcontent/
git checkout -b main
cd buildinfrastrcutre/
cd git/nonlocalheatequation/
find . -name "*.cxx" -exec leafpad "{}" ";"
find . -name "*.cpp" -exec leafpad "{}" ";"
find . -name "*.h" -exec leafpad "{}" ";"
find . -name ").h" -exec leafpad "{}" ";"
git push --set-upstream origin license
find . -name "CMakeLists.txt" -exec leafpad "{}" ";"
find . -name "CMakeLists.txt"
git checkout -b license
ls io/LAMMPSTemporalReader/Plugin/
ls io/LAMMPSTemporalReader/
vim io/LAMMPSTemporalReader/CMakeLists.txt
git push --set-upstream origin cmake-fixes
git mv LAMMPSTemporalReader.cxx LAMMPSTemporalReader.h  LAMMPSTemporalReader.xml Plugin/
cd LAMMPSTemporalReader/
cd io/
vim paraview.plugin
mkdir Plugin
cmake -DParaView_DIR=/home/diehlpk/Compile/ParaView-v5.9.0/build/
vim io/LAMMPSTemporalReader/CMakeLists.txt:6
find . -name "CMakeLists.txt" -exec sed -i 's/ADD_PARAVIEW_PLUGIN/PARAVIEW_ADD_PLUGIN/g' "{}" ";"
git checkout -b cmake-fixes
vim io/CleanBonds/CMakeLists.txt
cd ParaView-v5.9.0/
tar -xvf ParaView-v5.9.0.tar.gz
cp ~/Downloads/ParaView-v5.9.0.tar.gz .
cd ParaView-5.9.0-RC1-MPI-Linux-Python3.8-64bit/
rm -rf ParaView-5.9.0-RC1-MPI-Linux-Python3.8-64bit/
rm -rf ParaView-5.9.0-RC1-MPI-Linux-Python3.8-64bit.tar.gz
tar -xvf ParaView-5.9.0-RC1-MPI-Linux-Python3.8-64bit.tar.gz
cp ~/Downloads/ParaView-5.9.0-RC1-MPI-Linux-Python3.8-64bit.tar.gz .
cd PeriVIS/
git clone https://github.com/PeriVIS/PeriVIS.git
~/git/NLMech2/build/bin/NLMech -i input_const_top_bottom-2-5.yaml --hpx::threads=20
cp input_const_top_bottom.yaml input_const_top_bottom-2-5.yaml
mkdir out_top_bottom_const-2-5/
~/git/NLMech2/build/bin/NLMech -i input_const_top_bottom-3.yaml --hpx::threads=20
mkdir out_top_bottom_const-2/
rm -rf out_top_bottom_const-3/
git piush
git mv input_linear_top_bottom-3.yaml input_const_top_bottom-3.yaml
git add input_linear_top_bottom-3.yaml
git mv input_linear_top_bottom.yaml input_const_top_bottom.yaml
git add input_linear_top_bottom.yaml
~/git/NLMech2/build/bin/NLMech -i input_linear_top_bottom-3.yaml --hpx::threads=20
vim input_linear_top_bottom-3.yaml
unzip LaTeX_DL_468198.zip
~/git/NLMech2/build/bin/NLMech -i input_linear_top_bottom.yaml --hpx::threads=20
mkdir out_top_bottom_const-3/
cp input_linear_top_bottom.yaml input_linear_top_bottom-3.yaml
rm -rf build_debug/
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
mkdir out_top_bottom_const/
cp *.npy old-4e3/
cd git/AnalyticStiffnessPython/plate-10-3/
cd ~/Dropbox/
./dropboxd &
cd ~/.dropbox-dist/
cd Documents/Bewerbungen/lehigh/
xournalpp Cover_letter___Lehigh.pdf
rsync -azv rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10-4/*.pdf" .
cd plate-10-4/
cd ~/git/AnalyticStiffnessPython/plate-10-3/
cp ~/Downloads/Cover_letter___Lehigh.pdf .
wget https://www.diehlpk.de/assets/list.pdf
rm bewerbung_diehl.pdf
cd lehigh/
cp -r boulder/ lehigh
scp rostam:"/work/diehlpk/PUM/inclined/out3-crack-g-1.5/output*200.vtu" .
cd out-g-15/
mkdir out-g-15
scp rostam:"/work/diehlpk/PUM/inclined/out3-crack-g-2/output*200.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out3-crack-g-2/output200.vtu" .
cd out-g-2/
mkdir out-g-2
make -j 45
~/git/NLMech2/build/bin/NLMech -i input_const_load_top-bottom-g-2.0.yaml --hpx::threads=20
cd hpx-1.5.0/
vim input_const_load_top-bottom-g-2.0.yaml
mkdir out_top_bottom_const-g-2.0/
cp input_const_load_top-bottom.yaml input_const_load_top-bottom-g-2.0.yaml
cp input_const_load_top-bottom.yaml input_const_load_top-bottom-g-1.5.yaml
mkdir bar
git rm input_linear_load_all.yaml
git rm input_const_load_all.yaml
cd linear_decay/
git add input_const_load_top-bottom.yaml
dolphin
cd ~/plate-10-4/
scp rostam:"/work/diehlpk/PUM/inclined/out5-crack/output19*.vtu" .
cp output.bbl ieee.bbl
cp Downloads/
scp rostam:"/work/diehlpk/PUM/inclined/out5-crack/output*200.vtu" .
ssh rosatam
scp rostam:"/work/diehlpk/PUM/inclined/out5-crack/output*166.vtu" .
cd out_top_bottom_const_crack_fine-5/
mkdir out_top_bottom_const_crack_fine-5/
scp rostam:"/work/diehlpk/PUM/inclined/out3-crack/output*200.vtu" .
git add coupling.py
python coupling.py linear
scp rostam:"/home/diehlpk/Simulations/paperPUMPD/inclined/mesh_*5.vtu" .
scp rostam:"/home/diehlpk/Simulations/paperPUMPD/inclined/mesh*.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out3-crack/mesh*.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out3-crack/output_200.vtu" .
cd out_top_bottom_const_crack_fine-4/
mkdir out_top_bottom_const_crack_fine-4/
cd paperCoupling1D/
cd paperCoupling
cd /home/diehlpk/git/paperCouplingAnalysis
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_19*.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_200.vtu" .
evince bond-based-2d-plate-d-0.2-4-7.pdf
evince bond-based-2d-plate-u-y-0.2-4-7.pdf
python coupling.py
touch coupling.py
cp ../paperBCBBPD/requirements.txt .
cp ../paperBCBBPD/README.md .
git clone https://github.com/diehlpk/paperCouplingAnalysis.git
gcovr --exclude-directories=build --exclude-directories=data -r ..
git pulk
gcovr --exclude-directories=build --exclude-directories=data -r .
cmake -DCMAKE_BUILD_TYPE=Release -DEnable_Tools=ON -DCMAKE_CXX_FLAGS="-g -O0 -fprofile-arcs -ftest-coverage -fpic" ..
gcovr --exclude-directories=build  -r .
gcovr --exclude-directories=build  -r ..
gcovr --exclude-directories=build --exclude-directories=data -r ../
git add ../src/model/util.cpp
cat compare.txt
vim input_compare.yaml
git add input_compare.yaml
git add input.yaml restart.yaml
git adf input.yaml
cp ../../qsModel/1D/input_compare.yaml .
~/git/NLMech2/build/bin/NLMech -i restart.yaml --hpx::threads=1
vim restart.yaml
cp input.yaml restart.yaml
cp /home/diehlpk/git/paperPUMPD/plate/input_linear_top_bottom.yaml input.yaml
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON .
cmake .,
cp /home/diehlpk/git/paperPUMPD/stationary_crack/input_mesh.yaml .
mkdir restart
cd fdModel/
cd examples/
git rebase HEAD~3
git commit -0
rm out_top_bottom_linear-restart/*
ls out_top_bottom_linear-restart/
mkdir out_top_bottom_linear-restart/
ls out_top_bottom_linear/
rm out_top_bottom_linear/output_*
ls -lah out_top_bottom_linear/
rm output_3.vtu output_4.vtu output_5.vtu
cd out_top_bottom_linear/
rm output_3.vtu
cp output_3.vtu backup.vtu
ls out_top_bottom_linear/output_48.vtu
git checkout restart-bug
cd in
cd PUM/
mv *.vtu old/
cd out_top_bottom_const_crack_fine-2/
git checkout -b analyticstiffness
evince bond-based-2d-plate-u-y-0.2-4-6.pdf
podman run -it --rm -p 8022:8022 stevenrbrandt/clangw
podman pull stevenrbrandt/clangw
mkdir plate-10-4
vim 2019.csv
supertux2
sudo dnf update --best --allowerasing
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_149.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_148.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_147.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_146.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_145.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_144.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_143.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_142.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_141.vtu" .
zip series.zip *.pdf *.npy
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_14*.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_15*.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_150.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_100.vtu" .
rsync -azv rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10-3/*11*.npy" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_5*.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_5+.vtu" .
git add report.tex
cp /home/diehlpk/Documents/Konferenzen/Pannel/Sc20/report/report.tex .
ls slides/
texmaker report.tex &
cd report/
cd Sc20/
cd Documents/Konferenzen/Pannel/SC19/
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/output_55.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/out_55.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/out*50.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/out*60.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/out*100.vtu" .
git diff sections/scientific_application.tex
git diff sections/scientific_application.tex ~HEAD-1
diff sections/scientific_application.tex ~HEAD-1
diff sections/scientific_application.tex master
diff sections/scientific_application.tex
texmaker ~/Downloads/template.tex
cat tables/levels.tex
cd git/documents/papers/IDPDS20/
cp LANL-memo-master/Times_New_Roman.ttf .
texmaker samplememo.tex
ls LANL-memo-master/
evince samplememo.pdf
lualatex samplememo.tex
pdflatex samplememo.tex
cd LANL-memo-master/
tar -xvf LANL-memo-master.tar
rm -rf LANL-memo-master
touch report.tex
cd Konferenzen/Pannel/
cd Documents/
rsync -azv rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10-2/*.pdf" .
touch template.tex
touch tempplate.tex
vim ../stationary_crack/linear_decay/input.yaml
vim ../stationary_crack/linear_decay/statioanry-crack-linear-fine2.png
mkdir out_top_bottom_linear/
rm input_linear_load_all.yaml
vim input_linear_load_all.yaml
cp ../inclined/input_linear_load_all.yaml .
cp ../inclined/mesh.vtu .
cp inclined/input_const_load_top-bottom.yaml plate/
mkdir plate
mkdir plate-10-3
scp rostam:"/work/diehlpk/PUM/inclined/out2/*100.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/out*90.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/out*74.vtu" .
rsync -az rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10-2/*.pdf" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/out*70.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/out*1.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/out*1*.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/out*50*.vtu" .
scp rostam:"/work/diehlpk/PUM/inclined/out2-crack/out*100*.vtu" .
ls -lah *npy
rsync -az rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10-2/*33*.npy" .
mv LANL-memo-master.tar report/
tar -xvf LANL-memo-master.tar report/
cp ~/Downloads/LANL-memo-master.tar .
mkdir report
cd Do
cat title.tex
find . -name "*.tex" -exec aspell check -l en_us "{}" ";"
find . -name "*.tex" -exec sed -i 's/[ ][ ]*/ /g' "{}" ";"
grep  "Indiana" sections/*.tex
grep -R "Indiana" *.tex
grep "Indiana" *.tex -r
grep "Indiana" *.tex
grep "Indiana University's" *.tex
grep *.tex "Indiana University's"
pdftotext CsMag_template.pdf - | wc -wc
sed -i 's/[ ][ ]*/ /g' CsMag_template.tex
sed 's/[ ][ ]*/ /g' CsMag_template.tex
tr -s \  < CsMag_template.tex
find . -name "*.tex" -exec dos2unix "{}" ";"
dos2unix CsMag_template.tex
cd git/AnalyticStiffnessPython/plate-10-2/
git commit --amend
mkdir out_top_bottom_const_crack_fine-2/
vim input_const_load_top-bottom_crack.yaml
rsync -a rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10-2/*.pdf" .
sudo dnf install  zoom_x86_64\(2\).rpm
sudo rpm -i  zoom_x86_64\(2\).rpm
sudo dnf remove zoom
leafpad Using\ CxxExplorer_January\ 22,\ 2021_13.52.csv
leafpad Using CxxExplorer_January 22, 2021_13.52.csv
find . -name "*.tex" -exec aspell -c -l EN_us "{}" ";"
find . -name  *.tex
find .  *.tex
find  *.tex
find -R *.tex
find -r *.tex
find *.tex
find name=*.tex
find -name=*.tex
find -name="*.tex"
find -name="*.tex" -exec  aspell -c -l EN_us "{}" ";"
find -name=*.tex -exec  aspell -c -l EN_us "{}" ";"
aspell -c -l EN_us main.tex
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10-2/*.pdf" .
~/git/NLMech2/build/bin/NLMech -i input_const_load_top-bottom_crack.yaml --hpx::threads=20
rm out_top_bottom_const_crack/output_*
leafpad input_const_load_top-bottom_crack.yaml
cd out_top_bottom_const-2
mkdir out_top_bottom_const-2
texmaker wileyNJD-Doc.tex
evince wileyNJD-Doc.pdf
cd AMA-lato/
unzip AMA-lato.zip
leafpad  input_const_load_top-bottom_crack.yaml
~/git/NLMech2/build/bin/NLMech -i input_const_load_top-bottom_crack.yaml  --hpx::threads=20
ls out_top_bottom_const_crack/
cp  input_const_load_top-bottom.yaml  input_const_load_top-bottom_crack.yaml
git add input_const_load_top-bottom-fine-2.yaml
leafpad input_const_load_top-bottom-fine-2.yaml
cp input_const_load_top-bottom.yaml input_const_load_top-bottom-fine-2.yaml
aspell check -l en_en 2021-01-19-word-count-latex.md
leafpad input_linear_top_bottom.yaml
leafpad input_const_load_all.yaml
~/git/NLMech2/build/bin/NLMech -i input_const_load_all.yaml  --hpx::threads=20
~/git/NLMech2/build/bin/NLMech -i input_linear_top_bottom.yaml  --hpx::threads=20
vim 2021-01-19-word-count-latex.md
git add 2021-01-19-word-count-latex.md
cp 2020-09-24-phylanx.md 2021-01-19-word-count-latex.md
mkdir out_top_bottom_const_crack
cp input_const_load_top-bottom.yaml input_const_load_top-bottom_crack.yaml
bibcite CsMag_template.aux
cat CsMag_template.aux
grep bincite CsMag_template.aux | wc -l
grep bincite CsMag_template.aux | wc
grep bincite CsMag_template.aux
grep CsMag_template.aux
texcount -inc CsMag_template.tex
texcount inc CsMag_template.tex
texcount CsMag_template.tex
texcount
pdftotext CsMag_template.pdf -
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10/*.pdf" .
sudo dnf install FlightGear
sudo dnf install flightgear
sudo dnf install fligthgear
git add section3.vtt
cd ~/git/TBAA2020/
cp section3.vtt ~/git/TBAA2020/
mv my_captions\ \(2\).vtt section3.vtt
leafpad my_captions\ \(2\).vtt
ls *.vtt
wget https://raw.githubusercontent.com/STEllAR-GROUP/TBAA2020/master/section2.vtt
wget https://raw.githubusercontent.com/STEllAR-GROUP/TBAA2020/master/section1.vtt
aspell -c -l EN_us cv/index.md
git rm ../../assets/nsf.pdf
gir rm ../../assets/nsf.pdf
git rm nsf.tex
sudo dnf remove extremetuxracer
sudo dnf install extremetuxracer
sudo dnf remove xmoto
sudo dnf install xmoto
rm out_top_bottom_linearoutput_*.vtu
rm out_top_bottom__const/ -rf
mkdir out_top_bottom_linear
mkdir out_top_bottom__const/
cp input_const_load_all.yaml input_linear_top_bottom.yaml
cp input_const_load_all.yaml input_const_load_top-bottom.yaml
~/git/NLMech2/build/bin/NLMech -i input_const_load_all.yaml --hpx::threads=20
vim input_const_load_all.yaml
mkdir out_all_const
cp input_linear_load_all.yaml input_const_load_all.yaml
rm input_linear_load_all_clamped.yaml
git rm input_linear_load_all_clamped.yaml
git rm input_delta_square.yaml
gir rm input_delta_square.yaml
cd plate-10-2/
leafpad CSEE-Foster-Flyer.txt
pdftotext WFM2020_ORNL_Report\(1\).pdf
pdftotext CSEE-Foster-Flyer.pdf
git show 96b574013032f857df0797ac44136c411a08319e
git rev-list --max-parents=0 HEAD
git rev-list --max-parents=0 HEAD | git show
git checkoust master
~/git/NLMech2/build/bin/NLMech -i input_linear_load_all.yaml --hpx::threads=20
vim input_linear_load_all_clamped.yaml
git checkout branch
mkdir plate-10-2
cp input_linear_load_all.yaml input_linear_load_all_clamped.yaml
cp ../stationary_crack/linear_decay/mesh.vtu .
cp input.yaml input_old.yaml
cd git/AnalyticStiffnessPython/plate-10/
git rebase upstream/master
git fetch upstream
git remote add upstream https://github.com/stevenrbrandt/CxxExplorer.git
vim .git/config
vim .git/info/
git remote
git --help
cd CxxExplorer/
cd input
cd Simulations/PUM/diagonal_loading_inclined_precrack/
sudo reboot now
plasmashell
plasmashell &
scp rostam:"/work/diehlpk/PUM/stationary/out2/*100.vtu" .
cd out2/
cd..
./thunderbird &
cd opt/thunderbird/
evince bond-based-2d-plate-u-y-0.2-4-18.pdf
cd plate-10/
scp rostam:"/work/diehlpk/PUM/stationary/out2/*99.vtu" .
scp rostam:"/work/diehlpk/PUM/stationary/out2/*99.vu" .
rm ../out3/output_*
cd input2/
vim input_delta_square.yaml
ls in
ls input2
los
git diff master
vim ~/.ssh/config
scp ~/.ssh/id_github rostam:"/home/diehlpk/.ssh/"
mkdir out2
git add input_fine_2.yml
git add input_mesh_fine_2.yaml
cp ../input_mesh_fine_2.yaml .
~/git/NLMech2/build/bin/mesh -i input_fine_2.yml -d 2
~/git/NLMech2/build/bin/mesh -i input_fine_2.yml-d 2
cp ../input_fine_2.yml .
rm outoutput_*.vtu
cat input.yaml
~/git/NLMech2/build/bin/mesh -i input_mesh.yaml-d 2
cp ../input_mesh.yaml .
mkdir linear_decay
git push --set-upstream origin doi
git checkout -b doi
git push --set-upstream origin branch
git checkout -b branch
cd diagonal_loading_inclined_precrack/input
cd Desktop/
pass -c lsi
wget https://www.diehlpk.de/assets/grants.pdf
evince Cover_letter_signed.pdf
rvince Cover_letter_signed.pdf
xournalpp Cover_letter___Kansas.pdf
cp ~/Downloads/Cover_letter___Kansas.pdf .
supertux2 --developer
supertux2 --help
supertux2 --console
vim ~/.supertux2/config
mkdir ~/.supertux2/
mkdir ~/supertux2/
~/.supertux2/config
cd Documents/Bewerbungen/kansas/
texmaker figure14.tex
cp figure4.tex figure14.tex
texmaker figure11.tex
texmaker figure6.tex
cp figure4.tex figure11.tex
cp figure4.tex figure6.tex
texmaker figure5.tex
cp figure4.tex figure5.tex
cd Downloads/AMA-stix/
cp figure1.tex figure4.tex
cp figure1.tex figure3.tex
texmaker &
cd AMA-stix/
texmaker wileyNJD-AMA.tex &
cd ama/
unzip AMA-stix.zip
git push --set-upstream origin v0.8.0
git checkout -b v0.8.0
cp mentoring.tex   research-statement.tex
inkscape  research.svg
inkscape  reports.tex
evince research.svg
scp *.py rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10/"
scp bond-based-2d-plate-0.2-4-5-*.npy rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10/"
scp bond-based-2d-plate-0.2-4-5-f*.npy rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10/"
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10/" bond-based-2d-plate-0.2-4-5-f*.npy
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/plate10/" bond-based-2d-plate-0.2-4-5-f*,npy
pwgen
ls ../doc/html/
git add ../doc/html/index.html
24/6
bundle config set --local path './bundle'
undle config set --local path 'vendor/bundle'
gem install bundler --user-install
gem install bundler -user-install
gem install bundler --user-indtall
gem install bundler user-inatall
gem install bundler -user-inatall
gem install bundler --user-inatall
bundle install --user-install
bundle install --user
cp ~/git/diehlpk.github.io/Gemfile .
ls doc/html/index.html
python bondbased2D-plate-point.py 0.2 4 1
mkdir plate-10
ls GSoC-2020/
git mv Google-Summer-of-Code-\(GSoC\)-2020.md GSoC-2020
ls GSoC-2014/
mkdir GSoC-2020
slack
python bondbased2D-plate-point.py 0.2 4 112
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/point/*.py" .
cp ../bondbased2D-plate-point.py .
ls "*.py"
python bondbased2D-plate-point.y 0.2 4 112
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/point/*-111*.npy" .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/point/*-111*.mpy" .
python bondbased2D-plate.py 0.2 4 99
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/*-98*.npy" .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/*-08*.npy" .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/*.pdf" .
evince mentoring.pdf
cp ../boulder/diversity.tex .
cp ../boulder/mentoring.tex .
mkdir kansas
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/point/*.pdf" .
sudo dnf install supertux
sudo dnf install supertux2
sudo dnf inatall supertux2
sudo dnf isntall supertux2
xmoto
cd point/
pass =c lsu
leafpad ref.bib
firefox index.html
leafpad index.html
evince coupling-quartic.pdf
aspell -c -l EN_us report.tex
git add *.pdf
convert level-14-multiple.svg level-14-multiple.pdf
Total: 469.967
  Computation: 443.661 (94.4026 %)
  Regrid: 13.2884 (2.82752 %)
  Computation + Regrid: 456.949 (97.2301 %)
convert level-13-multiple.svg level-13-multiple.pdf
convert node-level-speedup.svg node-level-speedup.pdf
evince node-level-speedup.pdf
evince report.pdf
evince report.tex
latexmk -pdf report.tex
inkscape node-level-speedup.svg
cd git/documents/reports/Summit2020/
cd Summit2020/
mkdir ../out3/
mkdir ../out2/
git add input_linear_load_all.yaml
cp /home/diehlpk/Simulations/PUM/diagonal_loading_inclined_precrack/input/input.yaml input_linear_load_all.yaml
git mv input.yaml input_delta_square.yaml
cdf ..
display new_loading_damage_1.png
leafpad bib.bib
git push --set-upstream origin loading
git checkout loading
git branch -D tree
git branch -D fix-cmake-gmsh
git branch -D improve-vtk
git push --set-upstream origin rc0.1.0
git checkout -b rc0.1.0
git cechkout -b rc0.1.0
git push --set-upstream origin restart-bug
git bechkout -b rc0.1.0
git checkout -b loading
cp -r input/ input2/
evince bond-based-2d-plate-d-0.2-4-60.pdf
evince bond-based-2d-plate-point-d-0.2-4-38.pdf
latexmk -pdf CsMag_template.tex
python coupling.py coupling-quadratic.pdf
python coupling.py LInear
python coupling.py coupling-linear.pdf
evince bond-based-2d-plate-point-d-0.2-4-32.pdf
evince bond-based-2d-plate-d-0.2-4-55.pdf
cd ../..
git rm component.cpp CMakeLists.txt Serialization.ipynb
cd 16/
git add component.cpp
cp /home/diehlpk/git/courses/ParallelComputationMath/code/16/CMakeLists.txt .
cp /home/diehlpk/git/courses/ParallelComputationMath/code/16/component.cpp .
cp /home/diehlpk/git/courses/ParallelComputationMath/code/16/Serialization.ipynb lecture16-serialization.ipynb
git mv lecture14-hpx-moving.ipynb chapter2/lecture14-moving.ipynb
ls 16/
git rm 14/Moving.ipynb
git add lecture14-hpx-moving.ipynb
cp /home/diehlpk/git/courses/ParallelComputationMath/code/14/Moving.ipynb lecture14-hpx-moving.ipynb
cd chapter1
ls 14/
git rm 13/HPX-Features.ipynb
git add lecture13-hpx-features.ipynb
cp /home/diehlpk/git/courses/ParallelComputationMath/code/13/HPX-Features.ipynb lecture13-hpx-features.ipynb
ls 13/
git rm *.ipynb
git add *.ipynb
cp /home/diehlpk/git/courses/ParallelComputationMath/code/11/Hello_World.ipynb lecture11-hello-world.ipynb
cp /home/diehlpk/git/courses/ParallelComputationMath/code/11/Reduce.ipynb lecture11-reduce.ipynb
cp /home/diehlpk/git/courses/ParallelComputationMath/code/11/Future.ipynb lecture11-future.ipynb
cp /home/diehlpk/git/courses/ParallelComputationMath/code/11/future.ipynb lecture11-future.ipynb
cp /home/diehlpk/git/courses/ParallelComputationMath/code/11/For.ipynb lecture11-for.ipynb
mkdir chapter11
ls chapter10/
cd 11/
ls 20
git rm argument.cpp
cd git/courses/ParallelComputationMathExamples/
cd code/20/
ls code/
scp rostam:/home/diehlpk/Simulations/PUM/stationary-crack/out/output_15.vtu output_68.vtu
git checkout -b restart-bug
git ceckout -b restart-bug
ssh roatam
ls sections/
evince coupling-Cubic.pdf
find -name "*.tex" -exec aspell -c -l EN_us  "{}" ";"
aspell -c -l EN_us
history | grep aspell
find -name "*.tex" -exec aspell -check -l en_us "{}" ";"
evince coupling.pdf &
evince coupling.pdf
git add restart.md
vim restart.md
vim qs-2d-elastic.md
vim regular-mesh.md
cp regular-mesh.md restart.md
history | grep CsMag_template
history | grep pdf
history | grep pf
cd documents/papers/IDPDS20/
git push --set-upstream origin circle-ci
git mv config config.yml
git add .circleci/config
git checkout -b circle-ci
git checkour circle-ci
git push --set-upstream origin codacy
git checkout -b codacy
git checkout codacy
git checkout codaxy
evince bond-based-2d-plate-point-d-0.2-4-27.pdf
evince bond-based-2d-plate-point-u-y-0.2-4-27.pdf
evince bond-based-2d-plate-d-0.2-4-52.pdf
evince bond-based-2d-plate-u-y-0.2-4-52.pdf
cp ~/Downloads/Cover_letter___Boulder.pdf cover_letter.pdf
texmaker research.tex
cp ../boulder/research.tex .
ls ../boulder/research.tex .
ls ../boulder/*.tex
ls ../boulder/*
cd golden/
latexmk -pdf mentoring.tex
cd boulder/
mkdir golden
git input.yaml
cp /home/diehlpk/Simulations/PUM/diagonal_loading_inclined_precrack/input/input_mesh_fine.yaml .
cp /home/diehlpk/Simulations/PUM/diagonal_loading_inclined_precrack/input/input_mesh_fine.yaml
cp /home/diehlpk/Simulations/PUM/diagonal_loading_inclined_precrack/input/input.yaml .
mkdir inclined
find -name "*.tex" -exec grep -l grubel2016dynamic {} \;
find -name "*.tex" -exec grep -l papi {} \;
leafpad
cd ~/opt/thunderbird/
vim NLRHEQ_parallel.cpp
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON .
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Debug
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Debug
cd papers/IDPDS20/
vim NLRHEQ_sequential.cpp
find -name "*.tex" -exec grep -l kretz {} \;
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build_debug/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Debug  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -DEnable_PCL=ON .
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build_debug/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Debug  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -DEnable_PCL=ON ..
cd nonlocal-reverse-heat-equation-deblurring/
git clone https://github.com/jeffreytepper/nonlocal-reverse-heat-equation-deblurring.git
gitclone https://github.com/jeffreytepper/nonlocal-reverse-heat-equation-deblurring.git
thunderbird &
scp rostam:/home/diehlpk/Simulations/PUM/stationary-crack/out/output_53.vtu .
rm ../out/output_*
cat input_old.yaml
cd input/
ls out/*.vtu
rm output/output_*
rm output/output_0.vtu
unzip diagonal_loading_inclined_precrack.zip
rm -rf ../out/output_*.vtu
git clone https://github.com/diehlpk/paperCoupling1D.git
leafpad autor-bio.tex
git add autor-bio.tex
find -name "*.tex" -exec grep -l Pfander18accelerating {} \;
find -name "*.tex" -exec grep -l heller2019harnessing {} \;
find -name "*.tex" -exec grep heller2019harnessing {} \;
find -name "*.tex" -exec grep heller {} \;
find -name "*.tex" -exec grep {} helelr \;
find -name "*.tex" -exec grep heller_gb {} \;
find -name "*.tex" -exec grep heller_gb {} \'
find -name "*.tex" -exec cat {} | grep heller_gb \;
find -name "*.tex" -exec cat {} | grep heller_gb ;
find -name "*.tex" -exec cat "{}" | grep heller_gb ";"
find "*.tex" -exec cat "{}" | grep heller_gb ";"
find *.tex -exec cat "{}" | grep heller_gb ";"
find *.tex -excec cat "{}" | grep heller_gb ";"
find *.tex -exec cat "{}" | grep heller_gb ","
find *.tex -exec cat "{}" | grep heller_gb
scp rostam:/home/diehlpk/Simulations/PUM/stationary-crack/out/output_13.vtu .
git add CsMag_template.tex
git add upmath.sty
cp /home/diehlpk/Downloads/upmath.sty .
git add IEEEcsmag.cls
cp /home/diehlpk/Downloads/IEEEcsmag.cls .
texmaker CsMag_template.tex
rm ieee.*
git rm ieee.tex
pdftotext main.pdf - | wc -w
cp /home/diehlpk/Downloads/CsMag_template.tex .
unzip CsMag.zip
texmaker ieee.tex &
texmaker ieee.tex *
rm -rf ../out/output_0.vtu
scp rostam:/home/diehlpk/Simulations/PUM/stationary-crack/out/output_1.vtu .
ping rostam.cct.lsu.edu
ping rostam.rostam.cct.lsu.edu
ping rostam0.rostam.cct.lsu.edu
cp ../../New_Results_Mode_1_crack/2mm/inp/input_mesh_fine.yaml .
cp ../../New_Results_Mode_1_crack/2mm/inp/mesh_fine_2.vtu .
rm input -rf
git rm -rf input/
git rm -rf input
ls input/
git mv input/input* .
git rm out_large/strain/postp.yaml
scp rostam:/home/diehlpk/Simulations/PUM/stationary-crack/input_mesh_fine_4.yaml .
scp rostam:/home/diehlpk/Simulations/PUM/stationary-crack/nput_mesh_fine_4.yaml .
scp rostam:/home/diehlpk/Simulations/PUM/stationary-crack/input_fine_4.yml .
scp input_fine_2.yml rostam:/home/diehlpk/Simulations/PUM/stationary-crack/
mkdir point
ls -lah ../out/
git add bondbased2D-plate-point.py
cp bondbased2D-plate.py bondbased2D-plate-point.py
aspell -c -l EN_us about.md
aspell -check en_us about.md
aspell check en_us about.md
vom input_fine_2.yml
cd Simulations/PUM/New_Results_Mode_1_crack/2mm/in
ls ../output/
ls ../out
rm -rf ../output/output_*.vtu
scp rostam:/home/diehlpk/Simulations/PUM/stationary-crack/out/output_4.vtu .
scp rostam:/home/diehlpk/Simulations/AnalyticStiffnessPython/*.pdf .
scp rostam:/home/diehlpk/Simulations/PUM/stationary-crack/out/output_33.vtu .
cp ../../New_Results_Mode_1_crack/2mm/inp/mesh.vtu .
mkdir ../out
scp rostam:/home/diehlpk/Simulations/PUM/stationary-crack/out/output_0.vtu .
rm output_*.vtu
cd ../build_debug/
~/git/NLMech2/build_debug/bin/NLMech -i input.yaml --hpx::threads=20
rm ../output/output*.vtu
cp ~/Downloads/diagonal_loading_inclined_precrack.zip .
evince courses.pdf
wget https://www.diehlpk.de/assets/courses.pdf
rm courses.pdf
cp ../mannheim/run.sh .
rm list.pdf
texmaker Latex-Briefvorlage.tex
cp ../mannheim/Latex-Briefvorlage.tex .
cd berlin/
cp -r magdeburg/ berlin
cd Bewerbungen/
scp rostam:/home/diehlpk/Simulations/PUM/stationary-crack/out/output_16.vtu .
./thunderbird/thunderbird &
tar -xvf thunderbird-68.7.0.tar.bz2
rm thunderbird -rf
rm thunderbird
scp rostam:/home/diehlpk/Simulations/PUM/stationary-crack/out/output_3.vtu .
cd Simulations/PUM/New_Results_Mode_1_crack/2mm/out_large_4/
scp bond-based-2d-plate-0.2-4-34-*.npy rostam:/home/diehlpk/Simulations/AnalyticStiffnessPython
scp bond-based-2d-plate-0.2-4-43-*.npy rostam:/home/diehlpk/Simulations/AnalyticStiffnessPython
scp bond-based-2d-plate-0.2-4-2-*.npy rostam:/home/diehlpk/Simulations/AnalyticStiffnessPython
killall plasmashell
scp rostam:/home/diehlpk/Simulations/PUM/stationary-crack/out/*.vtu .
cd out_large_4/
leafpad Fedora/buildFedora.sh
scp input_fine_4.yml rostam:/home/diehlpk/Simulations/PUM/stationary-crack/
scp input_mesh_fine_4.yaml rostam:/home/diehlpk/Simulations/PUM/stationary-crack/
scp mesh_fine_4.vtu rostam:/home/diehlpk/Simulations/PUM/stationary-crack/
git push --set-upstream origin fix-cmake-gmsh
git checkout -b fix-cmake-gmsh
leafpad Fedora
leafpad Docker/Fedora
touch .circleci/config.yml
vim Fedora
cd git/buildscripts/
git rebase master
git rebase amster
git checkout tree
dnf search pcl
time ~/git/NLMech2/build/bin/NLMech -i input_fine_4.yml --hpx::threads=20
git push --set-upstream origin tree
git commit -m "Update documentation" ../docs/content/cmake-options.md ../README.md
git commit -m "Update documentation" =m ../docs/content/cmake-options.md ../README.md
~/git/NLMech2/build_debug/bin/NLMech -i input_fine_4.yml --hpx::threads=20
gdb ~/git/NLMech2/build_debug/bin/NLMech
~/git/NLMech2/build/bin/NLMech -i input_fine_4.yml --hpx::threads=20
export TCMALLOC_LARGE_ALLOC_REPORT_THRESHOLD=30000000000
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build_debug/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -DEnable_PCL=ON ..
cmake -DEnable_PCL=ON ..
cmake -DEnable_PCL-ON ..
wget https://raw.githubusercontent.com/nonlocalmodels/NLMech/joss/docs/paper.md
rm VTK-8.2.0/ -rf
rm VTK-8.2.0.tar.gz
ccmake -DEnable_PCL-ON ..
sudo dnf install pcl-devel
git checkout improve-vtk
make -j 12
sudo dnf install flann-devel
dnf search flann
cd pcl-pcl-1.11.1/
tar -xvf pcl-1.11.1.tar.gz
ps
wget https://github.com/PointCloudLibrary/pcl/archive/pcl-1.11.1.tar.gz
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/  ..
git rebase improve-vtk
git checkout -b tree
git branch -d tree
git merge origin/legacy_writer
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DVTK_DIR=/home/diehlpk/opt/vtk/9/lib64/cmake/vtk-9.0/ -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/  ..
git rebase origin/legacy_writer
cmake -h
cmake --verison
vim input_fine_4.yml
vim input_mesh_fine_4.yaml
~/git/NLMech2/build_debug/bin/mesh -i input_mesh_fine_4.yaml -d 2
gdb ~/git/NLMech2/build_debug/bin/mesh
~/git/NLMech2/build/bin/mesh -i input_mesh_fine_4.yaml -d 2
gdb ~/git/NLMech2/build/bin/mesh
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build_debug/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Debug  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DVTK_DIR=/home/diehlpk/opt/vtk/9/lib64/cmake/vtk-9.0/ -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/  ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Debug  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DVTK_DIR=/home/diehlpk/opt/vtk/9/lib64/cmake/vtk-9.0/ -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/  ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build_debug/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Debug  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON  -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/  ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Debug  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON  -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/  ..
make-j 20
cmake -DVTK_REQUIRE_LARGE_FILE_SUPPORT=ON ..
cd VTK-8.2.0/
tar -xvf VTK-8.2.0.tar.gz
tar -xvf VTK-9.0.1.tar.gz
wget https://www.vtk.org/files/release/8.2/VTK-8.2.0.tar.gz
git branch -d references
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DVTK_DIR=/home/diehlpk/opt/vtk/9/lib64/cmake/ -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/  ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DVTK_DIR=/home/diehlpk/opt/vtk/9/ -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/  ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DVTK_DIR=/home/diehlpk/opt/vtk/9/  ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DVTK_DIR=/home/diehlpk/opt/vtk/9/  .
git branch -d legacy_writer
cd VTK-9.0.1/
cp ~/Downloads/VTK-9.0.1.tar.gz .
git push --set-upstream origin references
gtop
python bondbased2D-plate.py 0.2 4 30
pass -c lau
~/git/NLMech2/build/bin/NLMech -i input_fine_4.yml --hpx:threads=20
gmsh mesh_fine_4.msh
ls *.msh
cp ~/Simulations/PUM/New_Results_Mode_1_crack/2mm/inp/input_fine_2.yml ./
cp ~/Simulations/PUM/New_Results_Mode_1_crack/2mm/inp/input_mesh_fine.yaml ./input_mesh_fine_2.yaml
cp ~/Simulations/PUM/New_Results_Mode_1_crack/2mm/inp/input_mesh_fine_2.yaml ./
git push --set-upstream origin improve-vtk
git checkout -b improve-vtk
git reset --soft HEAD~1
git commit amend
git push --set-upstream origin compiler_fix
git checkout -b compiler_fix
podman build . -t peridigm/peridigm
vim src/core/Peridigm_Enums.cpp
vim src/core/Peridigm_Enums.hpp
docker build . -t peridigm/peridigm
cd peridigm/
git clone https://github.com/peridigm/peridigm.git
rm -rf peridigm/
~/git/NLMech2/build/bin/NLMech -i input_fine_2.yml --hpx:threads=20
rm ../out_largei_2/*.vtu
vi input_fine_2.yml
rm ../out_largei_/*.vtu
rm ../out_large_2/*.vtu
git checkout legacy_writer
git branch -d funding
git branch -d const_time
git branch -d rpm
git checkout legacy-vtk
git ckechout legacy-vtk
git ceckout master
git push --set-upstream origin release-notes
git add release-notes.md
cp cmake-options.md release-notes.md
rm release-notes.md/ -rf
cat release-notes.md
mkdir release-notes.md
git checkout -b release-notes
git checkout -n release-notes
vim input_legacy_vtk.yaml
git add input_legacy_vtk.yaml
cp input.yaml input_legacy_vtk.yaml
cd examples/qsModel/1D/
rm ../out_large_4/*.vtu
head ../out/output_0.vtu
paraview *
cp
git push --set-upstream origin legacy_writer
head -n 10 output_1.vtu
head -n 30 output_1.vtu
head output_1.vtu
git checkout -b legacy_writer
mkdir ../out_large_4/
git add *_4*
cp ~/Simulations/PUM/New_Results_Mode_1_crack/2mm/inp/input_mesh_fine_4.yaml ./
cp ~/Simulations/PUM/New_Results_Mode_1_crack/2mm/inp/input_fine_4.yml ./
~/git/NLMech2/build/bin/NLMech -i input_fine_4.yaml --hpx:threads=20
~/git/NLMech2/build/bin/NLMech -i input__fine_4.yaml --hpx:threads=20
~/git/NLMech2/build/bin/NLMech -i input_mesh_fine_4.yaml --hpx:threads=20
mkdir ../out_largei_4/
cp input_fine_2.yml input_fine_4.yml
~/git/NLMech2/build/bin/mesh -i input_mesh_fine_4.yaml
cp input_mesh_fine.yaml input_mesh_fine_4.yaml
git mv input_mesh_fine.yaml input_mesh_fine_2.yaml
git add input*
git rm input_large.yaml
git rm input_large.yaml -f
cp ~/Simulations/PUM/New_Results_Mode_1_crack/2mm/inp/input_mesh_fine.yaml .
cp ~/Simulations/PUM/New_Results_Mode_1_crack/2mm/inp/input.yaml input_large.yaml
git pulkl
~/git/NLMech2/build/bin/NLMech -i input.yaml --hpx:threads=20
rm ../out_large/*.vtu
~/git/NLMech2/build/bin/NLMech -i input.yml --hpx:threads=20
git checkout joss -f
cp ~/Downloads/1d78e81033f111eb8c8393883229f3be.map.pdf webpage/map.pdf
mkdir ../out_largei_2/
cp input.yaml input_fine_2.yml
co input.yaml input_fine_2.yml
cp input.yaml /home/diehlpk/git/paperPUMPD/stationary_crack/input/
cp input_mesh_fine.yaml /home/diehlpk/git/paperPUMPD/stationary_crack/input/
ls mesh_fine_2.vtu
git mv input_mesh.yaml input_large.yaml
cp input_mesh.yaml /home/diehlpk/git/paperPUMPD/stationary_crack/input/
~/git/NLMech2/build/bin/NLMech -i input.yaml --hpx:threads=12
vin input.yaml
make -j 21
cd thunderbird/
rm -rf thunderbird
python bondbased2D-plate.py 0.2 4 21
python bondbased2D-plate.py 0.2 4 19
ls bond-based-2d-*.py
vim postp.yaml
~/git/NLMech2/build/bin/pp -i postp.yaml
~/git/NLMech2/build/bin/NLMech -i postp.yaml
vim input_large.yaml
ls plate/
cp bond-based-2d-plate-*.pdf plate
cp bond-based-2d-plate-*.npy plate
mksir plate
cp reply.pdf ~/Documents/Proposals/Power10/reply-diehl.pdf
mv gsc20_opensource-openscience.pdf ../GSoC/
mv gsoc20.* ../GSoC/
mkdir ../GSoC
rm -rf siamanual2020*
cp siamanual2020/* ../SIAM/
mkdir ../SIAM
cp ~/git/LSU_templates/talk/* . -r
cp ~/git/LSU_templates/talk/* -r
cd WCCM/
mkdir WCCM
rm -rf SIAM/
rm SCI\ Pi\ slides.zip
unzip SCI\ Pi\ slides.zip
cp ~/Downloads/SCI\ Pi\ slides.zip .
cd SC_PI/
mkdir SC_PI
cd SIAM/
rm Gateways20\ -\ Slides.zip
unzip Gateways20\ -\ Slides.zip
cp ~/Downloads/Gateways20\ -\ Slides.zip .
cp ~/Downloads/Gateways20\ -\ Slides.zip
mkdir SIAM
cd 2020/
mkdir 2020
cd Konferenzen/
aspell check -l en_us paper.md
git add discrete.pdf
cp ~/Documents/Bilder/PD/discrete.pdf ../../docs/
cd openscience/
git commit a
vim draft-pdf.yml
cd ~/opt/
texmaker exercise10.tex
git add draft-pdf.yml
gimp octotigerlogoArtboard\ 5@4x-100.jpg
display octotigerlogoArtboard\ 5@4x-100.jpg
display octotigerArtboard\ 2@4x.png
ls octotiger*
gimp octotigerArtboard\ 2@4x.png
git push --set-upstream origin new-logo
cp out_large/output_*.vtu ~/Dropbox/
cp out_large/output_25.vtu ~/Dropbox/
cp out_large/output_4.vtu ~/Dropbox/
cp out_large/output_3.vtu ~/Dropbox/
cp out_large/output_2.vtu ~/Dropbox/
cp out_large/output_1.vtu ~/Dropbox/
git checkout -b new-logo
git checkout -n new-logo
cp out_large/output_9.vtu ~/Dropbox/
cp out_large/output_8.vtu ~/Dropbox/
cp out_large/output_7.vtu ~/Dropbox/
ls out_large/ -lah
cp out_large/output_6.vtu ~/Dropbox/
cp out_large/output_5.vtu ~/Dropbox/
cp out_large/output_16.vtu ~/Dropbox/
cp out_large/output_15.vtu ~/Dropbox/
cp out_large/output_14.vtu ~/Dropbox/
cp out_large/output_13.vtu ~/Dropbox/
cp out_large/output_12.vtu ~/Dropbox/
cp out_large/output_11.vtu ~/Dropbox/
cp out_large/output_10.vtu ~/Dropbox/
ls out_large/
git checkout -b const_time
cp out_large/output_50.vtu ~/Dropbox/
cp out/output_50.vtu ~/Dropbox/
.dropbox-dist/dropboxd &
./paraview &
mv ~/Downloads/visit3_1_3.linux-x86_64/ .
mv ~/Downloads/visit3_1_3.linux-x86_64/ . -
./visit &
cd visit3_1_3.linux-x86_64/bin/
tar -xvf visit3_1_3.linux-x86_64-fedora31.tar.gz
cd opt/
visit
glxgears
inkscape info/setup.svg &
sudo systemctl restart kdm
--
vim config.dat
texmaker lecture8.tex &
./my_hpx_program
leafpad meisam-course.cpp &
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON  .
cmake -DHPX_DIR=/home/diehlpk/git/hpx_main/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -Dblaze_DIR=/home/diehlpk/opt/blaze/share/blaze/cmake/  .
cmake -DHPX_DIR=/home/diehlpk/git/hpx_main/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -Dblaze_DIR=/home/diehlpk/opt/blaze/share/blaze/cmake/  ..
git rm CNAME
gir rm CNAME
cd OpenDataExpMechanics.github.io/
git clone https://github.com/OpenDataExpMechanics/OpenDataExpMechanics.github.io.git
cd Compile/phylanx/build/
git mv Lecture21.ipynb Lecture22.ipynb
cp ../lecture21/run.sh .
cd lecture22/
git mv Lecture21/Lecture21.ipynb lecture22/
mkdir lecture22
git mv Lecture21.ipynb Lecture21/
mkdir Lecture21
lualatex book.tex
texmaker lecture20.tex &
texmaker lecture20.tex
cd git/HPX_GSoC_Stats/
evince revletterSN2/reply.pdf
evince revletterSN/reply.pdf
cd git/documents/papers/SNAS_PeriHPX/
gimp ../assets/logo/logo_joss.png
display ../assets/logo/logo_joss.png
git add ../assets/logo/logo_joss.png
gimp ../assets/logo/logo_sims_transparent.png
git checkoout joss
google-chrome LinkedList.slides.html
firefox LinkedList.slides.html
firefox LinkedList.ipynb
cd lecture21/
uptime
leafpad 2020-11-18-compiling-hpx-rostam.md
aspell check -l en_us 2020-11-18-compiling-hpx-rostam.md
git branch -d docu hpx1.5
git branch -d gmsh
git branch -d funding funding2
git checkout mastet
vim docs/content/cmake-options.md
git add cmake/packaging/CMakeLists.txt
ccmake ,,
cpack -G RPM
rpm -qlp NLMech-0.1.0-1.x86_64.rpm
git push --set-upstream origin rpm
vim /home/diehlpk/git/NLMech2/cmake/packaging/CMakeLists.txt
ls /home/diehlpk/git/NLMech2/cmake/packaging/
git add Changelog.txt
vim Changelog.txt
wget https://raw.githubusercontent.com/STEllAR-GROUP/hpx/master/cmake/packaging/rpm/Changelog.txt
cd ../cmake/packaging/
cpack -G rpm
make rpm
git add :/CMakeLists.txt
cp ../AnalyticStiffnessPython/requirements.txt .
cp ../AnalyticStiffnessPython/requirements.txt
cd Quasistatic-J-Integral/
git clone https://github.com/diehlpk/Quasistatic-J-Integral.git
git checkout -b rpm
git checkout rpm
wget https://raw.githubusercontent.com/STEllAR-GROUP/hpx/master/cmake/packaging/rpm/CMakeLists.txt .
cd packaging/
mkdir packaging
cd cmake/
git add 2020-11-18-compiling-hpx-rostam.md
mv  2020-11-19-compiling-hpx-rostam.md 2020-11-18-compiling-hpx-rostam.md
sudo
cat /proc/sys/fs/inotify/max_user_instances
leafpad 2020-11-19-compiling-hpx-rostam.md
cp 2016-04-22-builing-peridigm-f-23.md 2020-11-19-compiling-hpx-rostam.md
cd blog
evince /tmp/mozilla_diehlpk0/Coupling-1.pdf
evince /tmp/mozilla_diehlpk0/Coupling.pdf
ls /tmp/mozilla_diehlpk0/
ls coupling*
python plot-plate.py 0.2 4 6
python plot-plate.py 4 0.2 2
python plot-plate.py 4 0.2 1
git add  plot-plate.py
cp plot-tensile.py plot-plate.py
scp -o ProxyJump=pdiehl@bounce.cct.lsu.edu:2525 webpage/*.html webpage/*.pdf webpage/pandoc.css webpage/book.pdf  pdiehl@vault:public_html/teaching/2020/4997
ssh -o ProxyJump=pdiehl@bounce.cct.lsu.edu:2525 pdiehl@vault chmod -R a+r /home/pdiehl/public_html/teaching/2020/4997/
jupyter nbconvert LinkedList.ipynb  --to slides
git push --all
git push --help
git add node-level-speedup.pdf
texmaker report.tex
evinve node-level-speedup.pdf
pdflatex report.tex
mkdir Summit2020
lsd
cd documents/
cd ~/Simulations/PUM/New_Results_Mode_1_crack/2mm/inp/
texmaker contacts.tex
cp mentoring.tex contacts.tex
rm cover_letter_signed.pdf
cp ~/Downloads/Plantilla_para_Cartas\(1\).pdf cover_letter.pdf
ls ../bochum/*.pdf
cp diversity.tex research.tex
vlc video.mp4
ffmpeg -i video.mp4 -filter:v "setpts=64.0*PTS" damage.mp4
ffmpeg -i video.mp4 -filter:v "setpts=8.0*PTS" damage.mp4
ffmpeg -i video.mp4 -filter:v "setpts=2.0*PTS" damage.mp4
ffmpeg  -start_number 2 -i bond-based-2d-tensile-d-1.0-4-%01d.png -vframes 20 video.mp4
vim _posts/blog/2017-05-04-gsc-projects.md
vim _posts/blog/2017-02-27-gsc.md
ls ../list/reports.tex
cat reports.tex
ls reports.tex
ffmpeg  -start_number 2 -i bond-based-2d-tensile-d-1.0-4-%01d.png -vframes 3 video.mp4
ffmpeg  -start_number 2 -i bond-based-2d-tensile-d-1.0-4-%01d.png -vframes 1 video.mp4
ffmpeg  -start_number 2 -i bond-based-2d-tensile-d-1.0-4-%01d.png -vframes 10 video.mp4
ffmpeg  -start_number 2 -i bond-based-2d-tensile-d-1.0-4-%02d.png -vframes 100 video.mp4
ffmpeg  -start_number 2 -i bond-based-2d-tensile-d-1.0-4-%01d.png -vframes 100 video.mp4
ffmpeg -r 1/10 -start_number 2 -i bond-based-2d-tensile-d-1.0-4-%01d.png -c:v libx264 -r 30 -pix_fmt yuv420p video.mp4
ffmpeg -r 1/10 -start_number 2 -i bond-based-2d-tensile-d-1.0-4-%02d.png -c:v libx264 -r 30 -pix_fmt yuv420p video.mp4
ffmpeg -r 1/10 -i bond-based-2d-tensile-d-1.0-4-%02d.png -c:v libx264 -r 30 -pix_fmt yuv420p video.mp4
ffmpeg -r 1/10 -i bond-based-2d-tensile-d-1.0-4-%2.png -c:v libx264 -r 30 -pix_fmt yuv420p video.mp4
ffmpeg -r 1/10 -i bond-based-2d-tensile-d-1.0-4-%02.png -c:v libx264 -r 30 -pix_fmt yuv420p video.mp4
ffmpeg -r 1/10 -i bond-based-2d-tensile-d-1.0-4-%01.png -c:v libx264 -r 30 -pix_fmt yuv420p video.mp4
ffmpeg -r 1/10 -i bond-based-2d-tensile-d-1.0-4-%01.pdf -c:v libx264 -r 30 -pix_fmt yuv420p video.mp4
ffmpeg -r 1/10 -i bond-based-2d-tensile-1.0-4-%01.pdf -c:v libx264 -r 30 -pix_fmt yuv420p video.mp4
ffmpeg -r 1/10 -i bond-based-2d-tensile-d-1.0-4-   %01 -c:v libx264 -r 30 -pix_fmt yuv420p video.mp4
ffmpeg -r 1/10 -i bond-based-2d-tensile-1.0-4-%01 -c:v libx264 -r 30 -pix_fmt yuv420p video.mp4
ffmpeg -r 1/10 -i bond-based-2d-tensile-q   %01d.png -c:v libx264 -r 30 -pix_fmt yuv420p video.mp4
git push --set-upstream origin funding2
git checkout -b funding2
texmaker square-crack.tex
cp validation-1d.tex square-crack.tex
texmaker tensile.tex
cp validation-1d.tex tensile.tex
cd PD/
git mv plot.py plot-tensile.py
git add plot.py
python plot.py 1 4 2
python plot.py 1 4 11
python plot.py 1 4 21
evince bond-based-2d-tensile-d-1.0-4-21.pdf
git push --set-upstream origin typo
vim README.rst
git checkout -b typo
cd git hpx_main/
cp ../bochum/run.sh .
cp ~/Downloads/Plantilla_para_Cartas.pdf cover_letter.pdf
rm cover_letter.pdf.xopp
rm cover_letter.pdf
evince cover_letter.pdf
rm Latex-Briefvorlage.*
jupyter nbconvert LinkedList.ipynb --to slides --post serve
cp ../bochum/Latex-Briefvorlage.tex .
pip install --user findiff
cat ../requirements.txt
cd teaching/
git add by-nc-sa.pdf
evince by-nc-sa.pdf
inkscape by-nc-sa.svg
wget https://mirrors.creativecommons.org/presskit/buttons/80x15/svg/by-nc-sa.svg
cd ../list/
git config --global  pull.ff only
pdftoppm SCI_Pi_slides.pdf pi -png
vim head.html
cd _includes/
ls _includes/
ls _site/
vim calendar.html
git add calendar.html
cp page.html calendar.html
vim ../calendar/calendar.md
cd _layouts/
ls _layouts/
vim calendar/calendar.md
rm *.md5
git checkout SSO
git checkout SSo
python sso.py --version 1 -n 2 -i 2 --batch 2
cp ../python/phylanx/ast/physl.py /home/diehlpk/opt/python-base/lib/python3.9/site-packages/phylanx-0.0.1-py3.9-linux-x86_64.egg/phylanx/ast/
wget https://raw.githubusercontent.com/STEllAR-GROUP/phylanx/SSO/python/phylanx/ast/physl.py
rm physl.py.*
rm physl.py
git add sections/chapter5.tex
git add sections/chapter4.tex
cd nn
pip install -r requirements.txt --user
make -j 13
export PYTHONUSERBASE=/home/diehlpk/opt/python-base/
cd /home/diehlpk/opt/python-base/lib/python3.9/site-packages/phylanx-0.0.1-py3.9-linux-x86_64.egg/phylanx/ast/
wget https://raw.githubusercontent.com/STEllAR-GROUP/phylanx/SSO/python/phylanx/ast/p
make -j 14
cmake -D
rm -rf build/
rm -rf /home/diehlpk/opt/python-base/
git push --set-upstream origin SSO2
leafpad /home/diehlpk/opt/python-base/lib/python3.9/site-packages/phylanx-0.0.1-py3.9-linux-x86_64.egg/phylanx/ast/physl.py
ls /home/diehlpk/opt/python-base/lib/python3.9/site-packages/phylanx-0.0.1-py3.9-linux-x86_64.egg/phylanx/ast/physl.py
ls /home/diehlpk/opt/python-base/lib/python3.9/site-packages/phylanx-0.0.1-py3.9-linux-x86_64.egg/phylanx/
ls /home/diehlpk/opt/python-base/lib/python3.9/site-packages/phylanx-0.0.1-py3.9-linux-x86_64.egg/
ls /home/diehlpk/opt/python-base/
rm __pycache__/ -rf
rm __physlcache__/ -rf
ls phylanx/
cd nn/
git checkout -b SSO2
cat sso.patch
git diff SSO > soo.patch
git diff SSO >> soo.patch
git diff SSO
git diff sso >> soo.patch
git diff sso >> sso.patch
git diff master >> sso.patch
rm sso.patch
git apply sso.patch
git apply ../sso.patch
vim sso.patch
vim /home/diehlpk/opt/python-base/lib/python3.9/site-packages/phylanx-0.0.1-py3.9-linux-x86_64.egg/phylanx/ast/physl.py
rm /home/diehlpk/opt/python-base/ -rf
rm /home/diehlpk/opt/python-base/
git push --set-upstream origin joss
git add paper.md paper.bib
python sso.py --version 1 -n 2 -i 2 --batch 1
cd git/SOO/
cp sso.patch ..
git diff master > sso.patch
git checkout origin/SSO
cp mentoring.tex diversity.tex
mv bond-based-2d-plate-*.pdf plate_small/
mv bond-based-2d-plate-*.npy plate_small/
mkdir plate_small
cd git/diehlpk.github.io/data/list/
cp ../bochum/forschung.tex mentoring.tex
mkdir boulder
cd Documents/Zoom/
touch paper.bib
touch paper.md
cat ../cmake/FindYamlCpp.cmake
cat ../cmake/FindGmsh.cmake
cat ../cmake/FindBlazeIterative.cmake
ls ../cmake/FindBlazeIterative.cmake
vim ../docs/content/cmake-options.md
cmake -L .. | awk '{if(f)print} /-- Cache values/{f=1}'
cmake -LA .. | awk '{if(f)print} /-- Cache values/{f=1}'
git checkout -b docu
cd git/courses/buildinfrastrcuture/
ls data/
cd data/grants/
python bondbased2D-tensile.py 1 4 1
evince nsf.pdf
make nsf
texmaker nsf.tex
python bondbased2D-tensile.py 1 4 17
zip -r rod.zip getData.sh nn/ requirements.txt
python play.py
python sso.py --version 0 -n 2 -i 2 --batch 2
python sso.py --version 0 -n 2 -i 2 --batch 1
kate mod.py
touch mod.py
kate log.txt
python sso.py --version 0 -n 2 -i 2 --batch 2 > log.txt
python sso.py --version 0 -n 2 -i 2 --batch 2 --hpx:threads=1
kate play.py
kater play.py
touch play.py
rm -rf __pycache__/
wget http://mirrors.ctan.org/obsolete/macros/latex/contrib/tkz/tkz-graph/latex/tkz-graph.sty
python sso.py --version 0 -n 2 -i 2
grep test_cpu *.py
kate tester.py
grep nn_nn_state.resid *.py
kate nn.py
kate nn_state.py
kate bp.py
kate sso.py &
python -r ../requirements.txt
rm LinkedList.ipynb
c Documents/
make -j 12 core
patch -p1 < 5039.patch
wget https://patch-diff.githubusercontent.com/raw/STEllAR-GROUP/hpx/pull/5039.patch
python bondbased2D-plate.py 0,2 4 1
python plot.py 1 4 1
git add bondbased2D-plate.py
python bondbased2D-plate.py 0.25 4 1
python bondbased2D-plate.py 0.25 1 1
texmaker parsa_microspoft.tex
cp parsa_microspoft.tex ~/git/LSU_templates/letter/
cp bita_SIParCS.tex parsa_microspoft.tex
cp bita_SIParCS.tex parsa_microspoft.tes
cd Briefe/
python plot.py 1 4 10
git mv bondbased2D-crack.py bondbased2D-tensile.py
cp bondbased2D-crack.py bondbased2D-plate.py
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/bond-based-2d-crack-1.0-4-1-damage.npy" .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/bond-based-2d-crack-1.0-4-1-displacement.npy" .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/bond-based-2d-crack-1.0-4-10-displacement.npy" .
evince bond-based-2d-crack-1.0-4-20-u-y-rotated.pdf
python plot.py 1 4 20
inkscape deformation.pdf
cd images/
history | grep deformation
history | grep deformaiton
cd git/ml20/
wget https://raw.githubusercontent.com/diehlpkteaching/PD/master/config.dat
g++ Project_PD.c++
leafpad Project_PD.c++ &
leafpad Project_PD.c++
make verbose
vim image.cpp
touch image.cpp
cd Diss/
cp thunderbird-68.7.0.tar.bz2 ~/opt/
git add mesh_2d_quad.msh
~/git/NLMech2/build/bin/NLMech -i input_2d_gmsh_quad.yaml --hpx:threads=1
mv untitled.msh mesh_2d_quad.msh
git add input_2d_gmsh_quad.yaml
paraview output_0.vtu &
~/git/NLMech2/build/bin/NLMech -i input_2d_gmsh_triangle.yaml --hpx:threads=1
cp input_2d_gmsh_triangle.yaml input_2d_gmsh_quad.yaml
cp input_2d_gmsh_quad.yaml
gmsh untitled.geo
vim untitled.geo
git mv mesh.msh mesh_2d_triangle.msh
git push origin +HEAD
git reset HEAD^
git mv input.yaml input_2d_gmsh_triangle.yaml
git add mesh.msh
git checkout gmsh
git push --set-upstream origin gmsh
~/git/NLMech2/build/bin/NLMech -i input.yaml --hpx:threads=1
diff output_0.vtu output_1.vtu
cp output_0.vtu output_1.vtu
gmsh mesh.msh
paraview output_0.vtu
leafpad mesh.msh
rm .config/plasma-org
rm .config/plasma-org.*
rm .config/kde*
rm .config/fedora-plasma-cacherc
rm .config/kde.org/ -rf
rm .config/plasma-org.kde*
vim .config/plasma-org.kde.plasma.desktop-appletsrc
sudo dnf groupinstall "KDE Plasma Workspaces"
sudo dnf groupinstall -y "KDE Plasma Workspaces"
sudo dnf groupinstall -y "KDE Workspaces"
sudo dnf groupinstall -y "KDE Worspaces"
sudo dnf groupinstall -y "Xfce Desktop"
sudo dnf groupremove -y "Xfce Desktop"
sudo dnf groupremove -y "XCFE Workspaces"
sudo dnf groupremove -y "KDE Plasma Workspaces"
sudo dnf remove -y "KDE Plasma Workspaces"
sudo dnd remove -y "KDE Plasma Workspaces"
kstart5 plasmashell
sudo killall sddm
sudo dnf remove kde-plasma-desktop
killall plasmashell &
kwin --replace
mv untitled.msh mesh.msh
cp ../qsModel/2D/input.yaml .
mkdir io
git add FindGmsh.cmake
leafpad FindGmsh.cmake
mv FindGnsh.cmake FindGmsh.cmake
cp FindYamlCpp.cmake FindGnsh.cmake
git checkout -b gmsh
git branch -D format
git branch -D test_mesh
git branch -d coverall
git branch -d codacy
git branch -d fix_pp
git branch -d spellcheck
git branch -d remove_csv
gi checkout master
rm -rf ../src/external/csv.h
git checkout -b remove_csv
git push --set-upstream origin test_mesh
ctest -verbose
ctest -v
git checkout -b test_mesh
git push --set-upstream origin coverall
gcovr -e CMakeFiles/ -r .
git checkout -b coverall
sudo dnf install texlive-tkz-graph
sudo dnf search tikz-graph
sudo dnf install texlive-tikz-graph
leafpad sections/chapter3.tex
make install core
make core -j12
git checkout fix_hpxh5
git clone fix_hpxh5
make -j 23 core
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0//build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -Dblaze_DIR=/home/diehlpk/opt/blaze/share/blaze/cmake/  ..
sudo dnf install pybind11-devel
sudo dnf install pybind11-devel-2.5.0-5.fc33.
git add postp.yaml
cp ~/Simulations/PUM/New_Results_Mode_1_crack/2mm/out_large/strain/postp.yaml .
cd out_large/strain
mkdir out_large/strain
mkdir out_large
git mv input_large.yaml input/
mkdir input
git add input_large.yaml
cp ~/Simulations/PUM/New_Results_Mode_1_crack/2mm/inp/input_large.yaml .
git clone https://github.com/diehlpk/paperPUMPD.git
chromium-browser
sudo dnf install chromium
leafpad team.md &
sudo echo 256 > /proc/sys/fs/inotify/max_user_instances
echo 256 > /proc/sys/fs/inotify/max_user_instances
leafpad team.md
zip figures.zip *.pdf
cd upload/
cd SNAS_PeriHPX/
python bondbased2D-crack.py 1 4 1
leafpad bondbased2D-crack.py
cp ../bondbased2D-crack.py .
mkdir new
python bondbased2D-crack.py 1 4 21
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/bond-based-2d-crack-1.0-4-19-displacement.npy" .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/bond-based-2d-crack-1.0-4-20-displacement.npy" .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/bond-based-2d-crack-1.0-4-20-f.npy" .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/bond-based-2d-crack-1.0-4-19-f.npy" .
evince bond-based-2d-crack-u-y-1.0-4-30.pdf &
python bondbased2D-crack.py 1 4 20
cp ../../inp/mesh.vtu .
cd out_large/strain/
~/git/NLMech2/build/bin/mesh -i input_mesh.yaml
cd inp
cd strain/
cd out/strain/
ls ../../inp/input_mesh.yaml
cp ../../out/strain/postp.yaml .
mkdir strain
cd out_large/
~/git/NLMech2/build/bin/
cd out
git checkout -b smartpointers
git push --set-upstream origin hpx1.5
dnf search python3-pip
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0//build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -Dblaze_DIR=/home/diehlpk/opt/blaze/share/blaze/cmake/  ..
make core
make =j 12
git checkout -b hpx1.5
cmake -DHPX_DIR=/home/diehlpk/git/hpx_main/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -Dblaze_DIR=/home/diehlpk/opt/blaze/share/blaze/cmake/  ..
cd hpx-1.4.1/build/
sudo dnf install blaze-devel
~/git/NLMech2/build/bin/NLMech -i input_large.yaml --hpx:threads=20
cp input.yaml input_large.yaml
cpm input.yaml input_large.yaml
mkdir ../out_large
inkscape ../info/setup.svg &
/usr/bin/python /home/diehlpk/.vscode/extensions/ms-python.python-2020.10.332292344/pythonFiles/pyvsc-run-isolated.py pip install -U pylint --user
sudo dnf system-upgrade download --releasever=33
sudo dnf remove openjfx
sudo dnf remove openjfx8-8.0.202-24.b07.fc33.x86_64
python bondbased2D-crack.py 1 4 19
evince ~/Desktop/Rob/Analytic-tensile/bond-based-2d-crack-u-y-1.0-4-19.pdf &
evince bond-based-2d-crack-u-y-1.0-4-19.pdf &
evince bond-based-2d-crack-u-y-1.0-4-10.pdf &
evince bond-based-2d-crack-u-y-1.0-4-20.pdf &
evince bond-based-2d-crack-u-y-1.0-4-21.pdf &
evince bond-based-2d-crack-u-y-1.0-4-21.pdf
vim ../sso/CMakeLists.txt
cmake -DTorch_DIR=/home/diehlpk/torch/install/share/cmake/torch/ ..
cmake -DTorch_DIR=/home/diehlpk/torch/install/share/cmake/torch/
ls /home/diehlpk/torch/install/share/cmake/torch/
ls /home/diehlpk/torch/install/
ls /home/diehlpk/torch/install
ls /home/diehlpk/torch/install/bin/
texmaker lecture16.tex
texmaker exercise9.tex
texmaker exercise8.tex
./install.sh
bash install-deps
cd ~/torch/
git clone https://github.com/torch/distro.git ~/torch --recursive
dnf search torch
dnf search torch/
cp bond-based-2d-crack-1.0-4-19-displacement.npy ~/git/AnalyticStiffnessPython/
git mv PeriHPX/ SNAS_PeriHPX
latexmk -pdf preprint.tex
texmaker preprint.tex &
aspell -c -l EN_us template.tex
evince template.pdf &
bibtex template
pdflatex template.tex
cp ../spmpsci.bst .
cp ../bib.bib .
cp ../benchmark*efficency.pdf .
cp ../benchmark*speedup.pdf .
cp ../matrix.pdf .
cp ../*_matrix.pdf .
cp ../*_boundary.pdf .
cp ../*_snapshot.pdf .
cp ../*_new.pdf .
cp ../implicit_1D_energy.pdf .
cp ../implicit_1D_stress.pdf .
cp ../implicit_1D_strain.pdf .
pdflatex template.text
cp ../classses.pdf .
cp ../svglov3.clo .
cp ../svjour3.clo .
cp ../svjour3.cls .
cp ../template.tex .
mkdir upload
latemk -pdf template.tex
paas -c lsu
git add reply.tex
aspell -c -l EN_us reply.tex
cd revletterSN2/
git mv SC20_octotiger/ IDPDS20
gimp setup.svg
cd info/
cd ~
evince bond-based-2d-crack-1.0-4-20-u-y-rotated.pdf &
ls *.npy
evince bond-based-2d-crack-u-y-1.0-4-20.pdf
evince bond-based-2d-crack-u-y-1.0-4-22.pdf
evince bond-based-2d-crack-1.0-4-21-u-y-rotated.pdf &
evince bond-based-2d-crack-1.0-4-10-u-y-rotated.pdf &
cp bond-based-2d-crack-1.0-4-10-displacement.npy ~/git/AnalyticStiffnessPython/
cd Desktop/Rob/Analytic-tensile/
ls bond-based-2d-crack-d-*.pdf
evince bond-based-2d-crack-d-*.pdf
evince bond-based-2d-crack-1.0-4-1-u-y-rotated.pdf &
evince bond-based-2d-crack-1.0-4-1-u-y-rotated.pdf
evince test.pdf &
evince test.pdf
code plot.py
touch plot.py
python bondbased2D-crack.py 1 4 41
evince bond-based-2d-crack-d-1.0-4-39.pdf
ls bond-based-2d-crack-d-1.0-4-39.pdf
ls bond-based-2d-crack-d-1.0-4-40.pdf
ls bond-based-2d-crack-d-1.0-4-*.pdf
evince bond-based-2d-crack-d-1.0-4-1.pdf
evince bond-based-2d-crack-d-1.0-4-32.pdf
cd git/hpx
rm -rf __physlcache__/ __pycache__/
evince bond-based-2d-crack-u-y-1.0-4-32.pdf
wget https://raw.githubusercontent.com/STEllAR-GROUP/phylanx/master/tests/unit/plugins/matrixops/ndim.cpp
cd tests/unit/plugins/matrixops/
cd phylanx/
cd git/phylanx/
rm ../tests/unit/plugins/matrixops/norm.cpp
rm ../tests/unit/plugins/matrixops/ndim.cpp
rm ../src/plugins/matrixops/norm.cpp
rm ../phylanx/plugins/matrixops/norm.hpp
rm phylanx/plugins/matrixops/norm.hpp
kate sso.py
git add ../paper8.csv
kate ../README.md
evince paper8.pdf
python paper8.py
evince paper8.py
kate ../paper8.csv
git add paper8.py
kate paper8.py
cp paper7.py paper8.py
cd git/couplingpaperexamples/
python bondbased2D-crack.py 1 4 32
evince bond-based-2d-crack-u-y-1.0-4-31.pdf
sudp dnf update
evince bond-based-2d-crack-d-1.0-4-29.pdf
evince bond-based-2d-crack-d--1.0-4-29.pdf
evince bond-based-2d-crack-u-y-1.0-4-29.pdf
evince bond-based-2d-crack-u-y-1.0-4-30.pdf
evince bond-based-2d-crack-u-y-1.0-4-27.pdf
evince bond-based-2d-crack-u-y-1.0-4-28.pdf
evince bond-based-2d-crack-d-1.0-4-28.pdf
evince bond-based-2d-crack-d-1.0-4-27.pdf
evince bond-based-2d-crack-d-1.0-4-26.pdf
evince bond-based-2d-crack-d-1.0-4-25.pdf
texmaker lecture15.tex &
cp bond-based-2d-crack-1.0-4-20-displacement.npy ~/git/AnalyticStiffnessPython/
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/bond-based-2d-crack-1.0-4-20-*.npy" .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/bond-based-2d-crack-1.0-4-20.npy" .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/bond-based-2d-crack-1.0-4*.npy" .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/bond-based-2d-crack-1.0-4.npy" .
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/bond-based-2d-crack-*.npy" .
ls *20.pdf
evince bond-based-2d-crack-d-1.0-4-20.pdf
scp rostam:"/home/diehlpk/Simulations/AnalyticStiffnessPython/bond-based-2d-crack-*.pdf" .
cd Dropbox/Analytic-tensile/
kate 7.html
firefox HW7.html
leafpad 7.html
touch 7.html
wget https://github.com/diehlpkteaching/f20-exercise7-mason1871/blob/main/HW7.html
wget https://raw.githubusercontent.com/diehlpkteaching/f20-exercise7-mason1871/main/HW7.html?token=AA55UA4WQ7LY75T7K4JPJG27TBOHK
unzip  pan107s1.zip
ls pan107s1.zip
cd courses/ParallelComputationMathExercise/
texmaker forschung.tex &
aspell check -l de_de forschung.tex
sudo dnf install aspell-de
aspell check -l de forschung.tex
apsell check -l de forschung.tex
latexmk -pdf forschung.tex
rm forschung.bbl
evince ../bochum/bewerbung_diehl.pdf
cd goettingen/
cp -r bochum/ goettingen
makw
makwe
texmaker main.tex &
cd git/documents/papers/SC20_octotiger/
evince forschung.pdf &
cd bochum/
vim 2020-10-18-siam20m19-videos.md
vim 2019-12-20-floss-software.md
vim  2020-10-18-siam20m19-videos.md
git add  2020-10-18-siam20m19-videos.md
cp 2020-03-13-wfm2020-videos.md 2020-10-18-siam20m19-videos.md
openshot-qt
cp ~/Downloads/functions.pdf .
cp ~/Downloads/VHM-*.pdf .
cp ~/Downloads/EDM-*.pdf .
cp ~/Downloads/EDM-correction.pdf .
cp ~/Downloads/EDM-Error-QuarticSolution.pdf .
cp ~/Downloads/VHM-Error-QuarticSolution.pdf .
cp ~/Downloads/EDM-Error-QuadraticSolution.pdf .
cp ~/Downloads/EDM-Corrected-Comparison-QuarticSolution.pdf .
texmaker siamanual2020.tex &
cd siamanual2020/
mv siamanual2020.tex siamanual2020/
mkdir siamanual2020
display siampic-1.png
pdftoppm siam.pdf siampic -png
evince siam.pdf
ls siampic-1.png
texmaker siamanual2020.tex
cp talk.tex siamanual2020.tex &
cd git/LSU_templates/talk/
ls siampic-1.ppm
pdftoppm siam.pdf siampic
mv sima siam.pdf
pdftoppm sima siampic
sudo rpm  --import package-signing-key.pub
pdftoppm -png gsoc20.pdf talk
sudo dnf install poppler-utils
latexmk -pdf gsoc20.tex
git add paper7.csv
git add paper7.py
evince paper7.pdf
python paper7.py
kate ../paper7.csv
kate paper7.py
cp paper6.py paper7.py
cat paper6_coarse.csv
git add plots/idle_rates_cut.png
evince main.pdf
gimp plots/idle_rates.png
display plots/idle_rates.png
evince plots/idle_rates.png
evince exercise7.pdf
evince exercise8.pdf
pass daint
pass insert daint
gnuplot fig6.gnuplot > fig6.pdf
leafpad fig6.gnuplot
gnuplot fig5.gnuplot > fig5.pdf
leafpad fig5.gnuplot
gnuplot fig4.gnuplot > fig4.pdf
pyhton
evince fig4.pdf
vim fig4.gnuplot
evince fig3.pdf
gnuplot fig3.gnuplot > fig3.pdf
vim fig3.gnuplot
cd Downloads/pi/
pwgen -n 15  -y -s
pwgen -n 15  -y
ssh-add ~/.ssh/id_daint
texmaker long.tex
tail publications.bib
xournalpp Latex-Briefvorlage.pdf
cp ~/git/diehlpk.github.io/data/list/publications.bib .
cp grants.tex forschung.tex
latexmk -pdf grants.tex
cp ~/git/diehlpk.github.io/data/grants/grants.tex .
leafpad run.sh
rm cv.pdf.1
evince Latex-Briefvorlage.pdf
evince Latex-Briefvorlage.
latexmk -pdf Latex-Briefvorlage.tex
cp -r weihenstephan/ bochum
ls weihenstephan/
ls mannheim/
python bondbased2D-crack.py 1 4 4
python bondbased2D-crack.py 1 4 3
texmaker exercise7.tex
texmaker exercise6.tex
texmaker lecture12.tex &
mv MATLAB.gitignore .gitignore
wget https://raw.githubusercontent.com/github/gitignore/master/Global/MATLAB.gitignore .gitignore
git add Run\ of\ Show\ template.xlsx
cp ~/Documents/Konferenzen/Pannel/Sc20/Run\ of\ Show\ template.xlsx .
cp ~/Documents/Konferenzen/Pannel/Sc20/
git add tbaa_sc20_panelArtboard-4@4x-003-762x1024.png
git mv *.pdf slides/
mkdir slides
git add 2020_sc_tbaaPanel_kaleV6.pdf
cp ~/Downloads/2020_sc_tbaaPanel_kaleV6.pdf .
cp ~/Downloads/2020_sc_tbaaPanel_kaleV6.pdf
git add SC\ Panel\ presentation\ -\ julia.pdf
cp ~/Downloads/SC\ Panel\ presentation\ -\ julia.pdf .
git add Asynchronous\ C++\ \(Panel\ SC20\).pdf
cp ~/Downloads/Asynchronous\ C++\ \(Panel\ SC20\).pdf .
rm Asynchronous\ C++\ \(Panel\ SC20\)\(1\).pdf
cp ~/Downloads/Asynchronous\ C++\ \(Panel\ SC20\)\(1\).pdf .
cp ~/Downloads/Asynchronous\ C++\ \(Panel\ SC20\)\(1\).pdf
wget https://stellar-group.org/files/Asynchronous%20C++%20(Panel%20SC20).pdf
git add section2.vtt
cp ~/Downloads/my_captions\ \(1\).vtt section2.vtt
git add section1.vtt
cp ~/Downloads/my_captions.vtt section1.vtt
cd TBAA2020/
git clone https://github.com/STEllAR-GROUP/TBAA2020.git
cd git/paperBCBBPD/
systemsettings5
evince fig10b.pdf
gnuplot fig10b.gnuplot > fig10b.pdf
leafpad fig10b.gnuplot
evince fig10a.pdf
gnuplot fig10a.gnuplot > fig10a.pdf
leafpad fig10a.gnuplot
gnuplot fig10a.gnuplot
leafpad bare_jrnl-gnuplottex-fig8.tex
evince bare_jrnl-gnuplottex-fig8.pdf
evince bare_jrnl-gnuplottex-fig10.pdf
ls bare_jrnl-gnuplottex-fig10.pdf
texmaker bare_jrnl-gnuplottex-fig10.tex
cp bare_jrnl-gnuplottex-fig10-eps-converted-to.pdf bare_jrnl-gnuplottex-fig10.pdf
cp bare_jrnl-gnuplottex-fig10.pdf
display bare_jrnl-gnuplottex-fig10.eps
leafpad bare_jrnl-gnuplottex-fig10.tex
evince bare_jrnl.pdf
latexmk -shell-escape -pdf bare_jrnl.tex
texmaker bare_jrnl.tex
latexmk -C
latexmk -Ca
latexmk -pdf bare_jrnl.tex
unzip SC\ PI\ paper\ \(Preprint\).zip
unzip abstracts.zip
cp ../SC\ PI\ paper\ \(Preprint\).zip .
cd pi
mkdir pi
sudo dnf install HandBrake-gui
dnf search handbrake
python bondbased2D-crack.py 1 4 2
python bondbased2D-crack.py 1 4 2 &
rm *.obj
python bondbased2D-crack.py 0.5 4 1
python bondbased2D-crack.py 5 4
libreoffice 08_Run\ of\ Show\ template.xlsx
libreoffice 08_Run of Show template.xlsx
unzip Phylanx-DL-Preprint.zip
rm Phylanx-DL-Preprint.zip
rm Phylanx-DL-Preprint\(2\).zip
rm Phylanx-DL-Preprint\(1\).zip
rm template.tex
mv gsoc20.pdf gsc20_opensource-openscience.pdf
texmaker gsoc20.tex
cp talk.tex gsoc20.tex
cd talk/
cd git/LSU_templates/
evince webpage/exercise6.pdf
evince exercise6.pdf
make insta;;
patch -p1 < 1276.patch
patch -p1 1276.patch
wget https://patch-diff.githubusercontent.com/raw/STEllAR-GROUP/phylanx/pull/1276.patch
rm tests/regressions/python/1266_sum_axis_argument.py
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_yu_yue_11-WbdfDu6gXrUOic3kuffWFDD0v-92zj.pdf yue.png
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_Scott_James_1MZ7ltZSBXDmORNIeofieG34XYDc1k8Ak.pdf scott.png
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_Seleson_Pablo_1Mf34Wp67qqaClxArehrM6iSJFIgmElh3.pdf pablo.png
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_Tian_Xiaochuan_1Gxql49qckZ6rF5rKrogPWnznQHGkiurr.pdf tian.png
convert -density 500 -background white -alpha remove -alpha off --flatten title_abstract_PKJha_latex\ -\ Prashant\ Kumar\ Jha.pdf ka.png
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_DElia_Marta_1ZJgN1KlR-wM3sEMLiiUbZqk_tBoh9mqd.pdf marta.png
evince abstract_DElia_Marta_1ZJgN1KlR-wM3sEMLiiUbZqk_tBoh9mqd.pdf
evince abstract_Lipton_Robert_1GgjxingQEW_l1c7fXu4Ul84AepI-oUB3.pdf
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_Lipton_Robert_1GgjxingQEW_l1c7fXu4Ul84AepI-oUB3.pdf rob.png
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_Diehl_Patrick_1ZL98wS5z-koiBoaDXDmwDwbsJXjd8mff.pdf diehl.png
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_Aksoylu_Burak_1nZwSOqAmXwSKuNoHGYNR6pwiYbYjjvpZ.pdf burak.png
evince abstract_Aksoylu_Burak_1nZwSOqAmXwSKuNoHGYNR6pwiYbYjjvpZ.pdf
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_Bhattacharya_Debdeep_1b7z_KMZGISMR_MUfDYTg5pEfhzKbunOo.pdf debdeep.png
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_Bhattacharya_Debdeep_1b7z_KMZGISMR_MUfDYTg5pEfhzKbunOo.pdf debdeep.pnh
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_Martowicz_Adam_1bI1gXdpkk6dq2VYk_iYdOFiMAc7M3ruI.pdf adam.png
evince abstract_Martowicz_Adam_1bI1gXdpkk6dq2VYk_iYdOFiMAc7M3ruI.pdf
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_Oterkus_Selda_1oFRvLZIhrXXqHsp03u9QuzGrn5fNHhW_.pdf selda.png
evince abstract_Oterkus_Selda_1oFRvLZIhrXXqHsp03u9QuzGrn5fNHhW_.pdf
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_Silling_Stewart_1pruC0TZ0woYciv9OMbAqel0ij34ZucUA.pdf  silling.png
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_Oterkus_Erkan_1bdJUJpUSc4QE0HreOFbeObvORPmDjJ0j.pdf  erkan.png
display scabbo.png
convert -density 500 -background white -alpha remove -alpha off --flatten abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf  scabbo.png
convert -density 500 -background white --flatten abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf  scabbo.png
convert -background white --flatten   abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf  scabbo.png
convert -density 250 -background white --flatten   abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf  scabbo.png
convert -trim abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf -resize 500% -quality 100  scabbo.png
convert -trim abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf -resize 250% -quality 100  scabbo.png
convert -trim abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf -quality 100  scabbo.png
convert -trim abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf -resize 500% -quality 100 -sharpen scabbo.png
convert -trim 24.pdf -resize 500% -quality 100 -sharpen 0x1.0 24-11.jpg
pdftk
convert -density 250 abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf -quality 90 scabbo.png
convert -density 250 -background white    abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf -quality 90 scabbo.png
convert -density 250 -background white --flatten   abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf -quality 90 scabbo.png
convert -background white --flatten -density 250  abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf -quality 90 scabbo.png
convert -background white --flatten -density 500  abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf -quality 90 scabbo.png
convert -background white --flatten -density 500  abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf -quality 100 scabbo.png
display scabbo.jpeg
convert -background white --flatten -density 150  abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf -quality 90 scabbo.png
convert -background white --flatten -density 150  abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf -quality 90 scabbo.jpeg
dnf search pdftoppm
convert -background white --flatten  abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf scabbo.jpeg
convert -background white  abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf scabbo.png
convert -background white -flatten abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf scabbo.png
evince abstract_Scabbia_Francesco_1-Z_3lI78lT5SbNA7RsK2sH6fz5iv30eM.pdf
convert -background white -flatten abstract_Oterkus_Erkan_1bdJUJpUSc4QE0HreOFbeObvORPmDjJ0j.pdf erkan.png
evince abstract_Silling_Stewart_1pruC0TZ0woYciv9OMbAqel0ij34ZucUA.pdf
display silling.png
convert -background white -flatten abstract_Silling_Stewart_1pruC0TZ0woYciv9OMbAqel0ij34ZucUA.pdf silling.png
convert abstract_Silling_Stewart_1pruC0TZ0woYciv9OMbAqel0ij34ZucUA.pdf silling.png
8.24
sudo dnf install openshot
dnf search openshot
sudo dnf install opennshot
ls D*
sud dnf update
git push --set-upstream origin update_docker
git checkout -b update_docker
cd NLMech
git poush
make -j 25
cd build/pwd
texmaker exercise5.tex
git rm main.cpp
git add main.cpp
touch main.cpp
git add test.cpp
cd f20-exercise5-mason1871
cd diehlpkteaching/f20-exercise5-mason1871
git clone https://github.com/diehlpkteaching/f20-exercise5-mason1871.git
texmaker lecture10.tex &
make -j 35
patch -p1 < 1270.patch
wget https://patch-diff.githubusercontent.com/raw/STEllAR-GROUP/phylanx/pull/1270.patch
make -j 34
cd f20-exercise3-hrashid10/
rm main.bbl
ls main.*
latexmk -pdf -C
cd papers/SC20_octotiger/
cd out/
cd Simulations/PUM/New_Results_Mode_1_crack
vim Simulations/PUM/New_Results_Mode_1_crack
cd mm
python example.py
kate example.py
rm ../tests/regressions/python/1255_assign_string.py
rm tests/regressions/python/1255_assign_string.py
rm __physlcache__/
make -j 32
patch -p1 < 1257.diff
git checkout 681be3856b557b504ec81d59491e5187f4cc4d58
patch -i < 1257.diff
kate
cd SOO/
cd SSO
vim example.py
sudo systemctl restart bluetooth;
systemctl status bluetooth
systemctl --global --user is-enabled obex
sudo systemctl start bluetooth;
kate ../example.py
git checkout phylanx_share_dict
git checkout phylanx_share
git add 2020-09-24-phylanx.md
vim 2020-09-24-phylanx.md
cp 2020-03-13-wfm2020-videos.md 2020-09-24-phylanx.md
dnf search python
patch -p1 1257.diff
git am 1257.diff
git am *
git apply 1257.diff
wget https://patch-diff.githubusercontent.com/raw/STEllAR-GROUP/phylanx/pull/1257.diff
cd Compile/phylanx/
python bondbased2D-crack.py 1 4
python bondbased2D-crack.py 0.5 4
python bondbased2D-crack.py 0.25 4
touch example.py
kate matrix_free.py
kate gcr.py
kate gcr.py nn.py matrix_free.py
vim sso.py
cmake -DHPX_DIR=/home/diehlpk/git/hpx_main/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -Dblaze_DIR=/home/diehlpk/opt/blaze/share/blaze/cmake/ -DHPX_WITH_MALLOC=system  ..
male clean
pdflatex SIAM_TEXLA_2020.tex
evince SIAM_TEXLA_2020.pdf
leafpad SIAM_TEXLA_2020.tex
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -Dblaze_DIR=/home/diehlpk/opt/blaze/share/blaze/cmake/  ..
cd Compile/blaze_tensor/
git push --set-upstream origin phylanx_share
git checkout -b phylanx_share
git checkout -n phylanx_share
vim tester.py
vim nn.py
./getData.sh
vim getData.sh
python sso.py --version 0 -n 1 -i 1
leafpad nn.py
leafpad sso.py
leafpad bp.py
leafpad nn2.py
leafpad matrix_free.py
leafpad gcr.py
gdb
pass -c erlangen
git commit -m "Add mkdir to the script" getData.sh
cat getData.sh
evince ../ParallelComputationMath/lecture14-slides.pdf &
time ./a.out
python sso.py
pip install -r requirements.txt
git rm data/*ubyte
git rm data/*.ubyte
rm data/*ubyte
ls data/t10k-images-idx3-ubyte
rm data/*.ubyte
SOO/
mkdir /home/diehlpk/opt/python-base/
mdkir /home/diehlpk/opt/python-base/
ls /home/diehlpk/opt/
sudo dnf install openblas-devel
dnf search blas
sudo dnf install libblas-devel
sudo dnf install blas-devel
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -Dblaze_DIR=/home/diehlpk/opt/blaze/share/  ..
sudo dnf remove blaze-devel
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -DbLAZE_DIR=/home/diehlpk/opt/blaze/share/  ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ -DBLAZE_DIR=/home/diehlpk/git/blaze/  ..
cd blaze
git clone https://bitbucket.org/blaze-lib/blaze.git
git clone git clone https://bitbucket.org/blaze-lib/blaze.git
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.5.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
make -j 20 core
ls ~/opt/
tar -xvf hpx-1.5.0.tar.gz
cp ~/Downloads/hpx-1.5.0.tar.gz .
git checkout 03ad3b8cc145c3ed65784dfb3a650c3d813dceb9
make intall
git checkout f6a7ab2ae69ff52af32fdfabeaad53787d01bca0
git switch f6a7ab2ae69ff52af32fdfabeaad53787d01bca0
git checkout a7329360543d594839387ddbbc19e52258ca4888
git checkout 5bc015a9974e8f3d9a3068c5641c5dc2e8707ba9
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
ls ~/Compile/hpx-1.1.0/
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
dnf search pybind
sudo dnf install pybind11
cd blaze_tensor/
git clone https://github.com/STEllAR-GROUP/blaze_tensor.git
git clone https://github.com/STEllAR-GROUP/phylanx.git
mv mirror.py scripts/
git clone https://github.com/diehlpk/peridigm.git
sudo dnf install vtk-devel
rm ../out/*.vtu
rm ../out/strain/*.vtu
mpicc
mpi
module load
make -j 6
sudo dnf install hdf5-devel.x86_64
dnf search hdf5
cd Trilinos-trilinos-release-13-0-0/
tar xvf trilinos-release-13-0-0.tar.gz
wget https://github.com/trilinos/Trilinos/archive/trilinos-release-13-0-0.tar.gz
cd git/documents/papers/PeriHPX/
cd Documents/JOSS/
ls ../out/ -lah
ls ../out/
evince bond-based-2d-crack-u-y-1.0-4-1.pdf
evince bond-based-2d-crack-u-y-1.0-4-10.pdf
zip -r daint.zip PizDaint_2019/
zip -r incite.zip INCITE_2019/
zip -r INCITE_2019/ incite.zip
cd INCITE_2016/
cd allocation_requests/
cd git/documents
evince ../ParallelComputationMath/lecture13-slides.pdf &
evince ../ParallelComputationMath/lecture12-slides.pdf &
evince ../ParallelComputationMath/lecture15-slides.pdf &
cd sso/
evince ../ParallelComputationMath/lecture14.pdf &
evince ../ParallelComputationMath/lecture13.pdf &
git log HEAD~2
gdb sso/sso.exe
cd ml20/
g++ 1.cc
vim 1.cc
claer
cd f20-exercise3-Arash-Amini1
git clone https://github.com/diehlpkteaching/f20-exercise3-Arash-Amini1.git
vim one.cpp
g++ one.cpp
wget https://raw.githubusercontent.com/diehlpkteaching/N-Body/master/nbody.txt
cd f20-exercise3-chfont
git clone https://github.com/diehlpkteaching/f20-exercise3-chfont.git
g++ nBody.cpp
cd f20-exercise3-ChristophLarson
git clone https://github.com/diehlpkteaching/f20-exercise3-ChristophLarson.git
g++ Nbody.cpp
vim Nbody.cpp
cd f20-exercise3-adibifard
git clone https://github.com/diehlpkteaching/f20-exercise3-adibifard.git
evince bond-based-2d-crack-d-1.0-4-10.pdf
evince bond-based-2d-crack-d-1.0-4-9.pdf
evince bond-based-2d-crack-d-1.0-4-8.pdf
evince bond-based-2d-crack-d-1.0-4-7.pdf
evince bond-based-2d-crack-d-1.0-4-6.pdf
evince bond-based-2d-crack-d-1.0-4-5.pdf
evince bond-based-2d-crack-d-1.0-4-4.pdf
evince bond-based-2d-crack-d-1.0-4-3.pdf
vim Nbodymain.cpp
g++ Nbodymain.cpp
cd f20-exercise3-mason1871
cd f20-exercise3-mason1871.
git clone https://github.com/diehlpkteaching/f20-exercise3-mason1871.git
vim excercise3Harun.cpp
g++ excercise3Harun.cpp
cd f20-exercise3-hrashid10
git clone https://github.com/diehlpkteaching/f20-exercise3-hrashid10.git
convert IMG_9384.HEIC 01.png
ls *.HEIC
ls *.heic
g++ exercise3-2.cpp
cd git/courses/ParallelComputationMathExercise/code/
evince bond-based-2d-crack-u-y-1.0-4-3.pdf
evince bond-based-2d-crack-u-y-1.0-4-2.pdf
evince grid-crack.pdf
convert bond-based-2d-crack-d-1.0-4-5.pdf prashant.png
evince bond-based-2d-crack-u-y-1.0-4-5.pdf
evince bond-based-2d-crack-u-y-1.0-4-4.pdf
evince bond-based-2d-crack-u-y-1.0-5-3.pdf
convert bond-based-2d-crack-u-y-1.0-4-1.pdf
convert bond-based-2d-crack-u-y-1.0-4-2.pdf prashant.png
evince bond-based-2d-crack-d-1.0-4-2.pdf
evince bond-based-2d-crack-u-x-1.0-4-1.pdf
evince bond-based-2d-crack-u-x-1.0-4-10.pdf
bibtex template.
vim Nbody_template.cpp
cd git/courses/N-Body/
g++ Ex3.cpp
vim Ex3.cpp
mv Ex3.txt Ex3.cpp
g++ Ex3.txt
ls Ex3.txt
evince bond-based-2d-crack-u-x-1.0-4-2.pdf
evince bond-based-2d-crack-d-0.125-5-3.pdf
evince bond-based-2d-crack-u-d.0-4-1.pdf
rm bond-based-2d-crack*.pdf
python bondbased2D-crack.py 0.125 4
pass -c ornl-overleaf
texmaker exercise4.tex
teams &
sudo dnf localinstall teams-1.2.00.32451-1.x86_64.rpm
wget wget https://packages.microsoft.com/yumrepos/ms-teams/teams-1.2.00.32451-1.x86_64.rpm
vim CHANGELOG.txt
cd dopelib/
git clone git://git.mathematik.tu-darmstadt.de/dopelib
git clone git clone git://git.mathematik.tu-darmstadt.de/dopelib
ssh pizdaint
cp -r revletterSN/ revletterSN2/
python bondbased2D-crack.py 0.0005 4
evince bond-based-2d-crack-d-0.00125-4-2.pdf
evince bond-based-2d-crack-d-0.00125-4-1.pdf
evince bond-based-2d-crack-u-y-0.00125-4-1.pdf
evince bond-based-2d-crack-u-x-0.00125-4-1.pdf
python bondbased2D-crack.py 0.001 4
python bondbased2D-crack.py 0.00125 4
evince bond-based-2d-crack-d-0.125-4-10.pdf
ls Desktop/Rolland/Attempt4/
ls Desktop/Rolland/
ls Desktop/
git push --set-upstream origin copy
rm -rf data/
rm *-ubyte
git checkout -b copy
./prep.bash
sso/sso.exe --version 0 --log - -n 60000 -i 1  --write_nn pinit_1
cp ../data/* .
ls sso/
cp ../../data/* .
convert  grid-crack.pdf grid.png
cat prep.bash
ls ../data/
chmod a+x prep.bash
cp prep.bash build/
vim prep.bash
./sso/sso.exe
./sso/sso.exe --help
cp *.pdf ~/Dropbox/Rob/
pacmd list-source
rm -r ~/.config/skypeforlinux/
sudo dnf install audacity
evince bond-based-2d-crack-d-0.125-4-9.pdf
evince bond-based-2d-crack-d-0.125-4-8.pdf
evince bond-based-2d-crack-d-0.125-4-7.pdf
evince bond-based-2d-crack-d-0.125-4-6.pdf
evince bond-based-2d-crack-d-0.125-4-5.pdf
evince bond-based-2d-crack-d-0.125-4-4.pdf
evince bond-based-2d-crack-d-0.125-4-3.pdf
evince bond-based-2d-crack-d-0.125-4-2.pdf
evince bond-based-2d-crack-d-0.125-4-1.pdf
cd HW2.xcodeproj/
cd f20-exercise1-mason1871
vim Abbas_exercise_2-2.cpp
vim Abbas_exercise_2-1.cpp
g++ Abbas_exercise_2-2.cpp
g++ Abbas_exercise_2-1.cpp
cd f20-exercise2-aalha24
git clone https://github.com/diehlpkteaching/f20-exercise2-aalha24.git
cd f20-exercise2-chfont
g++__ one.cpp
g__ one.cpp
git clone https://github.com/diehlpkteaching/f20-exercise2-chfont.git
g++ 2.cc
cd f20-exercise2-Arash-Amini1
git clone https://github.com/diehlpkteaching/f20-exercise2-Arash-Amini1.git
g++ ex2no1.cpp
vim ex2no1.cpp
cd f20-exercise2-jeffreytepper
git clone https://github.com/diehlpkteaching/f20-exercise2-jeffreytepper.git
g++ Ex2_p1.cpp
cd f20-exercise2-adibifard
git clone https://github.com/diehlpkteaching/f20-exercise2-adibifard.git
vim monteCarlo.cpp
g++ monteCarlo.cpp
g++ measuringTime.cpp
vim measuringTime.cpp
cd f20-exercise2-AjBoogie
git clone https://github.com/diehlpkteaching/f20-exercise2-AjBoogie.git
vim Exercise2Harun.cpp
g++ Exercise2Harun.cpp
cd f20-exercise2-hrashid10
git clone https://github.com/diehlpkteaching/f20-exercise2-hrashid10.git
leafpad all
convert  bond-based-2d-crack-u-y-0.125-4-10.pdf result.png
evince bond-based-2d-crack-d-0.125-4.pdf
cd f20-exercise3-diehlpk
git clone https://github.com/diehlpkteaching/f20-exercise3-diehlpk.git
texmaker exercise5.tex &
evince bond-based-2d-crack-u-y-0.125-4-1.pdf
evince bond-based-2d-crack-u-x-0.125-4-1.pdf
cat ../sso/sso.cpp
git checkout -b ubuntu
vim ../sso/sso.cpp
evince bond-based-2d-crack-u-y-0.125-4.pdf
evince bond-based-2d-crack-u-x-0.125-4.pdf
python bondbased2D-crack.py 0.2 4
python bondbased2D-crack.py 0.1 4
python bondbased2D-crack.py
code bondbased2D-crack.py
git add bondbased2D-crack.py
cp bondbased2D.py bondbased2D-crack.py
git push --set-upstream origin spellcheck
find -name "*.h" -exec grep frac "{}" ";"
find -name "*.h" -exec grep fran "{}" ";"
find -name "*.h" -exec grep franc "{}" ";"
grep franc *.h
grep /franc *.h
grep *.h /franc
grep /franc
find . -name "*.h" -exec aspell --mode=ccpp check -l En_us "{}" ";"
find . -name "*.h"
vim spellcheck.sh
./spellcheck.sh
git checkout -b spellcheck
git ckout master
~/git/NLMech2/build/bin/pp -i postp.yaml --hpx:threads=20
vim problem_setup.m
texmaker exercise2.tex &
texmaker exercise3.tex &
python problem_setup.m
cd New_Results_Mode_1_crack_disp/
cp -r New_Results_Mode_1_crack New_Results_Mode_1_crack_disp
vim exercise1-3.cpp
g++ exercise1-3.cpp
g++ exercise1-1.cpp
cd f20-exercise1-aalha24/
git clone https://github.com/diehlpkteaching/f20-exercise1-aalha24.git
vim Q3.cpp
vim Q2.cpp
g++ Q3.cpp
g++ Q2.cpp
cd f20-exercise1-hrashid10/
git clone https://github.com/diehlpkteaching/f20-exercise1-hrashid10.git
vim taylor.cpp
g++ taylor.cpp
vim gaming.cpp
g++ gaming.cpp
vim loopExercisePT2.cpp
vim loopExercise.cpp
cd f20-exercise1-AjBoogie
git clone https://github.com/diehlpkteaching/f20-exercise1-AjBoogie.git
git add :/main.cpp
cd 4997.xcodeproj/
git clone https://github.com/diehlpkteaching/f20-exercise1-mason1871.git
vim taylorSeries.cpp
cd f20-exercise1-ChristophLarson/
git clone https://github.com/diehlpkteaching/f20-exercise1-ChristophLarson.git
evince lecture6-slides.pdf
evince lecture5-slides.pdf
evince exercise3.pdf
cd Simulations/PUM/New_Results_Mode_1_crack/2mm/
vim src/model/util.cpp
vim tools/dc/src/fd.cpp
vim tools/dc/src/fe.cpp
vim tools/mesh/src/2d/fe2D.cpp
vim src/material/pd/ElasticState.cpp
vim src/util/utilGeom.cpp
vim src/fe/tetElem.cpp
ls ../out/strain/
~/git/NLMech2/build/bin/pp -i postp.yaml --hpx:threads=15
~/git/NLMech/build/bin/pp -i postp.yaml --hpx:threads=15
cp postp.yaml ../../inp/
git push --set-upstream origin fix_pp
git checkout -b fix_pp
vim ../tools/CMakeLists.txt
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
git checkout newJintegral
git checkout 1.04854214061483
0
0
0
0
0.71597106318641
0
0
0
0
0
0.920534224096857
0
0
0
0
0.818252643641644
0
0
0
0
0
0
0.8182526436416
0
0
0
0
0
0
0
0
0
0
0.920534224096857
0
0
0
0
0
3.20682202629687
89.5872074682574
git branch -d circle-ci README docu
unzip SC20_Virtual_Presenter_Packet.zip
~/git/NLMech2/build/bin/NLMech -i input.yaml --hpx:threads=15
git clone https://github.com/lums658/ml20.git
git checkout relase
git push --set-upstream origin README
git checkout -b README
leafpad config.yml
make docs
leafpad _posts/2020-07-01-season3-epsiode-7.markdown
git checkout spack
gir checkout spack
vim 2020-07-01-season3-epsiode-7.markdown
git add thumbs/FFS030_thumb.png
convert -resize 64x64 FFS030_header.png thumbs/FFS030_thumb.png
git add FFS030_header.png
display FFS030_header.png
cp ~/Downloads/FOSS_for_science_podcast_template_FFS030_Spack_750x500.png  FFS030_header.png
cp ~/Downloads/FOSS_for_science_podcast_template_FFS028_NUMFOCUS_750x500.png  FFS030_header.png
cp ~/Downloads/FOSS_for_science_podcast_template_FFS028_NUMFOCUS_750x500.png FFS028_header.png FFS030_header.png
cd assets/img/blog/
wget https://raw.githubusercontent.com/nonlocalmodels/nonlocalheatequation/master/.circleci/Docker/Dockerfile
leafpad ../README.md
touch config.yml
cd NLMech2
git clone https://github.com/nonlocalmodels/NLMech.git NLMech2/
leafpad papers.csv
cp ~/Downloads/papers.csv .
source joss/bin/activate.fish
vim 3.cc
g++ 3.cc
vim 2.cc
cd f20-exercise1-Arash-Amini1/
cd f20-exercise1-adibifard/
git clone https://github.com/diehlpkteaching/f20-exercise1-Arash-Amini1.git
g++ P3.cpp
vim P3.cpp
vim P2.cpp
g++ P2.cpp
g++ P1.cpp
vim P1.cpp
vim hw1.cpp
git clone https://github.com/diehlpkteaching/f20-exercise1-adibifard.git
git add sso.py
/home/diehlpk/git/SOO/deps/bin/python3 /home/diehlpk/.vscode/extensions/ms-python.python-2020.8.105369/pythonFiles/pyvsc-run-isolated.py pip install -U pylint
source /home/diehlpk/git/SOO/deps/bin/activate.fish
ls *ubyte
ls *-ubyte
source deps/bin/activate.fish
touch sso.py
source deps/bin/activate
python3 -m venv deps
git add getData.sh
ghit add getData.sh
find . -name "*.gz"
find . -name="*.gz"
cd data/
rm train-images-idx3-ubyte.gz
chmod a+x getData.sh
mkdir data
git clone https://github.com/STEllAR-GROUP/SOO.git
~/git/NLMech/build/bin/NLMech -i input.yaml --hpx:threads=15
make -j 8
git checkout pkj-improve
cd git/NLMech/
git push --set-upstream origin JOSS3
git checkout -b JOSS3
git ceckout -b JOSS3
cd docs/joss_paper/
cd git/hpx_main/docs/joss_paper/
veromix
lsusb
cheese
sudo dnf install cheese
cheesw
pavucontrol
git mv Lecture3-Limits.ipynb Lecture3.ipynb
git add Lecture3-Limits.ipynb
mv Lecture3-Limits\ .ipynb Lecture3-Limits.ipynb
cp ../../ParallelComputationMathExamples/chapter2/Lecture3-Limits\ .ipynb
cp ../../ParallelComputationMathExamples/chapter2/Lecture3-Limits\ .ipynb .
firefox Lecture2.ipynb
cd notebooks/
git clone https://github.com/diehlpkteaching/CxxExplorer.git
texmaker lecture11.tex &
../../../NLMech/build/bin/NLMech -i input.yaml  --hpx:threads=12
time ~/git/NLMech/build/bin/NLMech -i input.yaml --hpx:threads=20
git add mesh.yaml
vim ~/git/paperComparePDPF/example1/inp/problem_setup.py
cp ~/git/paperComparePDPF/example1/inp/input.yaml  .
../../../NLMech/build/bin/mesh -i mesh.yaml -d 2
vim mesh.yaml
cp ~/git/paperComparePDPF/example1/inp/mesh.yaml .
cd notchedPlate/
mkdir notchedPlate
cd paperComparePDPFEXP/
git clone https://github.com/diehlpk/paperComparePDPFEXP.git
cd paper
mkdir papers
rm -rf JOSSSubmission/
ls JOSS/
rm -rf muDIC/
rm findiff/ findiff2/ -rf
rm findiff/ findiff2/
git rm findiff/ findiff2/
vim season3.csv
git add qs_2d_code.png
convert ~/Downloads/nlmech-u-x.png qs_2d_code.png
convert ~/Downloads/bond-based-2d-u-x-0.1-5.pdf qs_2d_code.png
git add qs_ccm.png
convert ccm-2d-u-x.pdf qs_ccm.png
cp ~/git/AnalyticStiffnessPython/ccm-2d-u-x.pdf .
cd assets/img/
git add ../assets/img/qs_2D_mesh.png
git add qs-2d-elastic.md
leafpad qs-1d-properties.md
unzip SIAM\ TEX-LA\ 2020.zip
cp ../SIAM\ TEX-LA\ 2020.zip .
cd siam/
mkdir siam
gem install bigdecimal
export PATH=/home/diehlpk/bin/:$PATH
gem install bigdecimal --local
gem install LoadError: cannot load such file -- bigdecimal.so
rvm
sudo dnf install rvm
git rm .clang-format
rm ../.clang-format
git push --set-upstream origin fix-cmake
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -Dblaze_DIR=/home/diehlpk/opt/blaze/share/blaze/cmake/  -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
git checkout -b fix-cmake
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -Dblaze_DIR=/home/diehlpk/git/blaze/cmake/  -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
owd
ls cmake/
ls path
cd ~/git/blaze/
git push --set-upstream origin material
git checkout -b material
pdflatex -shell-escape bare_jrnl.tex
bibtex bare_jrnl
pdflatex bare_jrnl.tex
unzip SC\ PI\ paper.zip
mv SC\ PI\ paper.zip paper
sudo gem update --system
ruby
rm Gemfile.lock
bundle remove
bundle remove Gemfile
rm -rf /home/diehlpk/.gem/
bundle install sitemap
gem install  jekyll-sitemap
bundle install jekyll-sitemap
sudo dnf install texlive-scheme-full
dnf search texlive
sudo dnf install texlive-large
sudo dnf install ruby rubygems
sudo dnf install ruby ruby-gems
sudo dnf remove ruby
sudo dnf uninstall ruby
sudo dnf uninstall ruby*
sudo dnf remove ruby*
gem uninstall bundler -x --force
gem install asciidoctor
git branch -d bug/reactionforce feature/force_in_fixity
git branch -D cmake-options
git branch -D circle-ci
git branch -d circle-ci
git branch -d documentation
git branch -d comments
git branch -d material
git branch -d moderncmake
git branch -d moredoc
git branch -d merging
nash
time python bondbased2D.py 0.1 5
evince bond-based-2d-u-y-0.1-5.pdf &
evince bond-based-2d-u-x-0.1-5.pdf &
firefox  1.1\ New\ Objective_Measure.htm
git push --set-upstream origin cmake-options
vim ../docs/content/contributing.md
git add cmake-options.md
mv contributing.md cmake-options.md
git mv contributing.md cmake-options.md
cd docs/content/
ls docs/doxy/
git checkout -b cmake-options
git checkout -b cmake options
git add output_res.vtu
cp output_1.vtu output_res.vtu
cp ../1D/input_compare.yaml .
cp ../1D/input_compare.yaml
display nlmech-u-x.png
inkscape nlmech-u-x.svg.gz
evince nlmech-u-x.svg.gz
leafpad 2020-10-01-season3-epsiode-5.markdown
git push --set-upstream origin gnu
git add 2020-10-01-season3-epsiode-5.markdown
vim  2020-10-01-season3-epsiode-5.markdown
ls  2020-10-01-season3-epsiode-5.markdown
cp 2020-04-01-season3-epsiode-3.markdown 2020-10-01-season3-epsiode-5.markdown
git checkout -b gnu
git checkout gnu
git branch -d setuptools
git branch -d numfocus
time ../../../build/bin/NLMech -i input.yaml --hpx:threads=5
../../../build/bin/NLMech -i input.yaml --hpx:threads=5
cd 2D/
git checkout material
cd ../1D/
python bondbased2D-condition.py 0.1 5
git push --set-upstream origin moredoc
git checkout -b moredoc
sudo dnf install dvips
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=lib_Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=lib_RelWithDebInfo  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cmake -DHPX_DIR=/home/diehlpk/opt/hpx/lib64/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cp ~/Downloads/TeachingPaper\(2\).pdf Diehl-Gateways2020.pdf
gdb ~/git/NLMech/build/bin/NLMech
/usr/bin/python /home/diehlpk/.vscode/extensions/ms-python.python-2020.8.103604/pythonFiles/pyvsc-run-isolated.py pip install -U pylint --user
git push --set-upstream origin JOSS2
git add joss_paper/
cp -r ~/joss_paper/ .
git checkout -b JOSS2
git ceckout -b JOSS2
git beckout -b JOSS2
cp -r joss_paper/ ~/
git checkout JOSS
kate paper.bib
dnf search jabref
sudo dnf install jabref
kbibtex paper.bib
time ~/git/NLMech/build/NLMech -i input.yaml --hpx:threads=20
sed 's/  */ /g' -i paper.md
sed 's/  */ /g' paper.md
tr -s ' ' paper.md
tr -s ' ' paper,md
firefox ~/Downloads/katie.pdf &
okular ~/Downloads/katie.pdf &
evince ~/Downloads/katie.pdf &
evince ~/Downloads/kappa.pdf &
file -i paper.md
convert Simula_-_logo.svg simula.png
50*0.6
leafpad ~/joss-authors.txt
python bondbased2D-condition.py 0.25 2
rm grid-*.pdf
rm grid-*
evince bond-based-2d-e-x-0.1-5.pdf &
python bondbased2D.py 0.25 5
evince bond-based-2d-e-x-0.25-5.pdf &
evince bond-based-2d-u-e-0.25-5.pdf &
evince bond-based-2d-u-x-0.25-5.pdf &
evince bond-based-2d-u-y-0.25-5.pdf &
evince bond-based-2d-e-y-0.25-5.pdf &
evince bond-based-2d-e-y-0.1-5.pdf &
evince ccm-2d-u-y.pdf &
evince bond-based-2d-u-x-0.1-5.pdf
evince bond-based-2d-e-x-0.1-5.pdf
python bondbased2D-condition.py 0.25 4
python bondbased2D-condition.py 0.25 3
evince bond-based-2d-e-y-0.1-5.pdf
evince bond-based-2d-u-y-0.1-5.pdf
evince bond-based-2d-u-x-0.1-3.pdf
evince bond-based-2d-u-x-0.1-4.pdf
rm -rf ~/.zoom/
zomom
java -jar languagetool.jar
cd LanguageTool-5.0/
git checkout test
evince bond-based-2d-e-x-0.1-4.pdf
python bondbased2D-condition.py 0.25 1
pip install --user shapelt
pip install --user shapely
python bondbased2D-condition.py 0.1 4
python bondbased2D-condition.py 0.1 -4
python bondbased2D-condition.py
cp bondbased2D.py bondbased2D-condition.py
python bondbased2D.py 0.1 4
evince bond-based-2d-u-x-0.25-4.pdf &
evince bond-based-2d-u-x-0.125-4.pdf &
unzip BoundaryPaper\ \(Copy\).zip
git add data/stencil_*
mv stencil_* data/
cp ../ParallelComputationMath/data/stencil_* .
vim input
time ~/git/NLMech/build/NLMech -i input.yaml --hpx:threads=15
leafpad paper.md &
vim ../info/setup.svg &
vim ../info/info.md
ls ../info/
git mv hpx_architecture.pdf docs/joss_paper/
ls docs/joss_paper/
git mv paper.bib paper.md docs/joss_paper/
mkdir docs/joss_paper
mv paper.md2 paper.md
vim paper.md2
iconv -f ISO-8859-1 -t UTF-8//TRANSLIT paper.md -o paper.md2
dos2unix paper.bib
dos2unix paper.md
~/git/NLMech/build/NLMech -i input.yaml --hpx:threads=15
python bondbased2D.py 0.25 4
vim ~/Downloads/New_Results_Mode_1_crack/2mm/inp/input.yaml
dnf search gcov
coveralls --exclude build --gcov-options '\-lp' -t kWINXydGr0PPONgehuCOh3APx38WJcMg3
basg
gcovr -r .
gcovr -r ..
gcovr -r
gcovr
rm NLMech
ls bin
ls bin/NLMech -lah
ls bin/NLMech
libreoffice ../info/crack_path.ods
git checkout fix_nlmech
~/git/NLMech/build/NLMech -i input.yaml --hpx:threads=5
wget https://raw.githubusercontent.com/nonlocalmodels/nonlocalheatequation/master/.circleci/config.yml
inkscape info/setup.svg
okular info/setup.svg
evince info/setup.svg
display info/setup.svg
cd New_Results_Mode_1_crack/
unzip New_Results_Mode_1_crack.zip
cp /home/diehlpk/Downloads/New_Results_Mode_1_crack.zip .
cd /home/diehlpk/Downloads/New_Results_Mode_1_crack.zip .
mkdir PUM
mkdir Simulations
rm ../include/Config.h
git checkout codecoverage
coveralls --exclude build  --gcov-options '\-lp' -t kWINXydGr0PPONgehuCOh3APx38WJcMg3
cmake -DHPX_DIR=/home/diehlpk/opt/hpx/1.4.1/lib64/cmake/HPX/  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
coveralls   --gcov-options '\-lp' -t kWINXydGr0PPONgehuCOh3APx38WJcMg3
coveralls --exclude build  --gcov-options '\-lp' -t 4DfUYPsrwug88XV31c0PQqBwrt3rhjqeT
coveralls --exclude build --gcov-options '\-lp' -t 4DfUYPsrwug88XV31c0PQqBwrt3rhjqeT
coveralls --exclude lib --exclude tests --gcov-options '\-lp'
bahs
which coversall
coveralls
sudo podman run -it c8c2d6df52c6 /bin/bash
sudo podman rmi c8558c9c20b6
sudo podman rmi 5ba73528d694
sudo podman rmi 536f3995adeb
sudo podman rm 536f3995adeb
sudo podman images rm 536f3995adeb
sudo podman images rm docker.pkg.github.com/nonlocalmodels/nonlocalheatequation/nonlocalmodels
sudo podman images -D docker.pkg.github.com/nonlocalmodels/nonlocalheatequation/nonlocalmodels
sudo podman list
sudo podman pull diehlpk/nonlocalmodels:baseimage
sudo podman pull diehlpk/nonlocalheatequation
pip remove --user cpp-coveralls
pip install --user cpp-coveralls
./configure --enable-gcov && make && make check
coveralss
/usr/bin/python3 -m pip install --upgrade pip
vim .github/labeler.yml
git push --set-upstream origin codecoverage
git checkout -b codecoverage
git checkout  master
git checkout -b master
git push --set-upstream origin exlcude-gh-pages
git checkout -b exlcude-gh-pages
git rm -rf docs/
git clone https://github.com/nonlocalmodels/nonlocalheatequation.git
git rebase origin/gh-pages
git rm -rf docs/doxy/html/*
git rm -rf docs
git add documentation/*
cp -r docs/doxy/html/* documentation/
ls documentation/
git rm -rf documentation/
git commit -m "Add documentation" documentation/*
mkdir documentation
git rm docs/ -rf
vim ./.circleci/config.yml
git push origin gh-pages
git add  docs/doxy/html/*
git commit -m "test"
git merge
git checkout docs
git branch -D documentation
git branch -D workflow
git branch -D doxygen
firefox docs/doxy/html/index.html
git add  docs/doxy/html/
ls docs/doxy/html/
ssh-keygen -t rsa -m PEM -C "bot@github.com" -f github_circle-ci
git checkout josstag
git push --set-upstream origin josstag
git checkout -b josstag
git add images/initial_conditons.pdf
git add images/solution.pdf
cp ~/git/courses/ParallelComputationMath/images/solution.pdf .
cp ~/git/courses/ParallelComputationMath/images/initial_conditons.pdf  .
leafpad long.tex &
inxi -D
inxi
sudo lshw
lshw
/dev/sda
fdisk
free
cd ~/Compile/webpage/ParallelComputationMath
evince ../ParallelComputationMath/lecture8.pdf &
evince ../ParallelComputationMath/lecture12.pdf &
git branch -D Add-labeler clean format format2
make -
git push --set-upstream origin moderncmake
xcmake ..
time make -j 5
cmake -DHPX_DIR=/home/diehlpk/opt/hpx/lib64/cmake/HPX/  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
git checkout moderncmake
git checkout -b moderncmake
git checkout -n moderncmake
cat ../src/Config.h
ls ../src/Config.h
cmake ,.
git push --set-upstream origin comments
git checkout -b comments
git checkout format2
git branch format2
git add .github/labeler.yml
ls data/test/
ls data
leafpad labeler.yml &
git add labeler.yml
git add stale.yml
wget https://raw.githubusercontent.com/nonlocalmodels/nonlocalheatequation/master/.github/workflows/stale.yml
cat workflows/stale.yml
ls workflows/stale.yml
ls workflows/
wget https://raw.githubusercontent.com/nonlocalmodels/nonlocalheatequation/master/.github/labeler.yml
cd .github/
git checkout Add-labeler
git push --set-upstream origin format2
git checkout -b format2
git push --set-upstream origin format
git merge abort
git merge stop
git merge clean
git checkout format
git push --set-upstream origin clean
git rm -rf ../cmake-build-debug/
git checkout -b clean
../../../NLMech/build/bin/NLMech -i input2.yaml  --hpx:threads=12
cmake -DHPX_DIR=/home/diehlpk/opt/hpx/1.4.1/lib64/cmake/HPX/ -DCMAKE_BUILD_TYPE=Release  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cd hpx-1.3.0/build/
make VERBOSe=1
makr
cmake -DHPX_DIR=/home/diehlpk/opt/hpx/1.4.1/lib64/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cd git/hpx/
../../../NLMech/build/bin/NLMech -i input2.yaml  --hpx:threads=1
leafpad log.txt
../../../NLMech/build/bin/NLMech -i input2.yaml  --hpx:threads=1 > log.txt
gdb ../../../NLMech/build/bin/NLMech
../../../NLMech/build/bin/NLMech -i input2.yaml  --hpx:threads=5
../../../NLMech/build/bin/NLMech -i input.yaml  --hpx:threads=5
../../../NLMech/build/bin/NLMech
cd example1/inp/
cd git/NLMech/build/
/home/diehlpk/git/NLMech/build/bin/NLMech "-i" "input2.yaml" "--hpx:threads=5"
vim input2.yaml
rm out*.vtu
/home/diehlpk/git/NLMech/build/bin/NLMech "-i" "input.yaml" "--hpx:threads=5"
cmake -DHPX_DIR=/home/diehlpk/opt/hpx/lib/cmake/HPX/  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cmake -DHPX_DIR=/home/diehlpk/opt/lib/cmake/HPX/  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cmake -DHPX_DIR=/home/diehlpk/opt/hpx-1.4.1/build/lib/cmake/HPX/  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
make VERBOSE=True
make VERBOSE
make -VERBOSE
make --VERBOSE
sudo dnf remove hpx-*
sudo dnf remove hpx
sudo dnf remove hpx*
dnf search hpx
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
python bondbased2D.py 0.125 4
evince bond-based-2d-u-x-0.5-4.pdf &
ls lah
python bondbased2D.py 0.5 4
evince bond-based-2d-u-x-0.5-3.pdf &
evince bond-based-2d-u-x-0.5-2.pdf &
python bondbased2D.py 0.5 2
evince bond-based-2d-u-x-0.5-4.pdf
evince bond-based-2d-u-x-0.041666666666666664-*.pdf
evince bond-based-2d-u-x-0.041666666666666664-5.pdf
evince bond-based-2d-u-x-0.041666666666666664-4.pdf
evince bond-based-2d-u-x-0.041666666666666664-3.pdf
evince bond-based-2d-u-x-0.041666666666666664-2.pdf
rm *pdf
cd Desktop/Rob/Analytic/
evince bond-based-2d-u-x-0.25-4.pdf
bin
cd out_2_3/
ls ~/git/
;s ~/git/
ls ~/Compile/
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.0/build/lib/cmake/HPX/  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/ -DCMAKE_BUILD_TYPE=RelWithDebInfo -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/  -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cd ../../BlazeIterative/
make -j 16
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ -CMAKE_BUILD_TYPE=RelWithDebInfo -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=/home/diehlpk/git/BlazeIterative/ ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DBLAZEITERATIVE_DIR=../../BlazeIterative/ ..
ls ../../BlazeIterative/include/
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.4.1/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON  ..
mske clean
cmake --version
cmake --help
cmake -v
evince bond-based-2d-u-x-*-3.pdf
evince bond-based-2d-u-x-*-2.pdf
evince bond-based-2d-u-x-*-7.pdf
evince bond-based-2d-u-x-*-6.pdf
evince bond-based-2d-u-x-*-5.pdf
evince bond-based-2d-u-x-*-4.pdf
evince bond-based-2d-u-x-0.125-2.pdf
evince bond-based-2d-u-x-0.025-2.pdf
evince bond-based-2d-u-x-0.05-2.pdf
cd vu
git checkout doxygen
git push --set-upstream origin workflow
git checkout -b  workflow
git branch -d workflow
git branch -d publish
git branch -d install
git branch -d test testing
git branch -d license format deploy
git checkout mastter
evince bond-based-2d-f-x-0.5-4.pdf
evince bond-based-2d-f-y-0.5-4.pdf
evince bond-based-2d-u-x-0.5-5.pdf
python bondbased2D.py
git push --set-upstream origin doxygen2
git checkout -b doxygen2
git checkout -b doxygen
git ccheckout -b doxygen
cmake -DOCTOTIGER_WITH_DOCU=ON ..
cmake -DEnable_Documentation=ON ..
git fetch --all --tags
git add ../docs/CMakeLists.txt
git push --set-upstream origin doxygen
rm ../src/Config.h
ls ../include/
git add ../docs/conf.doxy.in
cp -r ~/git/NLMech/docs/ ..
vim docs/conf.doxy.in
cp -r ~/git/NLMech/docs/ .
cmale -DEnable_Documentation=ON ..
./bin/1d_nonlocal_serial
./bin/2d_nonlocal_async
./bin/2d_domain_decomposition
git push --set-upstream origin documentation
leafpad src/2d_nonlocal_serial.cpp
leafpad src/2d_nonlocal_async.cpp
leafpad src/1d_nonlocal_serial.cpp
leafpad src/2d_nonlocal_distributed.cpp
vim src/1d_nonlocal_serial.cpp
./build/1d_nonlocal_serial
leafpad src/*.cpp
vim ../Config.h.in
git add ../Config.h.in
cp ~/git/NLMech/Config.h.in ..
git checkout -b documentation
../../../build/bin/NLMech -i input.yaml --hpx:threads=1
cd 1D/
rm 1d_nonlocal_serial *
vim ./CMakeLists.txt
/home/diehlpk/opt/nonlocalheat/bin/2d_nonlocal_serial
./home/diehlpk/opt/nonlocalheat/bin/2d_nonlocal_serial
git push --set-upstream origin install
git checkout -b install
cd git/NLMech/examples/qsModel/2D/
evince ../mannheim/promotion_zeugnis.pdf
texmaker reply.tex Latex-Briefvorlage.tex
cd aachen/
mv manheim/ mannheim/
cp -r manheim/ aachen
display Frucht_planar_Lombardi.png
convert Frucht_planar_Lombardi.svg Frucht_planar_Lombardi.png
convert Frucht_planar_Lombardi.svg Frucht_planar_Lombardi.pdf
pass erlangen
pass insert erlangen
vim erlangen
evince bond-based-2d-u-x.pdf &
cd,,
cd .,
../../../build/bin/NLMech -i input.yaml --hpx:threads=8
../../../build/bin/NLMech -i input.yaml --hpx:threads=4
dnf search wacom
kcm-touchpad-list-devices
sudo dnf install kcm_wacomtablet
leafpad Latex-Briefvorlage.tex &
cd mittweida/
cp manheim/ mittweida -r
cd Documents/B
evince bond-based-2d-e-x.pdf &
evince ccm-2d-e-x.pdf &
evince bond-based-2d-u-y.pdf &
evince ../ParallelComputationMath/lecture11.pdf &
cd ../ParallelComputationMathScript/
evince bond-based-2d-u-x.pdf ccm-2d-u-x.pdf &
../../../build/bin/mesh -i input.yaml -d 2
evince bond-based-2d-u-y.pdf ccm-2d-u-y.pdf &
evince bond-based-2d-f-x.pdf &
evince bond-based-2d-f-y.pdf &
cd ~/git/AnalyticStiffnessPython/
leafpad ../webpage/index.md
texmaker syllabus.tex
cd syllabus/
texmaker preprint.tex
cd Downloads/LanguageTool-5.0/
cp ~/template.tex .
diff template.tex ~/Downloads/template.tex
git add images/2019-05-17-github-invitation.png
git add images/2019-05-17-github-assingment.png
ls images/
latexmk -pdf reply.tex
cd revletterSN/
java languagetool.jar
unzip LanguageTool-5.0.zip
ssh home.ccs.ornl.gov
evince ccm-2d-u-z.pdf &
git commit -m "Update input for the 1D test, since we divide by the volume in the code" input.yaml
git commit -m "Update input for the 1D test, since we divide by the volume in the code"
pyth ccm-2d.py
vim plot.py
evince world.png
python -m pip install  pygal_maps_world --user
python -m pip install pygal --user
display pull_per_year.png
evince applications_per_year.png
git clone https://github.com/diehlpk/HPX_GSoC_Stats.git
git add pd.bib
touch pd.bib
git add phase-field.bib
mv phase-field.bib reviewPDPF/
mkdir reviewPDPF
touch phase-field.bib
cd bibliography/
../../../build/bin/mesh -i input_mesh.yaml -d 2 --hpx:threads=1
../../../build/bin/NLMech -i input.yaml --hpx:threads=1 > log.txt
vim log.txt
vim log.txto
pwgen -n -s  25
pwgen -n -s -y 25
vim 05.results.md
git rm images/topic_cloud.pdf
cp ~/Documents/JOSS/topic_cloud.svg images/
git add images/topic_cloud.svg
sudo rpm -i flash-player-npapi-32.0.0.403-release.x86_64.rpm
sudo rpm -i flash-player-npapi-32.0.0.403-release.x86_64.rpm --nogpgcheck
cd 1D
vim build/build.sh
bash build/build.sh
manubot webpage
python -m http.server
export PATH=/home/diehlpk/.local/bin/:$PATH
/home/diehlpk/.local/bin/manubot
ls /home/diehlpk/.local/bin/manubot
pip install --user manubot
which namubot
./build.sh
pip install --upgrade pip
pip install manubot
conda
data
git commit -m "Add word cloud image" images/
git add images/topic_cloud.pdf
git add 04.methodology.md 05.results.md
vim 04.methodology.md
cat 03.intro.md
touch 04.methodology.md
cp ~/Documents/JOSS/topic_cloud.pdf images/
vim content/
cd joss-year4-paper/
git clone https://github.com/openjournals/joss-year4-paper.git
cd JOSS
mkdir JOSS
rm -rf Joss
cd JOss
mkdir JOss
git add chapter9/
cp ../../courses/ParallelComputationMath/code/11/*ipynb chapter9/
mkdir chapter9
ls 11
rm a.out
rm -rf lecture5/
git rm lecture5/
ls lecture5
git add chapter7/lecture7-*
ls chapter7/
git rm 07/lecture7-*
cp ../../courses/ParallelComputationMath/code/07/lecture7-* chapter7/
mkdir chapter7
ls 07/
rm lecture7-race.cpp
git rm lecture7-race.cpp
git add chapter6/lecture7-race.cpp
cp ../../courses/ParallelComputationMath/code/lecture7-race.cpp chapter6/
mkdir chapter6
ls chapter3/
vim lecture7-race.cpp
ls lecture7-race.cpp
git rm 09/MatrixPower.ipynb
git add chapter4/MatrixPower.ipynb
git add chapter5/CG.ipynb
mv chapter4/CG.ipynb chapter5/
mkdir chapter5
cp ../../courses/ParallelComputationMath/code/09/MatrixPower.ipynb chapter4/
git rm -r 10/
git rm 10/
cd code/
evince lecture11-slides.pdf &
cp ../../courses/ParallelComputationMath/code/10/CG.ipynb chapter4/
mkdir chapter4
cp ../../courses/ParallelComputationMath/code/10/CG.ipynb
mkdir chapter3
cd chapter2/
doplhin .
foplhin .
evince lecture11-slides.pdf
cd courses/ParallelComputationMath/
cp ../../../diehlpk.github.io/assets/2019-05-17-github-invitation.png .
cp ../../../diehlpk.github.io/assets/2019-05-17-github-assingment.png .
cp ../../../diehlpk.github.io/assets/assets/2019-05-17-github-assingment.png .
cp ../../../diehlpk.github.io/assets//assets/2019-05-17-github-assingment.png .
ls book*
rm book.lol
vim _posts/blog/2019-05-17-githubclassroom.md
sudo podman push docker.pkg.github.com/nonlocalmodels/nonlocalheatequation/nonlocalmodels:latest
sudo podman publish docker.pkg.github.com/nonlocalmodels/nonlocalheatequation/nonlocalmodels:latest
sudo podman tag 536f3995adeb docker.pkg.github.com/nonlocalmodels/nonlocalheatequation/nonlocalmodels:latest
sudo podman login docker.pkg.github.com -u diehlpk
sudo dnf remove xournal
sudo dnf install xournalpp
dnf search xournal
git mv Docker.file Docker/Dockerfile
vim Docker.file
git add Docker.file
touch Docker.file
cp ~/git/
python bondbased1D.py
rm output_1.vtu
../../../build/bin/mesh
sudo podman run --rm -p 8787:8787 diehlpk/nonlocalmodels:baseimage
sudo podman login docker.pkg.github.com -u diehlpk --password-stdin
sudo podman  push diehlpk/nonlocalheatequation:latest
git push --set-upstream origin publish
git checkout publish
git branch publish
latexmk -pdf classses.tex
latexmk -CA -pdf
texmaker spmpsci.bst
git add svglov3.clo
git add svjour3.clo
git add svjour3.cl* -f
git add svjour3.cl*
kate paper.md
aspell -c -l EN_us preprint.tex
git add benchmark_2D_*.pdf
git add benchmark2DimplicitSpeedup.py
evince benchmark_2D_explicit_efficency.pdf &
evince benchmark_2D_explicit_efficency.pdf
python benchmark2DimplicitSpeedup.py
vim benchmark2DimplicitSpeedup.py
evince benchmark_2D_implicit_efficency.pdf
evince benchmark_2D_explicit_speedup.pdf
vim benchmark2Dexplicit.py
evince benchmark_2D_implicit_speedup.pdf
evince benchmark2DimplicitSpeedup.py
vim benchmark2Dimplicit.py
evince bond-based-2d-u-x.pdf
evince bond-based-2d-u-x.pdf ccm-2d-u-x.pdf
find . -type f -name "*.dat"
find / -type f -name "*.dat"
find / -type f -name *.dat
cd bin
ls build/
cd git/PeridynamicHPX/
ls data_convergence_rate/1d/
ls data_convergence_rate/
vim matrix.dat
ls *.dat
ls -lah *.py
ls -lah *.python
cd manheim/
evince timetable/timetable.pdf
vim timetable/timetable.pdf
python nomad-dic.py input.dat
vim nomad-dic.py
cd dic/
python transform.py
vim transform.py
history | grep nomad
vim input_elas_2D-dic.yaml
ls ../test_vol_fr44_120x36_centered.csv
cat dic/run.sh
vin nomad-dic.py
vim dic/vf2.py
cp ~/Downloads/test_vol_fr44_120x36.csv .
cd PeriPyVFM/
cd git/PeriPyDIC/
vim example1/
cd
vim force.py
evince bond-based-2d-u-y.pdf ccm-2d-u-y.pdf
notebook
vim 2020-07-23-ipython-notebooks.md
vim 2015-11-02-hpx-ubuntu-12.04.md
vim 2020-03-13-wfm2020-videos.md
vim  2020-07-23-ipython-notebooks.md
cp 2020-03-13-wfm2020-videos.md 2020-07-23-ipython-notebooks.md
hiyt pull
source joss/bin/activate
python -m venv joss
cd JOSS/
cd mkdir JOSS
evince bond-based-2d-e-x.pdf
ping 132.176.117.110
ping -c 6 online-uebungssystem.fernuni-hagen.de
dnf search ab | grep apache
dnf search ab
ab
ping -c 6  https://online-uebungssystem.fernuni-hagen.de
ping -c 6  https://online-uebungssystem.fernuni-hagen.de/psytest/KursStartSeite/12345/SS20/
ping https://online-uebungssystem.fernuni-hagen.de/
ping https://online-uebungssystem.fernuni-hagen.de/psytest/KursStartSeite/12345/SS20/
ping https://online-uebungssystem.fernuni-hagen.de/psytest/KursStartSeite/12345/SS20
evince bond-based-2d-e-x
sudo dnf install metis-devel metis
sudo dnf install metis-devel metis-libs
sudo dnf install metis-devel
dnf search metis
sudo dnf install gmsh-devel
dnf search gmsh
git add ../format.sh
cp ../NLMech/format.sh .
cp ../NLMech/format.sh
vim book.tex
git add sections/chapter*.tex
git add *.cpp
mv Managment.ipynb lecture20-managment.ipynb
mv Function_pointer.ipynb lecture20_function_pointer.ipynb
mv argument.cpp lecture20-argument.cpp
mv pointers.ipynb lecture20-pointers.ipynb
mv Arithmetic.ipynb lecture20_arithmetic.ipynb
cp ../../../courses/ParallelComputationMath/code/20/* .
cd chapter2
git commit -m "Increase font size" ccm-2d.py
vim output_1.vtu
../../../build/bin/NLMech -i input.yaml
cd git/NLMech/examples/qsModel/
evince bond-based-2d-e-y.pdf
evince bond-based-2d-e-u.pdf
evince bond-based-2d-u-y.pdf
vim vf1.py
vim vf2.py
wc -l test_vol_fr50_centered.csv
ls =lah
;s =lah
make edit
make unite
cd hamburg_fh/
cp -r ulm/ hamburg_fh
cd ulm/
cp ~/Downloads/test_vol_fr45.csv .
cp ~/Downloads/test_vol_fr50.csv .
cp ~/Downloads/test_vol_fr50.csv
cd gateways2020/
git clone https://github.com/diehlpk/gateways2020.git
cp ccm-2d-u-x.pdf ~/Dropbox/
cp bond-based-2d-u-x.pdf ~/Dropbox/
cd //
bash &
bsh
texmaker validation-2d.tex
leafpad validation-2d.tex
cp validation-1d.tex validation-2d.tex
cd Documents/Bilder/
vim input.dat
vin input_elas_2D-dic.yaml
vm input.dat
vim dic/vf3.py
vim dic/vf1.py
vin transform.py
vim webpage/
git add images/deformation.pdf
cp deformation.pdf images/
mkdir images
cp ../ParallelComputationMath/images/deformation.pdf .
python pd_dic.py -i input_elas_2D.yaml -t dic
python setup.py install --user
vim setup.py
vim input_elas_2D.yaml
cd PeriPyDIC/
dnf repoquery --whatrequires hpx-devel
dnf repoquery --whatrequires hpx
rpm -q --whatrequires hpx
dnf info hpx
git clone https://git.overleaf.com/5ea9cbf1f24d1c0001992b8f
pass insert else
vim run_nomad.sh
./nomad
cd b
cdb
cd install/
cat README.txt
cd builds/
cd nomad.3.8.1/
unzip nomad.3.8.zip
python nomad-dic.py input_test.dat
vim input_test.dat
cd paperBCBBPD/
cp input.dat input_test.dat
vim results_frame20_centered.csv
touch transform.py
cp ../PeriPyDIC/results_frame20.csv .
vim 2017-05-04-gsc-projects.md
ls *gsc*
ls *gsoc*
vim 2016-03-07-gsc.md
evince EDM-Corrected-Comparison-QuarticSolution.pdf
python example2-edm-correction.py
evince EDM-Corrected-Error-2-QuarticSolution.pdf &
evince EDM-Corrected-Error-2-QuarticSolution.pdf
evince EDM-correction.pdf &
evince VHM-convergence-eps-0.01-neumann-Solution.pdf
ls VHM-convergence-eps-0.01-neumann-Solution.pdf
python example4-2-neumann.py
python example4-neumann.py
evince LLEM-convergence-eps-0.1-neumann-Solution.pdf
python example2-convergence2.py
python functions.py
okular book.pdf
sudo dnf install okular
sudo dnf install ocular
evince book.pdf
evince lecture10-slides.pdf &
evince lecture10-slides.pdf
cp ~/Downloads/test_vol_fr44.csv results_frame20.csv
cp results_frame20.csv ../PeriPyDIC/
cat results_frame20.csv | wc -l
cat results_frame20.csv | wc -;
cat results_frame20.csv
vi input.dat
pdflatex classses.tex
rm preprint.nlo
rm preprint.bbl
latexmk -CA -pdf clean
git add elsarticle-num.bst
wget http://tug.ctan.org/tex-archive/macros/latex/contrib/elsarticle/elsarticle-num.bst
scp ~/Downloads/ParaView-v5.7.0.tar.gz rostam:/data/octovis/Compile
cat ~/.ssh/id_rsa_lm2.pub | ssh diehlpk@rostam.cct.lsu.edu "cat >> ~/.ssh/authorized_keys"
sudo dnf update --nogpgcheck
sudo dnf update --nopgpcheck
ssh -vvv rostam
ping rostam2.cct.lsu.edu
python ../../pd_dic.py -i input_elas_2D.yaml -t pd
python ../../pd_dic.py -i input_elas_1D.yaml -t pd
vim input_elas_1D.yaml
python ../../pd_dic.py -i input_elas_1D.yaml -t dic
cp ../../test/input_elas_1D_x+.yaml input_elas_1D.yaml
cd pd/
vim input_DIC_2d.yaml
python ../../pd_dic.py -i input_DIC_2d.yaml -t dic
cd examples/dic/
leafpad ../ParallelComputationMathScript/README.md
leafpad ../ParallelComputationMath/Readme.md
git rm -rf docker/
cat Docker/generate.sh
git add Docker/
rm -rd Docker/docker/
ls Docker/
mkdir Docker/
cp ../ParallelComputationMathExercise/docker/ Docker
cp ../ParallelComputationMathExercise/docker/ Docker -r
cat ~/GH_TOKEN.txt | sudo podman login docker.pkg.github.com -u diehlpk --password-stdin
cat ~/GH_TOKEN.txt | podman login docker.pkg.github.com -u diehlpk --password-stdin
cat ~/GH_TOKEN.txt | docker login docker.pkg.github.com -u diehlpk --password-stdin
cp ~/git/buildinfrastrcutre/.circleci/ . -r
git clone git@github.com:diehlpkteaching/buildinfrastrcuture.git
cd docker/
dnf search tkz-graph
vim run_tests_2D.sh
./run_tests_1D.sh
tools/run_tests_1D.sh
vim tools/run_tests_1D.sh
git rm dic_example.py
vim dic_example.py
cd test/
libreoffice 3pointPMMA/PMMA-3point.csv
unzip 3pointPMMA.zip
ls *.zip
vin input.dat
vim nomad.py
cat dic/field_1.csv
cat dic/vf1.py
ls dic/
git add vf*.py
python vf2.py ../results_frame20.csv
python vf1.py ../results_frame20.csv
vim ../Bending/vf1.py
vim ../Bending/vf2.py
cp ../../PeriPyDIC/results_frame20.csv ..
python vf1.py
cp ../Bending/vf2.py .
cp ../Bending/vf1.py .
mkdir dic
rm -rf DIC/
mkdir DIC
rm -rf mudic
cd mudic/
mkdir mudic
mdkir mudic
git checkout -b dic
git branch -D dic
cd Bending/
vim ../run.sh
ls Bending/
vim param_0.txt
rm np
rm 50_interpolated.csv
rm param.txt
vim np
ls np
git checkout dic
git branch -D references
git branch dic
history | grep python
cd ../PeriPyVFM/
cp ~/Downloads/test_vol.csv results_frame20.csv
git commit -m "Add IEEE journal template" ieee.tex
git add ieee.tex
cp ~/Downloads/IEEETransactions_LaTeX/IEEEtran/bare_jrnl.tex ieee.tex
cp ~/Downloads/IEEETransactions_LaTeX/IEEEtran/bare_jrnl ieee.tex
texmaker ieee.tex
cp IEEEtran.cls ~/git/documents/papers/SC20_octotiger/ieee.tex
cp bare_jrnl.tex ~/git/documents/papers/SC20_octotiger/ieee.tex
evince IEEEtran_HOWTO.pdf
cd IEEEtran/
evince Transactions-instructions-only.pdf
cd IEEETransactions_LaTeX/
unzip IEEE-Transactions-LaTeX2e-templates-and-instructions.zip
wc -l results_frame20.csv
leafpad results_frame20.csv
latexmk -pdf=lualatex Latex-Briefvorlage.tex
wget https://raw.githubusercontent.com/PanCakeConnaisseur/latex-briefvorlage-din-5008/master/Latex-Briefvorlage.tex
cd ulm
./r
pdfunite reply.pdf cv.pdf 5publications.pdf list.pdf courses.pdf BWCertificateDE.pdf eval.pdf promotion_zeugnis.pdf bewerbung_diehl.pdf
mv cv.pdf.1 cv.pdf
cp ~/git/diehlpk.github.io/data/teaching/courses.pdf ~/Documents/Bewerbungen/ulm/
leafpad courses.tex
cd data/teaching/
git add packages_white.tex
cp packages.tex packages_white.tex
cd template/
cp ../revletter1/reply.tex .
mkdir revletterSN
mkdir revletter1/
make lectures
evince lecture10-handout.pdf
texmaker lecture10.tex
evince lecture9-slides.pdf
texmaker lecture7.tex
evince lecture7-slides.pdf
evince cv-diehl.pdf
pdfunite cv.pdf CV\ Information-last-page.pdf cv-diehl.pdf
git add example2-edm-correction.py
evince EDM-Corrected-2-Error-QuarticSolution.pdf
evince EDM-Corrected-Error-QuarticSolution.pdf
cp example2.py example2-edm-correction.py
evince EDM-correction.pdf
evince VHM-Quartic-convergence2.pdf
python example2-2-convergence.py
evince VHM-Quartic-convergence.pdf
python example2-convergence.py
evince VHM-Quartic-convergence-displacement.pdf
python  example4-2-neumann.py
python  example4-neumann.py
evince VHM-convergence-eps-0.1-neumann-Solution.pdf &
evince VHM-convergence-eps-0.01-neumann-Solution.pdf &
cp ~/git/LSU_templates/letter/lsulogo.pdf .
cp ~/git/LSU_templates/letter/lsulogo.pdf ..
cp ~/git/LSU_templates/letter/*.tex .
cp ~/git/LSU_templates/letter/signature.png .
cd erlangen/
mkdir erlangen
mv magdeburg/ brandenburg/ ~/Documents/Bewerbungen/
mv magdeburg/ brandenburg/ ~/Documents/Bewerbungen/ -r
mkdir ~/Documents/Bewerbungen
cd Desktop/brandenburg/
git pukk
sudo dnf install texlive-nomencl
evince ../ParallelComputationMath/lecture7.pdf &
evince ../ParallelComputationMath/lecture7-slides.pdf &
evince ../ParallelComputationMath/lecture6-slides.pdf &
/home/diehlpk/git/NLMech/build/NLMech "-i" "input.yaml" "--hpx:threads=5"
gdb /home/diehlpk/git/NLMech/build/bin/NLMech
/home/diehlpk/git/NLMech/build/bin/NLMech "-i" "input.yaml" "--hpx:threads=1"
/home/diehlpk/git/NLMech/build/bin/NLMech "-i" "input.yaml" "--hpx:threads=12"
rm vgcore.68*
git add example4-2-neumann.py
evince VHM-Error-eps-0.01-neumann-Solution.pdf &
evince VHM-Error-eps-0.01-neumann-Solution.pdf
cp example4-neumann.py example4-2-neumann.py
evince VHM-Error-eps-0.1-neumann-Solution.pdf
g++ -std=c++1z -ltbb lecture6-loops.cpp
cp example4-neumann.py ~/Dropbox/
sudo dnf updateinfo
evince VHM-Error-eps-0.01Solution.pdf
python example4-2.py
evince reply.pdf &
evince reply.tex &
pdflatex reply.tex
pdf reply.tex
cp ~/git/LSU_templates/letter/lsuLetterHead.tex .
cp ~/git/LSU_templates/letter/reply.tex .
git add example4-neumann.py
cp example4.py example4-neumann.py
ls diff.wxmx
/home/diehlpk/git/NLMech/build/bin/NLMech "-i" "input.yaml" "--hpx:threads=16"
valgrind --log-file="log.txt" --leak-check=full --show-leak-kinds=all  /home/diehlpk/git/NLMech/build/bin/NLMech "-i" "input.yaml" "--hpx:threads=1"
valgrind --log-file="log.txt" --leak-check=full /home/diehlpk/git/NLMech/build/bin/NLMech "-i" "input.yaml" "--hpx:threads=1"
valgrind --leak-check=full /home/diehlpk/git/NLMech/build/bin/NLMech "-i" "input.yaml" "--hpx:threads=1" > log.txt
valgrind --leak-check=full /home/diehlpk/git/NLMech/build/bin/NLMech "-i" "input.yaml" "--hpx:threads=1"
valgrind /home/diehlpk/git/NLMech/build/bin/NLMech "-i" "input.yaml" "--hpx:threads=1"
man pdfunite
cd Desktop/pnnl/
git add ../../../src/model/util.h
cd 2D
/home/diehlpk/git/NLMech/build/bin/dc "-i" "input_compare.yaml" "-k" "fd_simple"
wget https://raw.githubusercontent.com/prashjha/NLMech/qs2d/examples/qsModel/2D/input_mesh.yaml?token=AA55UA5LXZ4RS5NM46YCPNC67OQGE input_mesh.yaml
wget https://raw.githubusercontent.com/prashjha/NLMech/qs2d/examples/qsModel/2D/input_mesh.yaml?token=AA55UA5LXZ4RS5NM46YCPNC67OQGE
wget https://github.com/prashjha/NLMech/blob/qs2d/examples/qsModel/2D/input_mesh.yaml
touch ccm-2d.py
git add bondbased2D.py
python bondbased2D.py > log.txt
evince log.txt
cd /home/diehlpk/git/AnalyticStiffnessPython
git add example5.py
evince lecture6-handout.pdf
evince ../ParallelComputationMath/lecture6-slides.pdf
evince EDM-Error-QuarticSolution.pdf
python example5.py
cp example1.py example5.py
python example4.py
python example3.py
python example2.py
evince SCM-Error-QuarticSolution.pdf
evince EDM-Error-LinearSolution.pdf
python example1.py
pythom example1.py
vim labeler.yml
vim label.yml
cd workflows/
cd .git
cp Quartic-displacement.pdf ~/Dropbox/
evince Quartic-displacement.pdf
evince ../ParallelComputationMath/lecture6.pdf
evince ../ParallelComputationMath/lecture6.tex
git pu;;
python  example2-convergence2.py
git add  example2-convergence2.py
cp example2-convergence.py example2-convergence2.py
evince Variational\ Theory\ and\ Domain\ Decomposition\ for\ Nonlocal\ Problems.pdf
evince Interface\ problems\ in\ nonlocal\ diffusion\ and\ sharp\ntransitions\ between\ local\ and\ nonlocal\ domains.pdf
evince silling2005.pdf
cd articles/
cd Submission-R1/
cd Dropbox/Coupling_FE/
rm ParallelComputationMathExamples/chapter2/vector2.h
dnf search libxext
vim bib.bib
leafpad template/dbt.sty
texmaker template/dbt.sty
vim lecture6-loops.cpp
g++ -std=c++1z -ltbb lecture7 -loops.cpp
cat lecture6-loops.cpp
git add vector2.h
cp ~/git/courses/ParallelComputationMath/code/06/lecture6-deadlock.cpp.ipynb .
git add lecture7-*
cp ~/git/courses/ParallelComputationMath/code/07/lecture7-* .
evince ../ParallelComputationMath/lecture6.pdf &
leafpad calculate_matrix.md
leafpad test.csv
pandoc calculate_matrix.md --pdf-engine=pdflatex -o test.pdf
time python bondbased1D.py
touch requirements.txt
cat LICENSE
git push --set-upstream origin mudic
time ../../../build/bin/NLMech -i input.yaml --hpx::threads=1
time ../../../build/bin/NLMech -i input.yaml
libreoffice test.csv
gnuplot
ghnuplot
evince bond-based-1d.pdf &
../../../build/NLMech -i input.yaml
../../../build/NLMech
../../../build/n
leafpad writer.h
leafpad writer.cpp
git checkout mudic
python pd_dic.py -i input_elas_2D.yaml -t pd
cp ~/Downloads/test.csv .
rm ParallelComputationMathExamples/chapter2/Lecture5-class.ipynb
rm ParallelComputationMathExamples/chapter2/vector2.cpp
rm ParallelComputationMathExamples/chapter2/make.sh
rm ParallelComputationMathExamples/chapter2/main.cpp
rm ParallelComputationMathExamples/chapter2/lecture6-*
rm ParallelComputationMathExamples/chapter2/lecture5-*
rm ParallelComputationMathExamples/chapter2/Lecture4-Structs.ipynb
rm ParallelComputationMathExamples/chapter2/Lecture4-generic.ipynb
rm chapter2/Lecture4-Structs.ipynb chapter2/Lecture4-generic.ipynb
git commit -m "New template lecuture6" lecture6.tex
git add *.cpp *ipynb *.sh
cp ParallelComputationMathExamples/chapter2/* ../ParallelComputationMathExamples/chapter2/
git add chapter2/*.ipynb
git add chapter2/*.h
git add chapter2/*.cpp
git add chapter2/*.sh
git add chapter2/*
git rm -r 06
git rm -r 05
cp 06/* ../ParallelComputationMathExamples/chapter2/
ls 06/
cp 05/* ../ParallelComputationMathExamples/chapter2/
ls 05/
git rm -r 04/
cp 04/Lecture4-Structs.ipynb ../ParallelComputationMathExamples/chapter2/
cp 04/Lecture4-generic.ipynb ../ParallelComputationMathExamples/chapter2/
git add chapter10/lecture6-deadlock.cpp.ipynb
mv lecture6-deadlock.cpp.ipynb chapter10/
mkdir chapter10
ParallelComputationMathExamples/
ParallelComputationMath/
ls ParallelComputationMathExamples/chapter2/
ls ../ParallelComputationMath/code/04/
ls ../ParallelComputationMath/code/06/
ls ../ParallelComputationMath/code/07/
cat ../ParallelComputationMath/code/07/
git push --set-upstream origin JOSS
git add paper.md paper.bib hpx_architecture.pdf
cp ../JOSSSubmission/hpx_architecture.pdf .
cp ../JOSSSubmission/paper.md .
cp ../JOSSSubmission/paper.bib .
git checkout tags/1.4.1 -b JOSS
git checkout tag/1.4.1
git checkout tag/1.4.1 -b JOSS
git fetch -all --tags
git checkout release/1.4.1 -b JOSS
cd JOSSSubmission/
git clone https://github.com/STEllAR-GROUP/hpx.git hpx_main
cat .git/refs/heads/master
ls .git/refs/heads/master
sudo dnf install texlive-gitinfo2
git describe
vim getcommit.sty
sudo dnf install texlive-getcommit
evince ../ParallelComputationMath/lecture5.pdf &
vim results_frame19.csv
libreoffice results_frame19.numbers
python pd_dic.py -i input_elas_2D.yaml -i dic
python pd_dic.py
cp ~/Downloads/lm2-poly-PeriPyVFM-f47242d/input_elas_2D.yaml .
git add example4-2.py
evince VHM-Error-eps-0.01Solution.pdf &
cp example4.py example4-2.py
python -m pip install -r requirements.txt --user
pip install https://www.vtk.org/files/release/9.0/vtk-9.0.0-cp38-cp38-linux_x86_64.whl --user
python -m pip install requirements.txt --user
python -m pip install requirements.txt
pip install requirements.txt
pip -r requirements.txt
python setup.py install
python setup.py
vim results_frame19.numbers
head results_frame19.numbers
cp ~/Downloads/results_frame19.numbers .
cd lm2-poly-PeriPyVFM-f47242d/
unzip PeriPyVFM-0.1.zip
git checkout -b mudic
git pusg
leafpad ~/git/diehlpk.github.io/cv/index.md
git branch -d python3
git clone https://github.com/lm2-poly/PeriPyDIC.git
git add example4.py
touch example4.py
cd git/JOSSSubmission/
git push --set-upstream origin testing
git checkout -b testing
make all
git checkout Pranavug:master
git checkout refs/pull/4/head
git fetch origin pull/4/head
cd git/nonlocalheatequation/build/
mv hpx-stable/ hpx-1.4.1
unzip stable.zip
wget https://github.com/STEllAR-GROUP/hpx/archive/stable.zip
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON  ..
cp VHM-Quartic-solution.pdf VHM-Quartic-solution2.pdf
evince VHM-Quartic-solution.pdf
git push --set-upstream origin coday
git checkout -b coday
git push --set-upstream origin kevin
git checkout -b kevin
git add :/doc/conf.doxy.in
git add :/doc/CMakeLists.txt
leafpad ../doc/conf.doxy.in &
ls ../doc/
cp conf.doxy.in ../doc/
doxygen -g conf.doxy.in
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DSilo_INCLUDE_DIR=/home/diehlpk/opt/silo/include/  -DSilo_LIBRARY=/home/diehlpk/opt/silo/lib/ -DSilo_BROWSER=/home/diehlpk/opt/silo/bin/ -DVc_DIR=/home/diehlpk/opt/vc_1.4/lib/cmake/Vc/ ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DSilo_INCLUDE_DIR=/home/diehlpk/opt/silo/include/  -DSilo_LIBRARY=/home/diehlpk/opt/silo/lib/ -DSilo_BROWSER=/home/diehlpk/opt/silo/bin/ -DVc_DIR=/home/diehlpk/opt/vc_1.4/ ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DSilo_INCLUDE_DIR=/home/diehlpk/opt/silo/include/  -DSilo_LIBRARY=/home/diehlpk/opt/silo/lib/ -DSilo_BROWSER=/home/diehlpk/opt/silo/bin/ -DVc_DIR=/home/diehlpk/opt/vc_1.4/
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DSilo_INCLUDE_DIR=/home/diehlpk/opt/silo/include/  -DSilo_LIBRARY=/home/diehlpk/opt/silo/lib/ -DSilo_BROWSER=/home/diehlpk/opt/silo/bin/ ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DSilo_INCLUDE_DIR=/home/diehlpk/opt/silo/include/  -DSilo_LIBRARY=/home/diehlpk/opt/silo/lib/ ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON -DSilo_INCLUDE_DIR=/home/diehlpk/opt/silo/include/  ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ -DHPX_IGNORE_COMPILER_COMPATIBILITY=N ..
cmake -DHPX_DIR=/home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ ..
cmake -DHPX_DIR= /home/diehlpk/Compile/hpx-1.3.0/build/lib/cmake/HPX/ ..
cmake -DHPX_DIR= /home/diehlpk/Compile/hpx-1.3.0/build/libs/CMakeFiles/ ..
git branch doxygen
python example1-convergence.py
evince VHM-Linear-convergence.pdf
mv docs/content/ ../docs/
makde doc
touch docs/content/contributing.md
mkdir docs/content
git branch documentation
vim  tools/CMakeLists.txt
git add tools/CMakeLists.txt
git add CHANGELOG.md
vim CHANGELOG.md
touch CHANGELOG.md
git add tools/uScale/
git add example2-convergence.py
git add example3-convergence.py
git add circle-ci banner:wq
cp ../buildinfrastrcutre/.circleci/config.yml .circleci/
make VERBOSE=1 test
git add ../tools/dc/
ls ../tools/
cp -r ~/Desktop/tools/ ../
rm ../tools/tools/ -rf
cp -r ~/Desktop/tools/ ../tools/
cp -r ../tools/ ~/Desktop/
checkout master
make quasistatic.1D.elastic
git add ../tools/CMakeLists.txt
ls tools
rm src/Config.h.in
cat src/Config.h.in
ls src/Config.h.in
cat src/Config.h
ls src/Config.h
cp example1-convergence.py example2-convergence.py
git add example1-convergence.py
git add functions.py
evince functions.pdf
leafpad review.txt
vim tax
pwgen -n -s 25
pwgen -n -2 25
touch functions.py
source test/bin/activate
python3 -m venv test
cd findiff/
git clone https://github.com/maroba/findiff.git
vim /home/diehlpk/.local/lib/python3.8/site-packages/findiff/coefs.py
pip install --user mathplolib --upgrade
pip install --user matplolib --upgrade
pip install --user scipy --upgrade
pip install --user numpy --upgrade
pip install --user numpy
pip install pip --upgrade --user
pip install pip --upgrade
pip update
pip install --upgrade numpy==1.15.2 --user
pip install --upgrade numpy==1.15.2
touch example1-convergence.py
vim example1.py
ipython
zip -r9  sc20.zip  SC20_octotiger/ -x ".git *.pptx"
zip -r9  sc20.zip  SC20_octotiger/ -x .git *.pptx
zip -r9  sc20.zip  SC20_octotiger/ -x *.git *.pptx\*
zip -r  sc20.zip  SC20_octotiger/ -x *.git *.pptx
zip -r -x plots sc20.zip  SC20_octotiger/
zip -r -e plots sc20.zip  SC20_octotiger/
zip sc20.zip  SC20_octotiger/ -r -x plots
zip sc20.zip  SC20_octotiger/ -r -x SC20_octotiger/plots/
zip paper.zip  SC20_octotiger/ -r -x SC20_octotiger/plots/
zip paper.zip  SC20_octotiger/ -r -x .git
cd SC20_octotiger/
zip paper.zip  SC20_octotiger/ -r -exclude .git
zip paper.zip  SC20_octotiger/ -r
ping mail.cct.lsu.edu
kquitapp plasmashell
mv ~/.config/kwinrc ~/.config/kwinrc-old && kwin_x11 --replace &
mv ~/.config/kwinrc ~/.config/kwinrc-old && kwin_x11 --replace
kill
vim ../ParallelComputationMath/.circleci/config.yml
cd ParallelMatchCompSolutions/
cd N-Body/
evince ../ParallelComputationMath/lecture4.pdf &
evince ~/Dropbox/Coupling_FE/Submission-R1/articles/lammpspd.pdf
cp ~/Downloads/1-s2.0-S0010465508002348-main.pdf ~/Dropbox/Coupling_FE/Submission-R1/articles/lammpspd.pdf
cp ~/Downloads/1312.5543.pdf ~/Dropbox/Coupling_FE/Submission-R1/articles/lammpspd.pdf
cp ~/Downloads/Stenström-Eriksson2019_Article_TheJ-contourIntegralInPeridyna.pdf ~/Dropbox/Peri\ Phase\ Project/
lspci | grep Network
dmidecode -t memory
hwinfo
cat /proc/meminfo
git rm -r code/03/
git rm -r code/02
git rm code/02
texmaker lecture9.tex
texmaker related-work.tex &
cd Dropbox/Coupling_FE/Submission-R1/
git add hpx_architecture.pdf
cp ~/Downloads/hpx_architecture.pdf .
sudo dnf install texlive-IEEEtran
dnf search IEEE
git add review.txt
touch review.txt
ssh
vim lecture3-for-iterator.cpp
g++ lecture3-for-iterator.cpp
git add  lecture3-for-iterator.cpp
cp lecture3-averageList.cpp lecture3-for-iterator.cpp
evince ../ParallelComputationMath/lecture3.pdf &
evince linear-displacement.pdf
python3 example1.py
python2 example1.py
cp ~/Downloads/1312.5543.pdf ~/Dropbox/Coupling_FE/Submission-R1/articles/ganzenmueller.pdf
cp ~/Downloads/silling2005.pdf ~/Dropbox/Coupling_FE/Submission-R1/articles/
groups
rfkill list all
systemctl status
systemctl start bluetooth
sudo systemctl enable bluetooth
texmaker validation-1d.tex
cp discrete.tex validation-1d.tex
cd Documents/Bilder/PD/
ls Documents/Bilder/
ls Documents/
ls Pictures/
alsaconf
kbluetoothd
hcitool scan
sudo dnf install linux-firmware
dnf search linux-firmware
dmesg|grep ath
lsusb -t
bluedevil-wizard
sudo systemctl status bluetooth.service
sudo systemctl start bluetooth.service
sudo dmesg | grep Blue
sudo lsusb | grep blue
sudo lspci | grep blue
sudo lsmod | grep bluetooth
sudo modprobe btusb
sudo dnf install bluez-hid2hci
blueman-applet
bluetooth-manager
bluetooth manager
sudo dnf search plantronics
sudo dnft install texlive-type1cm
pactl list short | grep blue
systemctl list-unit-files --state=enabled | grep -i blue
systemctl status dbus-org.bluez.service
sudo rfkill block wlan && sudo modprobe -r btusb && sleep 10 && sudo modprobe btusb && systemctl --user restart pulseaudio && sudo systemctl restart bluetooth
sudo dmesg | grep blue
sudo dnf install pulseaudio-module-bluetooth
sudo dnf install pulseaudio-bluetooth
pulseaudio-bluetooth
sudo bluetoothctl
hciconfig -a
lsusb -v | grep Bluetooth
hciconfig
sudo service bluetooth start
sudo service start bluetooth
sudo service bluetooth
hciconfig up
lsusb -t | grep Wireless
lsusb -v
lsusb -v | grep Bluetooth | grep DeviceProtocol
sudo dnf install bluez-gnome
blueman-adapters
sudo dnf install blueman
blueman
dmesg | grep -i bluetooth
pacmd list-cards
pactl list | grep -C2 A2DP
cp ~/Downloads/WFM2020_ORNL_Report\(1\).pdf .
cd Peri\ Phase\ Project/
texmaker discrete.tex
touch discrete.tex
mkdir doc/
cmake -DOCTOTIGER_WITH_DOCU=On -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON ..
cmake -DOCTOTIGER_WITH_DOCU=On ..
vim coupling-code-bb-2d.py
cd OurApproach/
ls couplingpaperexamples/
touch bondbased1D.py
git clone https://github.com/diehlpk/AnalyticStiffnessPython.git
pdflatex -shell-escape book.tex
pdflatex --shell-escape book.tex
ls tikz/
ls tikz
mkdir tikz
vim mesh.p
cd git/paperComparePDPF/example1
evince rebuttal-letter.pdf
ping bounce.cct.lsu.edu
texmaker reply-patrick.tex &
texmaker courses.tex
g++ lecture3-writing.cpp
g++ lecture3-reading.cpp
vim  lecture3-reading.cpp
git add lecture3-writing.cpp
vim lecture3-writing.cpp
git add lecture3-reading.cpp
vim lecture3-reading.cpp
ls lecture3*
ls lecture4*
gem install
bun
scp X.2.0.silo.tar.gz home.ccs.ornl.gov:~
scp X.2.0.silo.tar.gz home.ccs.ornl.gov
evince reply-patrick.pdf &
evince reply-patrick.tex &
rm bib.tex
touch references.bib
texmaker reply-patrick.tex
cp ~/Documents/papers/Boundary1d/reply.tex reply-patrick.tex
lualatex rebuttal-letter.tex
latexmk -pdf rebuttal-letter.tex
cd ../Dropbox/Coupling_FE/Submission-R1/
git apply  92256c632996c32279fc311471cd4b5ae0d86a21.patch
git apply --stat 92256c632996c32279fc311471cd4b5ae0d86a21.patch
wget https://github.com/parsa/JOSSSubmission/commit/92256c632996c32279fc311471cd4b5ae0d86a21.patch
git clone https://github.com/diehlpk/bibliography.git
leafpad authors.tex
leafpad setup.tex
cp ~/Downloads/promotion_zeugnis.pdf .
cp ~/Downloads/Fall\ 2019\ Report\ for\ MATH\ 4997\ \(section\ 003\)\ VERT\ INT\ RESEARCH\ -\ PARALLEL\ COMP\ MATH\ Patrick\ Diehl_7d3090e1-c861-46eb-8212-816c10115c9aen-US.pdf  eval.pdf
co ~/Downloads/Fall\ 2019\ Report\ for\ MATH\ 4997\ \(section\ 003\)\ VERT\ INT\ RESEARCH\ -\ PARALLEL\ COMP\ MATH\ Patrick\ Diehl_7d3090e1-c861-46eb-8212-816c10115c9aen-US.pdf  eval.pdf
mv ~/Dropbox/BWCertificateDE.pdf .
mv ~/Dropbox/5publications.pdf .
cp ~/git/LSU_templates/letter/reply.pdf .
cd magdeburf/
mkdir magdeburf
leafpad ../../bibfiles/hpx.bib
leafpad bibliography.tex
evince lecture3-slides.pdf
evince lecture3.pdf &
pit push
sudo dnf install texlive-dinbrieg
cd letter/
vim 2020-05-01-season3-epsiode-4.markdown
git add FFS028_header.png
cp ~/Downloads/FOSS_for_science_podcast_template_FFS028_NUMFOCUS_750x500.png FFS028_header.png
git checkout numfocus
git branch numfocus
pass ;su
ssh h
evince lecture3.pdf
texmaker reply.tex
sudo dnf install texlive-leftidx
unzip Raspberry\ Pi\ Machine\ Learning.zip
cp ../Raspberry\ Pi\ Machine\ Learning.zip .
cd piml/
mkdir piml
ssh -vvv home.ccs.ornl.gov
ssh -v home.ccs.ornl.gov
ssh -vhome.ccs.ornl.gov
diehlpk@home.ccs.ornl.gov
ssh diehlpk@home.ccs.ornl.gov
ssh diehlpk@summit.olcf.ornl.gov
git add *.cpp *ipynb
ls lecture3-averageList.cpp
cp ~/git/courses/ParallelComputationMath/code/03/* .
cp ~/git/courses/ParallelComputationMath/code/03/*
texmaker lecture3.tex
unzip Pi-Paper.zip
leafpad title.tex
leafpad sections/abstract.tex
cd Documents/papers/Boundary1d/
vim lecture2-function.cpp
g++ lecture2-function.cpp
git add lecture2-function.cpp
cp lecture1-if.cpp lecture2-function.cpp
cp ~/git/documents/papers/PeriHPX/revletter1/reply.tex .
evince RefereeReportCMAME-D-19-01713.pdf &
evince RefereeReportCMAME-D-19-01713.pdf
sudo dnf install texlive-wrapfig
make cleam
sudo dnf isntall texlive-doclicense
sudo dnf groupinstall "KDE Plasma Workspace"
kiallall plasmashell
dnf system-upgrade reboot
sudo dnf system-upgrade download --releasever=32
sudo rm -rf /var/lib/flatpak/
sudo du /var/lib -hx --max-depth=1
sudo du /var/ -hx --max-depth=1
sudo du /var -hx --max-depth=1
sudo du / -hx --max-depth=1
sudo rm -rf /var/lib/docker/
sudo dnf remove docker \
                  docker-client \
                  docker-client-latest \
                  docker-common \
                  docker-latest \
                  docker-latest-logrotate \
                  docker-logrotate \
                  docker-selinux \
                  docker-engine-selinux \
                  docker-engine
sudo dnf remove flatpack
flatpak --app
flatpak remove GNOME Application Platform version 3.3
flatpak remove *
flatpak list
flatpak remove Fractal
flatpak-list
NAME

flatpak-list
flatpak uninstall --unused
sudo du -sh /var/lib/* |sort -n
du -sh /var/lib/* |sort -n
sudo du -hx /var/log
du -hx /var/log
du / -hx --max-depth=1
sudo dnf package-cleanup --oldkernels --count=2
sudo package-cleanup --oldkernels --count=2
sudo  rm -fr /var/cache/yum/*
sudo rm -rf /var/lib/dnf/system-upgrade.json
rm -rf /var/lib/dnf/system-upgrade.json
dnf clean packages
du -k --max-depth 1 /var/cache/dnf |sort -rn
du / -mH
du -mH
sudo dnf clean all --enablerepo=\*
df -mH|grep root
sudo rm -rf /var/cache/dnf/
ls /var/cache/dnf/
sudo rm -rf /var/cache/PackageKit/31
ls /var/cache/PackageKit/31
ls /var/cache/PackageKit/
df -mh|grep root
df -m|grep root
sudo dnf clean all
df -m
sudo dnf remove tex-live
sudo dnf remove texlive
sudo rm -rf /var/log/dnf.*
sudo find / -type f -name *.log
find / -type f -name *.log
rm ./.eclipse/ -rf
du -H
cd /home/diehlpk/
sudo vim /etc/logrotate.conf
sudo dnf clean dbcache
sudo dnf clean chache
sudo du -sxh *
du -sxh *
cd /
sudo find / -type f -exec ls -s {} \; | sort -n -r | head -20
df -H
df -
time make
cp ~/git/documents/papers/PeriHPX/tikz-uml.sty .
git add index.ist -f
git add index.ist
vim index.ist
vim lecture2-averageContainers.cpp
/home/diehlpk/git/NLMech/build/NLMech  -i input.yaml  --hpx:threads=15
/home/diehlpk/git/NLMech/build/NLMech  -i input.yaml  --hpx:threads=5
vim problem_setup.py
cp mesh.vtu input.yaml   out_2_3/
/home/diehlpk/git/NLMech/build/tools/mesh/mesh -i mesh.yaml -d 2
python problem_setup.py 2 4 4 0
git checkout -b small
vim mesh.py
./extract.sh example1/inp/out_2_3/
evince curve_example1.pdf
python plot.py -i data.dat
./extract.sh example1/inp/out_2_3/ > data.dat
/home/diehlpk/git/NLMech/build/NLMech  input.yaml  --hpx:threads=5
python problem_setup.py 2 5 4 0
vom paper.md
rm mesh.yaml
vim params.py
cp ~/Desktop/Rob/d-120/mesh.vtu .
cp ~/Desktop/Rob/d-120/input.yaml .
python problem_setup.py 2 5 3 0
/home/diehlpk/git/NLMech/build/NLMech -i input.yaml  --hpx:threads=5
/home/diehlpk/git/NLMech/build/tools/mesh/mesh
python problem_setup.py 2 4 3 0
rm -rf bin/
cp mesh.vtu  out_2_3/
cp input.yaml out_2_3/
python problem_setup.py 2 6 3 0
pass dfg
pass insert dfg
pwgen -n -s  15
me@diehlpk.de
sudo snap install slack --classic
sudo snap install slack
evince curve_example1_density_1-2.pdf
git mv 2020-06-01-season3-episode5.markdown 2020-06-01-season3-episode-6.markdown
git checkout setuptools
git add 2020-07-01-season3-epsiode-7.markdown
leafpad  2020-07-01-season3-epsiode-7.markdown
cp 2020-04-01-season3-epsiode-3.markdown 2020-07-01-season3-epsiode-7.markdown
git push --set-upstream origin spack
git checkout -b spack
git checkoout -b spack
git push origin
git branch -D storm
git branch -D strom
git checkout storm
cd git/crowdsourcingcontent/
git push --set-upstream origin setuptools
git add 2020-06-01-season3-episode5.markdown
vim 2020-06-01-season3-episode5.markdown
cp 2020-01-01-season3-episode1.markdown 2020-06-01-season3-episode5.markdown
cp 2020-01-01-season3-episode1.markdown p 2020-06-01-season3-episode5.markdown
git checkout -b setuptools
git nranch
git p
git clone https://github.com/diehlpkteaching/ParallelComputationMathScript.git
evince ../ParallelComputationMath/lecture2.pdf &
git rm Pictures/chapter_head_*.pdf
git rm Pictures/chapter_head_*
git add sections/
cp chapter_head_1.pdf chapter_head_2.pdf
evince chapter_head_1.pdf
rm background_old.pdf
git rm background.pdf
git rem background.pdf
evince Pictures/background.pdf
git add lecture1-switch.cpp
vim lecture1-switch.cpp
cp lecture1-for.cpp lecture1-switch.cpp
vim lecture1-if.cpp
cat lecture1-for.cpp
git add lecture1-if.cpp
g++ lecture1-if.cpp
cp lecture1-for.cpp lecture1-if.cpp
cp  curve_example1.pdf curve_example1_density_1-2.pdf
rm output_
cp -r ../out_2_3/ ~/Desktop/Rob/d-12/
cp ../example1-d-12.ogv .
cp  curve_example1_density_12.pdf example1/inp/out_2_3/
cp  curve_example1.pdf curve_example1_density_12.pdf
vlc ../example1-d-12.ogv
vim extract.sh
cp -r ../out_2_3/ ~/Desktop/Rob/d-1200/
cp ../out_2_3/ ~/Desktop/Rob/d-1200/
cp  curve_example1_density_120.pdf ~/Desktop/Rob/d-120/
cp  curve_example1_density_1200.pdf example1/inp/out_2_3/
cp example1/inp/out_2_3/  curve_example1_density_1200.pdf
cp curve_example1.pdf  curve_example1_density_1200.pdf
cp curve_example1.pdf  curve_example1_density_120.pdf
vlc ../example1-d-120.ogv
cp -r ../../../curve_example1.pdf   ~/Desktop/Rob/d-120/
cp -r ../example1-d-120.ogv  ~/Desktop/Rob/d-120/
cp -r ../out_2_3/ ~/Desktop/Rob/d-120
mkdir ~/Desktop/Rob
vlc example1/inp/example1-d-120.ogv
sudo snap install discord
sudo ln -s /var/lib/snapd/snap /snap
sudo dnf install snapd
/home/diehlpk/git/NLMech/build/NLMech
./simulate.sh
git checkout bug/reactionforce
/home/diehlpk/git/NLMech/build/NLMech    "-i" "input.yaml" --hpx:threads=5
vim simulate.sh
/home/diehlpk/git/NLMech/build/bin/mesh
/home/diehlpk/git/NLMech/build/mesh
bin/mesh
ls bin/mesh
/home/diehlpk/git/NLMech/build/tools/mesh/   "-i" "input.yaml" --hpx:threads=5
rm example1.zip
rm -rf out_*_*
/home/diehlpk/git/NLMech/build/NLMech   "-i" "input.yaml" --hpx:threads=5
python problem_setup.py 2 2 3 0
python problem_setup.py 2 2 4 0
vi input.yaml
md5sum main.pdf
zip merge_rw.zip -r src/
cd src/rw/
zip merge_input.zip -r src/
tar -czvf archive.tgz `find  test/ | egrep ".*\.cpp|.*\.h"`
zip  merge_input.zip src/ -r -i "*.hpp"
zip -r --include='*cpp' '*.h'  merge_input.zip src/
zip -r --include='*cpp' merge_input.zip src/
zip -r --include='*.cpp' merge_input.zip src/
zip -r --include=*.cpp merge_input.zip src/
zip -r --include="*.cpp" merge_input.zip src/
zip --include="*.cpp" merge_input.zip -r src/
rm merge_input.zip
cd /home/diehlpk/git/NLMech/build/src/inp && /usr/bin/c++  -DBLAZE_USE_HPX_THREADS -I/home/diehlpk/git/BlazeIterative/include -I/home/diehlpk/git/NLMech/src/external -I/usr/include/vtk -I/usr/include/eigen3 -I/usr/include/freetype2 -I/usr/include/double-conversion -I/usr/include/libxml2 -I/usr/include/python3.7m -I/home/diehlpk/opt/hpx/include -I/home/diehlpk/git/NLMech/src  -llapack -O2 -g -DNDEBUG   -std=gnu++17 -o CMakeFiles/Geometry.dir/dampingGeom.cpp.o -c /home/diehlpk/git/NLMech/src/inp/input.cpp
cd /home/diehlpk/git/NLMech/build/src/decks && /usr/bin/c++  -DBLAZE_USE_HPX_THREADS -I/home/diehlpk/git/BlazeIterative/include -I/home/diehlpk/git/NLMech/src/external -I/usr/include/vtk -I/usr/include/eigen3 -I/usr/include/freetype2 -I/usr/include/double-conversion -I/usr/include/libxml2 -I/usr/include/python3.7m -I/home/diehlpk/opt/hpx/include -I/home/diehlpk/git/NLMech/src  -llapack -O2 -g -DNDEBUG   -std=gnu++17 -o CMakeFiles/Geometry.dir/dampingGeom.cpp.o -c /home/diehlpk/git/NLMech/src/decks/input.cpp
-I/usr/include/double-conversion -I/usr/include/libxml2 -I/usr/include/python3.7m -I/home/diehlpk/opt/hpx/include -I/home/diehlpk/git/NLMech/src  -llapack -O2 -g -DNDEBUG   -std=gnu++17 -o CMakeFiles/Geometry.dir/dampingGeom.cpp.o -c /home/diehlpk/git/NLMech/src/geometry/dampingGeom.cpp
make input
git checkout merging
find -name "*.tex" -exec aspell check -l en_US "{}" ";"
find -name "*.tex" -exec sed -i 's/  */ /g' "{}" ";"
cp paper.bib2 paper.bib
iconv  -f UTF-8 -t ISO-8859-1 paper.bib -o paper.bib2
iconv  -f UTF-8 -t ISO-8859-1 paper.bib -o paper.bib
iconv -i -f UTF-8 -t ISO-8859-1 paper.bib
push
rm format.sh
git rebase
leafpad format.sh
wget https://raw.githubusercontent.com/prashjha/NLMech/master/format.sh?token=AA55UA23RKYGG474FZZQCZC6U6BWY
git branch newJintegral
git merge master --no-ff --no-commit
git add loading/uLoading.cpp
cp loading/uLoading.cpp ~/Dropbox/
git branch merging
git chekcout newJintegral
git branch -D newJintegral-circular-loading
git branch bug/reactionforce
git branch -D add-tools
git branch -D bug/cmake
git branch -D merging
git branch -D working
git commit -m "Merge uloading,cpp" loading/uLoading.cpp
git merge newJintegral
git checkout -b merging
git checkout -d merging
git checkout -D merging
cd merging
git branch -D tmp
cd material/
cd src/model/
git checkout -b working
git add plots/scatter_level.pdf
convert plots/scatter_level.ps plots/scatter_level.pdf
converty plots/scatter_level.ps plots/scatter_level.pdf
cp curve_example1.pdf  curve_example1_density_1_2_t_10000.pdf
./extract.sh example1/inp/ > data.dat
./make_video.sh ~/git/FLOSSforScience.github.io/assets/img/blog/FFS027_header.png FFS_EP027_NumPy_SciPy.ogg
git clone https://github.com/FLOSSforScience/FLOSSforScience.github.io.git
rm -rf FLOSSforScience.github.io/
rm -f FLOSSforScience.github.io/
git rm _posts/2020-04-01-season3-epsiode-3.markdown
leafpad posts/2020-04-01-season3-epsiode-3.markdown
./make_video.sh
chmod a+x make_video.sh
wget https://raw.githubusercontent.com/FLOSSforScience/tools/master/make_video.sh
wget https://media.blubrry.com/flossforscience/archive.org/download/ffsep027numpyscipy/FFS_EP027_NumPy_SciPy.ogg
cp curve_example1.pdf  curve_example1_density_120_t_10000.pdf
cp curve_example1.pdf  curve_example1_density_12_t_10000.pdf
git add paper.md
git add paper.bib
leafpad paper.bib
git clone https://github.com/STEllAR-GROUP/JOSSSubmission.git
git checkout -b tmp
git checkout ne
git diff --check master
git diff --check
source env/bin/activate
cd git/muDIC/
/home/diehlpk/git/NLMech/build/NLMech   "-i" "input3.yaml" --hpx:threads=5
vim input3.yaml
cp input2.yaml input3.yaml
git push --set-upstream origin newJintegral-circular-loading
/home/diehlpk/git/NLMech/build/NLMech   "-i" "input2.yaml" --hpx:threads=5
leafpad dat.dat
/home/diehlpk/git/NLMech/build/NLMech   "-i" "input2.yaml" --hpx:threads=5 > dat.dat
cp input.yaml input2.yaml
vim authors.tex
./extract.sh example1/inp/
leafpad example1/inp/problem_setup.py
/home/diehlpk/git/NLMech/build/NLMech  "-i" "input.yaml" --hpx:threads=5
git b
vim _posts/blog/2019-12-20-floss-software.md
vim _posts/blog/2020-03-13-wfm2020-videos.md
tar -xvf reproduce.tar
evince plots/octotiger_runtime_proportion.pdf
cp -r Examples/example_data/ Examples/example_data_short/
ls example_data/
source runtime/bin/activate
pipenv runtime
pip install --user pipenv
pip install virtualenv
cd muDIC/
/usr/bin/python -m pip install -U pylint --user
git clone https://github.com/diehlpk/muDIC.git
fish_config
libreoffice plots/temp_level12_cycle_370.pptx
evinde main.pdf
libreoffice abstract.odt &
libreoffice plots/rh_level12_cycle_360_380.pptx
git checkout -b newJintegral-circular-loading
python problem_setup.py 2 2 4
python problem_setup.py
sudo dnf install texlive-typelcm
https://www.youtube.com/watch?v=Nlr2pOCxzww
cp ~/git/paperComparePDPF/example1/inp/out*.vtu .
cp ~/git/paperComparePDPF/
scp diehlpk@rostam.cct.lsu.edu:"/home/diehlpk/Simulations/paperComparePDPF/*.pdf" .
sudo dnf updatre
mv *.pdf h_01/
mkdir h_01
evince out-2-6-4.dat.pdf
evince out-2-5-4.dat.pdf
evince out-2-4-4.dat.pdf
evince out-2-3-5.dat.pdf
evince out-2-3-4.dat.pdf
evince out-2-2-4.dat.pdf
scp diehlpk@rostam.cct.lsu.edu:/home/diehlpk/Simulations/paperComparePDPF/*.pdf .
scp rostam:/home/diehlpk/Simulations/paperComparePDPF/*.pdf .
cd Rob/
mkdir Rob
git branch -d feature/tools_option
git branch -d newJintegral-circularloading
git branch -d newJintegral-force_dispalcement_curve
git push --set-upstream origin bug/reactionforce
git checkout -b bug/reactionforce
make =j 5
git push --set-upstream origin bug/cmake
git checkout -b bug/cmake
rm -rf bin/ NLMech
/home/diehlpk/git/NLMech/build/bin/NLMech "-i" "input.yaml" --hpx:threads=5
cmake -DHPX_IGNORE_COMPILER_COMPATIBILITY=ON ..
git add lecture1-while.cpp
g++ lecture1-for.cpp
vim lecture1-for.cpp
g++ lecture1-while.cpp
vim lecture1-while.cpp
leafpad lecture1-while.cpp
cp lecture1-for.cpp lecture1-while.cpp
git mv lecture1-string-io-.cpp lecture1-string-io.cpp
cd ParallelComputationMath/make
git mv lecture1-3.cpp lecture1-for.cpp
cat lecture1-3.cpp
git mv lecture1-2.cpp  lecture1-string-io-.cpp
cat lecture1-2.cpp
git mv lecture1-1.sh lecture1-main.sh
git mv lecture1-1.cpp lecture1-main.cpp
cat lecture1-1.cpp
leafpad  problem_setup.py
sudo podman rmi docker.io/diehlpk/teaching
cat ../Makefile
vim vimrc
cd git/vim-config/
vim matrix4.py
ssh roata,
git checkout numpy
gitbranch
git fetch remote
git branch -d maxima
git branch -d music
git branch -d hpx
g++ lecture1-3.cpp
vim lecture1-3.cpp
evince ../ParallelComputationMath/lecture1.pdf &
vim docker/Dockerfile
evince ../ParallelComputationMath/lecture1.pdf
evince lecture2-handout.pdf
evince lecture2-handout.aux
mv ../*.ipynb .
mv ../*.cpp .
git add chapter2/
cp  ../ParallelComputationMath/code/02/* .
cp  ../../ParallelComputationMath/code/02/* .
cp -r ../../ParallelComputationMath/code/02/* .
cp ../../ParallelComputationMath/code/02/* .
cd ../ParallelComputationMathExamples/
texmaker references/list.tex
firefox webpage/index.html
evince webpage/list.pdf
rm references/list.blg
rm references/list.bcf
rm references/list.aux
rm references/list.bbl
cd references/
evince references/list.pdf
evine main.pdf &
ls *.bib
ls references/
rm list.bbl
leafpad list.tex &
git rm -rf code/01/
git rm code/01/
git add *.sh
cp ../../ParallelComputationMath/code/01/* .
cat ../ParallelComputationMathScript/Makefile
cat ../ParallelComputationMathScript/
ls code/01/
ls 01
ls code
git add template/packages.tex
git add images/orcid.pdf
cp ../ParallelComputationMathScript/Pictures/orcid.pdf images/
pass ls
pass edit lsu
cp ../ParallelComputationMath/.circleci/ . -r
cp ../ParallelComputationMath/.circleci/ .
git add Makefile
git add Pictures/orcid.pdf
cp ../../documents/papers/SC20_octotiger/orcid.pdf Pictures/
rm -rf code/
git rm -rf code/
git mv code/chapter2/ .
git submodule update --remote ParallelComputationMathExamples/
git add code/
mv ../code/ .
cp ~/git/courses/ParallelComputationMath/code/01/lecture1-1.cpp .
mkdir chapter2
mkdir code
git clone https://github.com/diehlpkteaching/ParallelComputationMathExamples.git
git submodule add https://github.com/diehlpkteaching/ParallelComputationMathExamples.git
cp background.pdf Pictures/
sudo dnf install texlive-lcg
texmaker
cp Pictures/background.pdf Pictures/background_old.pdf
cp -r ../ParallelComputationMath/.circleci/ .
git add structure.tex
git add Pictures/
git add book.tex
texmaker book.tex
mv ~/Downloads/chapter_head_* .
mv ~/Downloads/background.pdf .
mv ~/Downloads/background.pdf.
mv ~/Downloads/background.pdf
mkdir Pictures
touch book.tex
rm -rf scientific-thesis-cover-master
ls scientific-thesis-cover-master/
rm scientific-thesis-cover-master.zip
unzip scientific-thesis-cover-master.zip
cp ~/Downloads/scientific-thesis-cover-master.zip .
rm -rf scientific-thesis-cover-master.zip
mv ../scientific-thesis-cover-master.zip .
git clone https://github.com/FLOSSforScience/statistics.git
cd git/HPX_Data/
python plot.py -i force_example1.dat
vim p
cp force.py plot.py
cp force.dat force_example1.dat
cp example1/inp/force.dat .
git mv example1/inp/extract.sh .
git mv example1/inp/force.py .
./extract.sh ../out/
gti stash
vim force.dat
./extract.sh ../out/ > force.dat
python force.py -i ../out/output_0.vtu
python force.py ../out/output_0.vtu
rm detail_partitioner.cpp
rm print-manager-eKSNQx.ppd
ls octotiger/
rm -rf fcdtdebugger/
rm -rf test
rm -rf test-diehlpk/
cd diehlpk/
ls test/
ls Sandbox/
ls -lh
rm X.2.vtu
ssh r
ls-lah
ssh diehlpk@s
texmaker poster/poster.tex &
evince poster/poster.pdf
texmaker poster.t
texmaker poster.
cd git/courses/ParallelComputationMath/
ssh diehlpk@cori.nersc.gov
ssh diehlp@@summit.olcf.ornl.gov
ssh diehlpk@summit.ccs.ornl.gov
maker
pass ornl-overleaf
pass -c ornl
pass -c chase
cd papers/PeriHPX/
git commit --amend --reset-author
git config --global user.email patrickdiehl@lsu.edu
git config --global user.name Patrick Diehl
ls -laj
git push --set-upstream origin relase
git checkout -b relase
git config --global user.name "Patrick Diehl"
cd git/Workshop19/
pass insert ornl-overleaf
sudo shutdown -P 23:30
cd P
leafpad references.bib &
cd  ,,
vim _posts/blog/2019-07-05-jupyter-notebooks.md
sudo podman login docker.io
cat ./generate.sh
vim 2019-05-17-githubclassroom.md
git add exercise.cpp
vim exercise.cpp
touch exercise.cpp
cd test-diehlpk
git clone https://github.com/diehlpkteaching/test-diehlpk.git
ssh-keygen -t rsa -C "you@provider.com"
git config --global user.email you@provider.com
git config --global user.name Surname Name
rm -rf key.pub
rm -rf key
cd test-diehlpk/
mv teching/ teaching
cd teching/
cd te
mkdir teching
rm -rf teching/
simplescreenrecorder
sudo dnf install simplescreenrecorder
dnf search simplescreenrecord
git add assets/nsf.pdf
cat data/cv/Makefile
git add nsf.tex
vim reply.tex
cp reply.tex ~/Documents/Briefe/2020/anschreiben_augsburg.tex
cp ~/Downloads/signature.png .
dnf list kernel
dnf list kernels
dnf search lastpage
ls timetable/
ls syllabus/
latexmk -pdflatex="lualatex --shell-escape --synctex=1 %O '\def\classoption{12.pt,handout}\input{%S}'" --jobname=lecture1-handout -pdf lecture1.tex
git statua
evince webpage/syllabus.pdf
texmaker lecture1.tex
evince patrick_diehl.pdf
pdfunite research_plan.pdf cv.pdf list.pdf BWCertificateDE.pdf patrick_diehl.pdf
pdfunite research_plan.pdf cv.pdf list.pdf  patrick_diehl.pdf
pdfunite research_plan.pdf cv.pdf list.pdf BWCertificateDE.pdf
sudo podman rmi localhost/diehlpk/teaching
texmaker research_plan.tex
aspell check -l en_us research_plan.tex
cd Desktop/Augsburg/
sudo podman build --tag docker.io/diehlpk/teaching:latest -f ./Dockerfile
sudo podman rmi localhost/teaching:latest
sudo podman rmi localhost/teaching
sudo podman rm localhost/teaching
sudo podman rm 7f7ccaf094fe
sudo dnf install impallari-raleway-fonts
chmod u+x generate.sh
sudo podman inspect --format="{{.Id}}" localhost/diehlpk/teaching
sudo podman inspect
sudo podman images -s
sudo podman push 7f7ccaf094fe docker://diehlpk/teaching:latest
podman push diehlpk/teaching:latest
sudo podman build --tag diehlpk/teaching:latest -f ./Dockerfile
podman push docker.io/diehlpk/teaching:latest
podman push docker.io/diehlpk/teaching
vim generate_scaling.sh
podman tag teaching docker.io/diehlpk/teaching:latest
podman tag localhost/teaching docker.io/diehlpk/teaching:latest
podman tag 7f7ccaf094fe docker.io/diehlpk/teaching:latest
podman tag latest docker.io/diehlpk/teaching:latest
podman login docker.io
sudo podman build --tag teaching:latest -f ./Dockerfile
sudo podman build --tag techingC++ -f ./Dockerfile
sudo dnf install podman
ssh -o ProxyJump=pdiehl@bounce.cct.lsu.edu:2525 pdiehl@vault chmod -R a+r /home/pdiehl/public_html/teaching/2020/4997/
ssh -o ProxyJump=pdiehl@bounce.cct.lsu.edu:2525 pdiehl@vault chmod -r a+r /home/pdiehl/public_html/teaching/2020/4997/
ssh -o ProxyJump=pdiehl@bounce.cct.lsu.edu:2525 pdiehl@vault chmod a+r /home/pdiehl/public_html/teaching/2020/4997/lecture1-handout.pdf
ssh -o ProxyJump=pdiehl@bounce.cct.lsu.edu:2525 pdiehl@vault chmod a+r /home/pdiehl/public_html/teaching/2020/4997/*.pdf
ssh -o ProxyJump=pdiehl@bounce.cct.lsu.edu:2525 pdiehl@vault chmod a+r ~/public_html/teaching/2020/4997/*.pdf
rm .Makefile.swp
vi Makefile
ls lecture1-*.pdf
ls lecture1*.pdf
ls lecture1.*.pdf
cd webpage/ParallelComputationMath
rm webpage/lecture1-slides.tes.pdf
rm webpage/map.pdf
ssh vault
ssh vauly
evince lecture1-handout.pdf
latexmk -pdflatex="lualatex --shell-escape %O %S" --jobname=lecture1-handout -pdf lecture1.tex
evince lecture1-slides.pdf
latexmk -pdflatex="lualatex --shell-escape %O %S" --jobname=lecture1-slides -pdf lecture1.tex
evince lecture1-slides.tes.pdf
latexmk -pdflatex="lualatex --shell-escape %O %S" --jobname=lecture1-slides.tes -pdf lecture1.tex
sudo dnf install texlive-beamerswitch
dnf search beamerswitch
dnf search beamerswtich
git add lstautodedent.sty
ls *.sty
wget https://raw.githubusercontent.com/gdiepen/latexbeamer-handoutWithNotes/master/handoutWithNotes.sty
git commot -a
wget https://raw.githubusercontent.com/jubobs/lstautodedent/master/lstautodedent.sty
dnf search lstautodedent
cp ~/.password-store/nersc.gpg  ~/Dropbox/
scp diehlpk@cori.nersc.gov:/project/projectdirs/xpress/sc2020/SC2020-OctoTiger/scaling/level_12_1024/slurm.out 12_1024.out
scp diehlpk@cori.nersc.gov:/project/projectdirs/xpress/sc2020/SC2020-OctoTiger/scaling/level_11_1024/slurm.out 11_1024.out
pass -c nersch
scp diehlpk@cori.nersc.gov:/project/projectdirs/xpress/sc2020/SC2020-OctoTiger/scaling/level_11_512/slurm.out 11_512.out
cd parsa/
mkdir parsa
vim 2017-05-04-gsc-projects.md:
grep GSoC *
vim 2017-02-27-gsc.md
ssh paint
git add peridyanmic.bib
cp ../libary.bib peridyanmic.bib
ls *.bin
cp ~/.password-store/nersc.gpg ~/Dropbox/
ss
pass-h
git add svjour3.cls
git add spmpsci.bst
leafpad spmpsci.bst
rm template.nlo
texmaker template.tex
scp ~/Downloads/split_files.tar.gz diehlpk@cori.nersc.gov:/project/projectdirs/xpress/sc2020
git add classses.pdf
evince template.pdf
rm template.spl
latexmk -pdf Clean
unzip svjour-spr-chicago.zip
cp /tmp/mozilla_diehlpk0/svjour-spr-chicago.zip .
sudo dnf install texlive-sr-vorl
dnf search springer
,ake
ls *xlsx
cd ~/Dropbox/WorkshopLSU/
show vpn-sessiondb
sudo ./anyconnect-linux64-4.8.01090-core-vpn-webdeploy-k9.sh
./anyconnect-linux64-4.8.01090-core-vpn-webdeploy-k9.sh
chmod a+x anyconnect-linux64-4.8.01090-core-vpn-webdeploy-k9.sh
pwgen -n 30 -s
pwgen -n 30 -s -y
s
giyt pull
git commit -m "Add intersection of lines" ../src/util/utilGeom.cpp ../src/util/utilGeom.h
git checkout newJintegral-force_dispalcement_curve
~/git/NLMech/build/bin/NLMech -i input.yaml --hpx:threads=5
cp ~/Downloads/inp/input.yaml .
~/git/NLMech/build/bin/NLMech
asciinema rec
asciinema auth
vlc /tmp/tmpvrmh6i2w-ascii.cast
./recterm.sh test.gif
sudo dnf install sox
sudo dnf install ffmpeg
chmod a+x recterm.sh
chmod +x recterm.sh to_gif.sh
cd recterm/
git clone https://github.com/rascoro1/recterm.git
rm -rf ttyrec*
sudo dnf install recterm
sudo dnf install asciinema
./ttyrec
vim ttyrec.c
patch -i ttyrec-1.0.8.RHEL5.patch
wget http://paperlined.org/apps/rhel/building/ttyrec-1.0.8.RHEL5.patch
cd ttyrec-1.0.8/
tar -xvf ttyrec-1.0.8.tar.gz
wget http://0xcc.net/ttyrec/ttyrec-1.0.8.tar.gz
npm install ttystudio
npm imstall ttystudio
cd ttyrec/
git clone https://github.com/mjording/ttyrec.git
npm -g install ttystudio
sudo  npm -g install ttystudio
sudo dnf install ttystudio
sudo dnf install ttyrec
ifconfig
ssh-keygen -t rsa -C "patrickdiehl@lsu.edu"
ssh-add ./key
ssh-add ./test
ssh-add ./id_github_test
test
git add aas_macros.sty
wget http://cdsads.u-strasbg.fr/abs_doc/aas_macros.sty
pdflatex main.tex
wget https://journals.aas.org/wp-content/uploads/2019/06/aasjournal.bst
bibtex main.aux
bibtex main
sudo dnf install texlive-aastex
cd git/documents/papers/SC19_octotiger/
cd Slides-Welcome/
cp -r Slides/ Slides-Welcome/
rm -rf Welcome/
cd Welcome
cp -r Discussion/ Welcome
cd Dropbox/WorkshopLSU/
convert -background white -alpha background -alpha off particles2021.pdf poster.png
display poster.png
convert -background white -alpha background  particles2021.pdf poster.png
convert particles2021.pdf poster.png
convert Discussion\ Questions.pdf discussion.png
convert SIAM\ Meeting\ -\ Updated-2.pdf siam_tweet.png
vim ../e-mail-poster.txt
cd Discussion/
7z e MS159-Abstracts.7z
unzip MS159-Abstracts.7z
vim dataPoster.csv
cd Workshop19/
git add references.bib
git add force.py extract.sh
./extract.sh
kate force.dat
./extract.sh > force.dat
chmod a+x extract.sh
chmod extract.sh
kate copy.sh
kate extract.sh
python force.py -i output_30.vtu
python force.py -i output_45.vtu
python force.py -i output_50.vtu
python force.py -i output_10.vtu
python force.py -i output_9.vtu
python force.py -i output_8.vtu
python force.py -i output_7.vtu
python force.py -i output_6.vtu
python force.py -i output_5.vtu
python force.py -i output_4.vtu
python force.py -i output_3.vtu
python force.py -i output_2.vtu
python force.py -i output_1.vtu
python force.py -i output_0.vtu
python force.py
evince Hasheminezhad_Diehl_reference.pdf
cp reply.tex ~/Documents/Briefe/2020/bita_SIParCS.tex
ggit status
vim generate_
dbus-launch dolphin
cat level_13/submit-job.sh
ls level_13/submit-job.sh
cmoad a+x generate.sh
cmod a+x generate.sh
cd SC2020-OctoTiger/
git clone https://github.com/diehlpk/SC2020-OctoTiger.git
ssh -X pdiehl@rostam.cct.lsu.edu -p 8000
ssh -x rostam
ping rostam
./copy.sh
vim copy.sh
chmod a+x copy.sh
rm -rf out/
~/.dropbox-dist/dropboxd
scp rostam:/home/pdiehl/Simulations/paperComparePDPF/example1/inp/out/*.vtu .
scp rostam:/home/pdiehl/Simulations/paperComparePDPF/example1/inp/*.vtk .
scp rostam:/home/pdiehl/Simulations/paperComparePDPF/example1/inp/out*.vtu .
paraview shape_crack.vtk
paraview input.yaml
display mesh.png
display mesh_small.png
convert -resize 4 mesh.png mesh_small.png
evince mesh_small.png
convert -resize 800x300 mesh.png mesh_small.png
gimp mesh.png
paraview shape_crack.vtk &
rm shape_crack.msh
git push origin --force --all
git filter-branch --force --index-filter   "git rm --cached --ignore-unmatch example1/inp/shape_crack.vtk"   --prune-empty --tag-name-filter cat -- --all
git rebase --interactive HEAD~7
git push -all
git filter-branch --index-filter "git rm -rf --cached --ignore-unmatch example1/inp/shape_crack.msh" HEAD
git filter-branch --force --index-filter   "git rm --cached --ignore-unmatch example1/inp/shape_crack.msh"   --prune-empty --tag-name-filter cat -- --all
ls example1/inp/
git filter-branch --force --index-filter   "git rm --cached --ignore-unmatch shape_crack.msh"   --prune-empty --tag-name-filter cat -- --all
git filter-branch --force --index-filter   "git rm --cached --ignore-unmatch PATH-TO-YOUR-FILE-WITH-SENSITIVE-DATA"   --prune-empty --tag-name-filter cat -- --all
leafpad regular-mesh.md
leafpad simple-comapre.md
mv regular-mesh.html regular-mesh.md
cp simple-comapre.md regular-mesh.html
cat ../examples.md
git add _examples/regular-mesh.md
gimp assets/img/tool-mesh.png
vim _examples/regular-mesh.md
git add assets/img/tool-mesh.png
gti add assets/img/tool-mesh.png
cp ~/Downloads/example_1_mesh.png assets/img/tool-mesh.png
display mesh.
cd ~/git/paperComparePDPF/example1/
leafpad _examples/regular-mesh.md
dnf search gcc
gpg2 --refresh-keys
unzip Please_DocuSign_Fujitsu_Technology_Diehl_CDA.zip
fractal
flatpak install fractal
flatpak --help
flatpak
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
cp reply.pdf Hasheminezhad_Diehl_reference.pdf
dnf search dinbrief
cd LSU_templates/
git clone https://github.com/diehlpk/LSU_templates.git
mdkir 2020
ls 2017/
bc 10/2
./test.sh
chmod a+x test.sh
cp wccm2020-abstract.* ~/Dropbox/
texmaker wccm2020-abstract.tex
unzip WCCM2020-Abstract.zip
leafpad dataPoster.csv
leafpad data.csv
sudo dnf install texlive-stringstrings
dnf search stringstrings
vim data/yu.tex
vim data/le.tex
vim data/lin.tex
git add timetable_edit.png
evine main.
find -name "*.tex" -exec sed 's/  */ /g' -i "{}" ";"
leafpad abstract/content.tex
leafpad abstract/abstract.tex
cp ../abstract/abstracts/data/*.tex .
cp abstracts/*.tex .
cd abstracts/*.tex .
cd abstract/
sudo dnf remove wine
rm -rf ~/.wine
cd ~/.wine/drive_c/
wine
wine AdbeRdr11008_en_US.exe
wget --progress=dot --tries=10 https://ardownload2.adobe.com/pub/adobe/reader/win/11.x/11.0.08/en_US/AdbeRdr11008_en_US.exe
sudo dnf install wine
sudo dnf localinstall AdbeRdr9.5.5-1_i486linux_enu.rpm
sudo dnf localinstallAdbeRdr9.5.5-1_i486linux_enu.rpm
wget http://ardownload.adobe.com/pub/adobe/reader/unix/9.x/9.5.5/enu/AdbeRdr9.5.5-1_i486linux_enu.rpm
cd /tmp
ls Reader/
git branch -d community templates update-circle-ci -d
git branch -d community templates update-circle-ci
git branch -d cmake_upgrade license p2p_memory_improvements publications stale updateVC update_citations -d
git branch -d cmake_upgrade license p2p_memory_improvements publications stale updateVC update_citations -D
git branch -d cmake_upgrade license p2p_memory_improvements publications stale updateVC update_citations _D
git branch -d cmake_upgrade license p2p_memory_improvements publications stale updateVC update_citations
git push --set-upstream origin update_citations
git checkout -b update_citations
ssh pdiehl@rostam
ls ~/.ssh/
git checkout libfabric
cd git/PowerTiger/
gimp timetable.png
gimp timetable.pdf
display timetable.png
make images
convert -background white timetable.pdf timetable.png
convert timetable.pdf timetable.png
evince timetable.pdf
zip abstracts.zip data -r
vim main.tex
vi main.tex
cp wick.tex galvanetto.tex
cp wick.tex bobaru.tex
cp wick.tex foster.tex
cp wick.tex seleson.tex
cp wick.tex lipton.tex
diehl.tex
cp wick.tex lin.tex
guilleminot.tex
cp wick.tex guilleminot.tex
ravi.tex
cp wick.tex ravi.tex
pass token
texmaker timetable/timetable.tex
convert WFM2020schedule.png WFM2020schedule.jpeg
cd ~/Desktop/
convert timetable.pdf
display timetable.pmg
gimp timetable.p
texmaker main.pdf
cp wick.tex tippur.tex
cp wick.tex hild.tex
find -name *.tex
sed 's/  */ /g' -i lambros.tex
cp wick.tex lambros.tex
cp wick.tex ata.tex
cp wick.tex mohr.tex
cp wick.tex fineberg.tex
rm feinberg.tex
cp wick.tex wenty years in since their introduction [1],  it is now plain that the regularized formulationsdubbed as phase-field of the variational theory of brittle fracture of Francfort and Marigo [2]provide a powerful macroscopic theory to describe and predict the propagation of cracks in linearelastic brittle materials under arbitrary quasistatic loading conditions.  Over the past ten years,the  ability  of  the  phase-field  approach  to  also  possibly  describe  and  predict  crack  nucleationhas been under intense investigation.  The first of two objectives of this talk is to establish thatthe existing phase-field approach to fracture at large — irrespectively of its particular version—  is  fundamentally  incomplete  to  model  crack  nucleation.   This  is  because  the  approach  ispurely energetic and cannot account for one essential ingredient that is not energetic but ratherstress-based:  the strength of the material.The second objective is to introduce an amendment that renders a phase-field theory capableof modeling crack nucleation in general, be it from large pre-existing cracks, small pre-existingcracks, smooth and non-smooth boundary points, or within the bulk of structures subjected toarbitrary quasistatic loadings.  Following Kumar, Francfort, and Lopez-Pamies [3], the centralidea is to implicitly account for the presence of the inherent microscopic defects in the material— whose defining macroscopic manifestation is precisely the strength of the material — throughthe addition of an external driving force in the equation governing the evolution of the phasefield.  To illustrate the descriptive and predictive capabilities of the proposed theory,  the lastpart of the talk will be devoted to present sample simulations of experiments spanning the fullrange of fracture nucleation settings.
cp wick.tex lopez.tex
cp wick.tex waisman.tex
/home/diehlpk/git/NLMech/build/bin/NLMech "-i" "input.yaml" --hpx:threads=1
/home/diehlpk/git/NLMech/build/bin/mesh "-i" "input_mesh.yaml" "-d" "2"
cd examples/qsModel/2d
mv assets/img/qs_2d_mesh.png assets/img/qs_2D_mesh.png
vim _examples/qs-2d-elastic.md
touch _examples/qs-2d-elastic.md
evince timetable.p
leafpad main.tex
git add shape_crack.geo
gmsh shape_crack.geo
vim shape_crack.geo
vi ../README.md
gmsh shape.geo
gmsh shape
ls -la
cd example3/
git add shape.geo
git add dimensions.dxf
mv geometry.dxf dimensions.dxf
ls ../example1/

man¶

The command man lists the so-called manpage of a command and shows all the options.

In [40]:
!man ls
LS(1)                            User Commands                           LS(1)

NAME
       ls - list directory contents

SYNOPSIS
       ls [OPTION]... [FILE]...

DESCRIPTION
       List  information  about  the FILEs (the current directory by default).
       Sort entries alphabetically if none of -cftuvSUX nor --sort  is  speci‐
       fied.

       Mandatory  arguments  to  long  options are mandatory for short options
       too.

       -a, --all
              do not ignore entries starting with .

       -A, --almost-all
              do not list implied . and ..

       --author
              with -l, print the author of each file

       -b, --escape
              print C-style escapes for nongraphic characters

       --block-size=SIZE
              with  -l,  scale  sizes  by  SIZE  when  printing  them;   e.g.,
              '--block-size=M'; see SIZE format below

       -B, --ignore-backups
              do not list implied entries ending with ~

       -c     with -lt: sort by, and show, ctime (time of last modification of
              file status information); with -l: show ctime and sort by  name;
              otherwise: sort by ctime, newest first

       -C     list entries by columns

       --color[=WHEN]
              colorize  the output; WHEN can be 'always' (default if omitted),
              'auto', or 'never'; more info below

       -d, --directory
              list directories themselves, not their contents

       -D, --dired
              generate output designed for Emacs' dired mode

       -f     list all entries in directory order

       -F, --classify[=WHEN]
              append indicator (one of */=>@|) to entries; WHEN  can  be  'al‐
              ways' (default if omitted), 'auto', or 'never'

       --file-type
              likewise, except do not append '*'

       --format=WORD
              across  -x, commas -m, horizontal -x, long -l, single-column -1,
              verbose -l, vertical -C

       --full-time
              like -l --time-style=full-iso

       -g     like -l, but do not list owner

       --group-directories-first
              group directories before files;

              can  be  augmented  with  a  --sort  option,  but  any  use   of
              --sort=none (-U) disables grouping

       -G, --no-group
              in a long listing, don't print group names

       -h, --human-readable
              with -l and -s, print sizes like 1K 234M 2G etc.

       --si   likewise, but use powers of 1000 not 1024

       -H, --dereference-command-line
              follow symbolic links listed on the command line

       --dereference-command-line-symlink-to-dir
              follow each command line symbolic link

              that points to a directory

       --hide=PATTERN
              do  not  list implied entries matching shell PATTERN (overridden
              by -a or -A)

       --hyperlink[=WHEN]
              hyperlink file names; WHEN can be 'always' (default if omitted),
              'auto', or 'never'

       --indicator-style=WORD
              append indicator with style WORD to entry names: none (default),
              slash (-p), file-type (--file-type), classify (-F)

       -i, --inode
              print the index number of each file

       -I, --ignore=PATTERN
              do not list implied entries matching shell PATTERN

       -k, --kibibytes
              default to 1024-byte blocks for file  system  usage;  used  only
              with -s and per directory totals

       -l     use a long listing format

       -L, --dereference
              when showing file information for a symbolic link, show informa‐
              tion for the file the link references rather than for  the  link
              itself

       -m     fill width with a comma separated list of entries

       -n, --numeric-uid-gid
              like -l, but list numeric user and group IDs

       -N, --literal
              print entry names without quoting

       -o     like -l, but do not list group information

       -p, --indicator-style=slash
              append / indicator to directories

       -q, --hide-control-chars
              print ? instead of nongraphic characters

       --show-control-chars
              show nongraphic characters as-is (the default, unless program is
              'ls' and output is a terminal)

       -Q, --quote-name
              enclose entry names in double quotes

       --quoting-style=WORD
              use quoting style WORD for entry names: literal, locale,  shell,
              shell-always,   shell-escape,   shell-escape-always,  c,  escape
              (overrides QUOTING_STYLE environment variable)

       -r, --reverse
              reverse order while sorting

       -R, --recursive
              list subdirectories recursively

       -s, --size
              print the allocated size of each file, in blocks

       -S     sort by file size, largest first

       --sort=WORD
              sort by WORD instead of name: none (-U), size (-S),  time  (-t),
              version (-v), extension (-X), width

       --time=WORD
              change  the  default  of  using  modification times; access time
              (-u): atime, access, use; change time (-c): ctime, status; birth
              time: birth, creation;

              with  -l,  WORD determines which time to show; with --sort=time,
              sort by WORD (newest first)

       --time-style=TIME_STYLE
              time/date format with -l; see TIME_STYLE below

       -t     sort by time, newest first; see --time

       -T, --tabsize=COLS
              assume tab stops at each COLS instead of 8

       -u     with -lt: sort by, and show, access time; with -l:  show  access
              time  and  sort  by name; otherwise: sort by access time, newest
              first

       -U     do not sort; list entries in directory order

       -v     natural sort of (version) numbers within text

       -w, --width=COLS
              set output width to COLS.  0 means no limit

       -x     list entries by lines instead of by columns

       -X     sort alphabetically by entry extension

       -Z, --context
              print any security context of each file

       --zero end each output line with NUL, not newline

       -1     list one file per line

       --help display this help and exit

       --version
              output version information and exit

       The SIZE argument is an integer and  optional  unit  (example:  10K  is
       10*1024).   Units  are  K,M,G,T,P,E,Z,Y  (powers  of 1024) or KB,MB,...
       (powers of 1000).  Binary prefixes can be used, too: KiB=K, MiB=M,  and
       so on.

       The  TIME_STYLE  argument  can  be  full-iso, long-iso, iso, locale, or
       +FORMAT.  FORMAT is interpreted like in date(1).   If  FORMAT  is  FOR‐
       MAT1<newline>FORMAT2, then FORMAT1 applies to non-recent files and FOR‐
       MAT2 to recent files.  TIME_STYLE prefixed with 'posix-'  takes  effect
       only  outside  the POSIX locale.  Also the TIME_STYLE environment vari‐
       able sets the default style to use.

       Using color to distinguish file types is disabled both by  default  and
       with  --color=never.  With --color=auto, ls emits color codes only when
       standard output is connected to a terminal.  The LS_COLORS  environment
       variable can change the settings.  Use the dircolors command to set it.

   Exit status:
       0      if OK,

       1      if minor problems (e.g., cannot access subdirectory),

       2      if serious trouble (e.g., cannot access command-line argument).

AUTHOR
       Written by Richard M. Stallman and David MacKenzie.

REPORTING BUGS
       GNU coreutils online help: <https://www.gnu.org/software/coreutils/>
       Report any translation bugs to <https://translationproject.org/team/>

COPYRIGHT
       Copyright  ©  2021  Free Software Foundation, Inc.  License GPLv3+: GNU
       GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
       This is free software: you are free  to  change  and  redistribute  it.
       There is NO WARRANTY, to the extent permitted by law.

SEE ALSO
       Full documentation <https://www.gnu.org/software/coreutils/ls>
       or available locally via: info '(coreutils) ls invocation'

GNU coreutils 9.0                 March 2022                             LS(1)

Editing files in the bash¶

Sometimes, escially on a supercomputer, we need to edit text files in the bash shell.

Here, are many editors are available: vi/vim, Gnu emacs, micro, and many more.

In the Linux community is a big discusison if vi/vim or GNU emacs is better. However, that is a personal choice and I will use vim in this lecture.

A good tutorial for using vim can be found here.

Important commands:

  • Open or generate a file: vim myscript.sh
  • Type i to edit the file
  • Type :w to the current content to the file
  • Type :q to close the file
  • Type :wq to write and close the file

Example how to open the file generate.sh by typing vim generate.sh:

vim

Bash programming¶

Sometimes we want to repeat the bash commands we typed in the terminal to combine them and run them again. Therefore, we can write a so-called bash script containing all the commands. Some common convention for the file ending is .sh. As an example let us write a script convert.sh to read the CSV file data.csv and convert the temperature from Fahrenheit to Celcius.

The file data.csv is available here.

In [42]:
!cat ../data.csv
#step,x,y,z,temperature
1,0,0,0,60
2,0,1,0,80
3,0,0,1,100
4,1,1,0,225
In [43]:
!cat convert.sh
#!/usr/bin/bash

exec < ../data.csv
read header
echo $header > data_celcius.csv
while IFS=","  read -r step x y z temp
do
    echo "$step,$x,$y,$z,$((($temp-32)*5/9))" >>  data_celcius.csv

done
In [44]:
!cat data_celcius.csv
#step,x,y,z,temperature
1,0,0,0,15
2,0,1,0,26
3,0,0,1,37
4,1,1,0,107

Let us have a look at the lines of the bash script convert.sh to understand how the conversion of the file data.csv to data_celcius.csv worked.

We need the following steps:

  1. Read the file data.csv
  2. Remove the header
  3. Write to a new file
  4. Split the comma separated values (CSV)
  5. Convert the temperature from Fahrenheit zu Celcius
  6. Write the converted values to the new file

The bash script convert.sh is available here.

Shebang Interpreter Directive¶

Each first line of each bash script should look like

#!/usr/bin/bash

The two first characters !# are called shebang and we specify which bash interpreter we want to use to execute the commands in the bash script.

In this example, we specify to use /usr/bin/bash to parse the file. Note that we need to provide the full bath to the bash interpreter.

In [45]:
!which bash
/usr/bin/bash

Reading the CSV file¶

By using exec < ../data.csv we switch the shell input to the file ../data.csv.

By using read header the header, the line starting with #, is read from the file ../data.csv and stored in the variable header.

By using echo $header the content of the variable header is printed. Note to access a variable we use the $ character.

By using > data_celcius.csv everything before the character > is added to the file data_celcius.csv. Here, if the file exists and has content, the content will be deleted and a new line with the new content is added.

Now, we use a while loop to iterate over each line of the file ../data.csv. Since, we have a CSV file (1,0,0,0,15) we want to have each value separated by , as variables step, x, y, z , and temp. By using IFS="," the delimiter is specified. read gives us the next line of the file and with -r we assign the values to the variables.

while IFS=","  read -r step x y z temp
do


done

Computations in bash¶

We can use the following equation to convert a temperature from Fahrenheit to Celcius

$$ T_c = ( T_F - 32 ) \cdot \frac{5}{9}.$$

In bash all variables are strings as default. For computations, we need to use the following $(( )) to do the computation as

$((($temp-32)*5/9)).

Note that this build in option only allows for integer values. However, for floating point operations, you can use the tool bc as the following:

In [6]:
%%bash
result=$(bc <<< "scaling=2; 10 + 0.25")
echo $result
10.25

Now, since we converted the temperature, we append each line with the new temperature to the file data_celcius.csv. Note that we use here >> instead of > since we want to append the lines to the existing file and do not want to delete the content.

while IFS=","  read -r step x y z temp
do
    echo "$step,$x,$y,$z,$((($temp-32)*5/9))" >>  data_celcius.csv

done

References¶

  • Newham C. Learning the bash shell: Unix shell programming. " O'Reilly Media, Inc."; 2005 Mar 29. Link
  • Robbins A. Bash Pocket Reference: Help for Power Users and Sys Admins. " O'Reilly Media, Inc."; 2016 Feb 17. Link