Obituary for Shahriar Bayegan
06 07 21 • 22:52&

http://www.phy.ohio.edu/~hadizade/Bayegan.html
Hadizadeh, M.R., Radin, M., Moeini Arani, M. et al.
Obituary for Shahriar Bayegan. Few-Body Syst. 62, 74 (2021).
https://doi.org/10.1007/s00601-021-01644-x
Set up CSU email on Apple Mail (Mac)
11 04 19 • 15:40&
After setting up your Office 365 email account, you can add your email address to Apple Mail on your Mac. Then you can send and receive business emails from your phone. Alternatively, you can download Outlook 2016 and add your Office 365 email.
- Open Apple Mail and click Mail.
- Click Add Account.
- Select Exchange and click Continue.

- Enter your name, CSU email address and password.

- Click Sign In.
- Click Done (you can come back and edit these settings at any point).
- If Microsoft cannot verify your account, you will be asked to enter your details manually:
— User Name: your CSU email address
— Password: your CSU email password
— Internal URL: outlook.office365.com
— External URL: outlook.office365.com
— Domain: leave blank

- Click Sign In, your account will display and emails will start to load, this can take a few minutes. Test your Apple Mail by sending yourself an email from your Office 365 web portal and responding to it from Apple Mail.

Source: GoDaddy Help
How to Allow Apps from Anywhere in macOS Gatekeeper
21 02 19 • 11:05& Filed in: Apple | Application

- Quit out of System Preferences
- Open the Terminal app from the /Applications/Utilities/ folder and then enter the following command syntax:
sudo spctl --master-disable
- Hit return and authenticate with an admin password
- Relaunch System Preferences and go to “Security & Privacy” and the “General” tab. You will now see the "Anywhere" option under "Allow apps downloaded from:".
How to run multiple programs in a sequence using a bash script?
27 06 18 • 02:11& Filed in: Coding
How to write a bash script that goes through each subdirectory inside a parent_directory and executes a command in each subdirectory?
Suppose there are 10 subdirectories inside a parent_directory with the following structure:
***parent_directory (name could be anything - doesn't follow a pattern)
— subdir1 (subdirectory names follow a specific pattern, e.g. fixed characters + number)
input.data (input of the code)
code.f (main code, here is a Fortran code)
Makefile (makefile to execute and run the code)
— subdir2
input files + codes + Makefile
— subdir3
input files + codes + Makefile
.
.
.
— subdir10
Suppose we want to run the codes in the first five subdirectories, i.e. subdir1-subdir5, wait for the processes to finish and then continue running the codes in the next five subdirectories, i.e. subdir6-subdir10.
The example of the bash script is as (download the bash script file
You can run the bash script (called "run.sh") by:
Suppose there are 10 subdirectories inside a parent_directory with the following structure:
***parent_directory (name could be anything - doesn't follow a pattern)
— subdir1 (subdirectory names follow a specific pattern, e.g. fixed characters + number)
input.data (input of the code)
code.f (main code, here is a Fortran code)
Makefile (makefile to execute and run the code)
— subdir2
input files + codes + Makefile
— subdir3
input files + codes + Makefile
.
.
.
— subdir10
Suppose we want to run the codes in the first five subdirectories, i.e. subdir1-subdir5, wait for the processes to finish and then continue running the codes in the next five subdirectories, i.e. subdir6-subdir10.
The example of the bash script is as (download the bash script file
):#!/bin/bash
## exit on the first error.
set -e
# Add the full path of parent_directory to run the codes in the subdirectories
path=$(pwd)
## just for checking the path of the parent_directory
echo path= $path
## the min and the max values of the int variable i, changing from 1 to 5
i=1
imax=5
## do loop from i to imax
while [ $i -le $imax ]; do
## path of each subdirectory defined as "subdir" + integer i
pathi=$path/subdir$i
## just for checking the path of each subdirectory
echo pathi= $pathi
## cd to each subdirectory of the loop
cd $pathi
## compile and run the code in each subdirectory using Makefile ("Main" is the executable file)
make -f Makefile
nohup ./Main &
## adding the counter
let i=i+1
done
## Wait for the processes to finish
wait
i=6
imax=10
## do loop from i to imax
while [ $i -le $imax ]; do
## path of each subdirectory defined as "subdir" + integer i
pathi=$path/subdir$i
## just for checking the path of each subdirectory using Makefile ("Main" is the executable file)
echo pathi= $pathi
## cd to each subdirectory of the loop
cd $pathi
## compile and run the code in each subdirectory
make -f Makefile
nohup ./Main &
## adding the counter
let i=i+1
done
You can run the bash script (called "run.sh") by:
$ bash run.sh
How to copy a file to all subdirectories in a directory using a command-line?
26 06 18 • 13:32& Filed in: Coding
This will put the file "code.f" (in the current working directory) in all of the subfolders, but not their subfolders:
But this will put the file "code.f" in all of the subfolders and their subfolders:
for d in */; do cp code.f "$d"; done
But this will put the file "code.f" in all of the subfolders and their subfolders:
find . -type d -exec cp code.f {} \;