Kumpulan MAULID dan SHOLAWAT – mp3

Monggo unduh file MP3 nya di link google drive berikut:

https://drive.google.com/drive/folders/1jcAVw1ObiXntjj19RyBBPG_kRvdlfSRm?usp=sharing

 

ref:
maulid dibai https://www.youtube.com/watch?v=_X2uDBrOR4A&t=855s
maulid barzanji https://www.youtube.com/watch?v=q2VNZPmgEh4&t=1725s
maulid diyaul lami https://www.youtube.com/c/MajelisRasulullahSAWOfficial
mudhoriyah https://www.youtube.com/watch?v=BvQY0kAtLP4&t=21s
nas-alukasy syahadah https://www.youtube.com/watch?v=anDh8AIlXJg
munfarijah https://www.youtube.com/watch?v=duDSD4ZreJw
munfarijah https://www.youtube.com/watch?v=i1sHRPXaEtA
maulid simtudduror https://www.youtube.com/watch?v=de4z6GE2OEw

related post: https://kangmasjuqi.wordpress.com/2019/10/02/sholawat-mudhoriyah/

working with Deployer


# deployedCommits for https://deployer.org/
# created by marjuqi, nov 2019
# 1. this script is designed to fetch commits in each releases folder.
# the final output will be stored in file deployedCommits.log
# 2. in the beginning of the setup, just create a dump latestCommitID.log file:
# cd /var/www/sites/PROJECT_NAME/ && echo 123456789 > latestCommitID.log
# go to the currect version of the codes
projectFolder=/var/www/sites/PROJECT_NAME/
cd $projectFolder'current/'
# extract 50 latest commits from the source code and then store them into file commits.log
git log –pretty=oneline | grep -v "Merge" | head -n 50 > commits.log
# get the commitID in the first line of commits.log content and then store it into latestCommitID.log
head -1 commits.log | awk '{print $1}' > latestCommitID.log
# get latestCommitID as a commits limit
cd $projectFolder && latestCommitID=`cat latestCommitID.log`
# fetch new commits ID from the current deployment until the commits-limit reached,
# and then stored them into deployedCommits.log file
cd $projectFolder'current' && sed "/$latestCommitID/q" commits.log > deployedCommits.log
# update our latestCommitID.log, now it holds the very latest commit ID
cp -a latestCommitID.log $projectFolder'latestCommitID.log'
# in the end, every release folder has a file called "deployedCommits.log"
# thanks.