Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View manishmore's full-sized avatar

Manish More manishmore

View GitHub Profile
@manishmore
manishmore / DockerToDrupal.txt
Created November 10, 2018 14:30
Install Drupal through the Docker Composer.
Here is the docker command to launch a MySQL 5.7 container, name it "DrupalMysql", set a
few environment variables, expose the MySQL port 3306 as 3308 on the local host and daemonise it:
docker run \
--name DrupalMysql \
-e MYSQL_ROOT_PASSWORD=my-secret-pw \
-e MYSQL_DATABASE=drupal \
-e MYSQL_USER=drupal \
-e MYSQL_PASSWORD=drupal \
-p 3308:3306 \
@manishmore
manishmore / Blue-Ocean.txt
Created June 6, 2019 14:06
Blue-Ocean fail
node() {
stage('Build') {
println 'I prepare the build for the parallel steps'
}
stage('Test') {
parallel (
"win7-vs2012" : { stage("checkout") { }; stage("build") { }; stage("test") { } },
"win10-vs2015" : { stage("checkout") { }; stage("build") { }; stage("test") { }},
"linux-gcc5" : { stage("checkout") { }; stage("build") { }; stage("test") { } }
Bar Graph
The given bar graph is depicting the information about _______________.
The X-axis gives the information about the _____, while the Y-axis gives the information about the _____.
___ holds the highest percentage which is ___%, while ___ holds the lowest percentage which is ___%.
In conclusion, the information presented in the graph is very accurate and descriptive. This clearly describes the image.
Line Graph
The given line graph is depicting the information about _______________.
The X-axis gives the information about the _____, while the Y-axis gives the information about the _____.
From an overall perspective, we can see that ___ holds the highest percentage which is ___%, while ___ holds the lowest percentage which is ___%.
PROBLEM AND SOLUTION
One of the most conspicuous trends in today’s world is affecting personal life due to spending too much time on work in all over the world. There is a wide range of factors that account why this is happening. In my opinion, this situation can be remedied provided that some effective measures are taken.
There is a myriad reason of this soaring concern, unlike everyday problem, which can be dealt with easily, shortage of time, which is extremely perilous can lead to an array of issues such as relationship problems and growth of children. Thanks to the aforementioned predicaments, it can not only affect people but also society can suffer immensely.
Steps to deal with this problem are many, but the most important is in fact not only a remote and unexpected, but also accessible and practicable. The primary one stems from the facts that by ensuring implementation of fact and policies, the government authorities can help a native thrive. Besides, international organization and local authorities
1. You did not need a special knowledge to enjoy this book.
2. We see the stars that ... billion years ago. (大意为我们能看到几十亿年前的星星。动词待补充。)
3. Scientists were unsure when the early man left Africa.
4. The northern campus car park is located behind the library.
5. As a union member, we can influence the changes of the university. (不确定是否有student,加粗单词可以确定)
6. Neuroscience is compounded/is a compound of completely separate parts.
7. More graduate training is needed after university is finished.
8. The horizontal line on the graph indicates there was no periodical change/there was no change in the period.
9. Our facilities include five libraries in the university.
10. Purity is one feature that makes gold expensive.
@manishmore
manishmore / Build-jenkins-job-loop.txt
Created January 28, 2020 18:07
Build-jenkins-job-loop.txt
for i in *.txt; do
if [ -s "$i" ]
then
echo "$i has some data."
while read p; do
for j in $(echo $p | sed "s/,/ /g")
do
# call your procedure/other scripts here below
Practice: DevOps:
The Difference Between Docker Compose And Docker Stack.
Answer: Docker stack is ignoring “build” instructions. You can’t build new images using the stack commands. It need pre-built images to exist. So docker-compose is better suited for development scenarios.
Q: Which is more suitable for Docker Container, Stateless or Stateful application?
A: Stateless applications should be preferred over a Stateful application for Docker Container. For instance, we can create one container from our application and take out the configurable state parameters from the app. Once it is one, we can run the same container with different parameters in production and other environments. Through the Stateless application, we can reuse the same image in distinct scenarios. Also, it is easier to scale a Stateless application that a Stateful application when it comes to Docker Containers.
Q: Explain the disparity between the commands ‘Docker run’ and ‘Docker create’.
Answer: The primary difference between Docker r
6.134 ECOLOGY AND CLIMATOLOGY 确认原文:
Ecology is the study of interactions of organisms among themselves and with their environment. It seeks to understand patterns in nature (e.g., the spatial and temporal distribution of organisms) and the processes governing those patterns. Climatology is the study of the physical state of the atmosphere – its instantaneous state or weather, its seasonal-to-interannual variability, its long-term average condition or climate, and how climate changes over time. These two fields of scientific study are distinctly different. Ecology is a discipline within the biological sciences and has as its core the principle of natural selection. Climatology is a discipline within the geophysical sciences based on applied physics and fluid dynamics. Both, however, share a common history.
The origin of these sciences is attributed to Aristotle and Theophrastus and their books Meteorological and Enquiry into
Plants, respectively, but their modern beginnings trace back to natural history and p
@manishmore
manishmore / decode.py
Created August 11, 2020 07:37
Search based on the user input from json file given.
import json
import datetime
import re
# Input the key value that you want to search
keyVal = input("Enter a key value: \n")
keyNum = input("Enter a number of days: \n")
with open('metadata.json') as json_file:
data = json.load(json_file)
for p, item in enumerate(data):
@manishmore
manishmore / supervisord.sh
Created August 11, 2020 08:16
supervisord shell script
bash -c "sleep 1 && exit 0"
bash -c "sleep 5 && exit 0"
bash -c "sleep 1 && exit 1"
sh -c "sleep 10 && exit 1"
bash -c "if [ -f lock ]; then exit 1; fi; sleep 10 && touch lock && exit 1"
bash -c "if [ -f lock ]; then exit 1; fi; sleep 10 && touch lock && exit 1"