git clone git://github.com/fd57d8aa59b1574ee7728edf128814d3.git docker-drupal-fpm
cd docker-drupal-fpm
mkdir -p /usr/local/share/dockervolumes/drupal # if you change this folder please update the run.sh
chmod +x run.sh && ./run.sh up
#!/usr/bin/env bash | |
# Print versions of installed software | |
# bash /scripts/software.sh >> /SOFTWARE.txt | |
# Print distribution info | |
echo -e "-----------------------------------\n" | |
echo -e "$(uname -a)" | |
echo -e "---------------------------------- \n" | |
# Print date created |
#!/bin/bash | |
echo "" | |
echo "Switching to project docroot." | |
cd /var/www/chromatichq.com/docroot | |
echo "" | |
echo "Pulling down the latest code." | |
git pull origin master | |
echo "" | |
echo "Clearing drush caches." |
Below is the list of modern JS frameworks and almost frameworks – React, Vue, Angular, Ember and others.
All files were downloaded from https://cdnjs.com and named accordingly.
Output from ls
command is stripped out (irrelevant stuff)
$ ls -lhS
566K Jan 4 22:03 angular2.min.js
wrk
is a modern HTTP benchmarking tool capable of generating significant load when run on a single multi-core CPU. It combines a multithreaded design with scalable event notification systems such as epoll and kqueue.
Basic Usage
wrk -t12 -c400 -d30s http://127.0.0.1:8080/index.html
by Stanford Web Services
Version: 1.0.0
Date: October 30, 2015
This document is meant to be a comprehensive guide to web development standards for Stanford Web Services around Drupal web development. This document is our canonical source and guide.
# The command finds the most recent tag that is reachable from a commit. | |
# If the tag points to the commit, then only the tag is shown. | |
# Otherwise, it suffixes the tag name with the number of additional commits on top of the tagged object | |
# and the abbreviated object name of the most recent commit. | |
git describe | |
# With --abbrev set to 0, the command can be used to find the closest tagname without any suffix: | |
git describe --abbrev=0 | |
# other examples |