Higher Education schools moving to online-only instruction due to COVID-19.
Last updated March 16, 2020 at 10:00am PDT
Shareable link: bit.ly/covid19schools
- Alabama A&M University 03/14/2020
"use strict"; | |
// Load plugins | |
const autoprefixer = require("autoprefixer"); | |
const browsersync = require("browser-sync").create(); | |
const cp = require("child_process"); | |
const cssnano = require("cssnano"); | |
const del = require("del"); | |
const eslint = require("gulp-eslint"); | |
const gulp = require("gulp"); |
REGION | YEAR | WEEK | %UNWEIGHTED ILI | ILITOTAL | NUM OF PROVIDERS | TOTAL PATIENTS | |
---|---|---|---|---|---|---|---|
Alabama | 2015 | 1 | 5.42916 | 525 | 23 | 9670 | |
Alaska | 2015 | 1 | 0.975177 | 11 | 8 | 1128 | |
Arizona | 2015 | 1 | 2.65774 | 639 | 60 | 24043 | |
Arkansas | 2015 | 1 | 5.29005 | 321 | 19 | 6068 | |
California | 2015 | 1 | 3.99683 | 1865 | 157 | 46662 | |
Colorado | 2015 | 1 | 3.56194 | 134 | 6 | 3762 | |
Connecticut | 2015 | 1 | 2.2769 | 62 | 16 | 2723 | |
Delaware | 2015 | 1 | 1.35514 | 29 | 9 | 2140 | |
District of Columbia | 2015 | 1 | 12.6485 | 181 | 2 | 1431 |
Higher Education schools moving to online-only instruction due to COVID-19.
Last updated March 16, 2020 at 10:00am PDT
Shareable link: bit.ly/covid19schools
DECLARE E INT DEFAULT 0; | |
DECLARE M TEXT DEFAULT NULL; | |
DECLARE CONTINUE HANDLER FOR 1000 SET E='1000', M="hashchk"; | |
DECLARE CONTINUE HANDLER FOR 1001 SET E='1001', M="isamchk"; | |
DECLARE CONTINUE HANDLER FOR 1002 SET E='1002', M="NO"; | |
DECLARE CONTINUE HANDLER FOR 1003 SET E='1003', M="YES"; | |
DECLARE CONTINUE HANDLER FOR 1004 SET E='1004', M="Can't create file '%s' (errno: %d)"; | |
DECLARE CONTINUE HANDLER FOR 1005 SET E='1005', M="Can't create table '%s' (errno: %d)"; | |
DECLARE CONTINUE HANDLER FOR 1006 SET E='1006', M="Can't create database '%s' (errno: %d)"; |
DELIMITER $$ | |
DROP PROCEDURE IF EXISTS LOOP_STUFF$$ | |
CREATE PROCEDURE LOOP_STUFF(IN STR_TXT VARCHAR(255)) | |
BEGIN | |
/* DECLARE VARIABLES FOR USE IN LOOP */ | |
DECLARE STR_LEN INT DEFAULT 0; | |
DECLARE SUB_LEN INT DEFAULT 0; | |
DECLARE SUB_TXT VARCHAR(255); | |
DECLARE COUNTER INT DEFAULT 0; | |
An extra rule with just prerequisites can be used to give a few extra prerequisites to many files at once. For example, makefiles often have a variable, such as objects, containing a list of all the compiler output files in the system being made. An easy way to say that all of them must be recompiled if config.h changes is to write the following:
objects = foo.o bar.o
foo.o : defs.h
bar.o : defs.h test.h
$(objects) : config.h
This could be inserted or taken out without changing the rules that really specify how to make the object files, making it a convenient form to use if you wish to add the additional prerequisite intermittently.
Another wrinkle is that the additional prerequisites could be specified with a variable that you set with a command line argument to make
curl
to get the JSON response for the latest releasegrep
to find the line containing file URLcut
and tr
to extract the URLwget
to download itcurl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \
#!/bin/bash | |
# bash generate random alphanumeric string | |
# | |
# bash generate random 32 character alphanumeric string (upper and lowercase) and | |
NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
# bash generate random 32 character alphanumeric string (lowercase only) | |
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 |
# Usage Example: $ ddl-gist 'https://gist.github.com/4137843' ~/Downloads/gists | |
# save the gist files at that URL in ~/Downloads/gists | |
## | |
ddl_gist(){ | |
if [ $# -ne 2 ]; | |
then | |
echo 'Failed. Syntax: $> ddl-gist GITHUB_GIST_URL DOWNLOAD_PATH' | |
return | |
fi |
{ | |
"name": "my-app", | |
"version": "1.0.0", | |
"description": "My test app", | |
"main": "src/js/index.js", | |
"scripts": { | |
"jshint:dist": "jshint src/js/*.js", | |
"jshint": "npm run jshint:dist", | |
"jscs": "jscs src/*.js", | |
"browserify": "browserify -s Validating -o ./dist/js/build.js ./lib/index.js", |