Skip to content

Instantly share code, notes, and snippets.

View saxenap's full-sized avatar

Praveen Saxena saxenap

  • West Lafayette, IN
View GitHub Profile
@saxenap
saxenap / webstoemp-gulpfile.js
Created March 22, 2020 03:13 — forked from jeromecoupe/webstoemp-gulpfile.js
Gulp 4 sample gulpfile.js. For a full explanation, have a look at https://www.webstoemp.com/blog/switching-to-gulp4/
"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");
@saxenap
saxenap / ILINet02.csv
Created March 19, 2020 02:56 — forked from yuzhang21/ILINet02.csv
Dataset02 ILINet
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
@saxenap
saxenap / schools.md
Created March 19, 2020 02:55 — forked from jessejanderson/schools.md
Coronavirus (COVID-19) School Closures in the US

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

@saxenap
saxenap / gist:4ecb9c5453ad3481675a75f3a92e8b1b
Created May 24, 2018 04:08 — forked from mmdemirbas/gist:3656288
Aggresive MySql Stored Procedure Debugging
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)";
@saxenap
saxenap / mysql_list_loop.sql
Created May 23, 2018 23:25 — forked from mattdexter/mysql_list_loop.sql
MySQL Stored Procedure to Loop Delimited List
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;
@saxenap
saxenap / Multiple_Rules_for_One_Target.md
Created May 10, 2018 20:26 — forked from rainbowbird/Multiple_Rules_for_One_Target.md
dribs and drabs for makefile knowledge

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

  • Use curl to get the JSON response for the latest release
  • Use grep to find the line containing file URL
  • Use cut and tr to extract the URL
  • Use wget to download it
curl -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
@saxenap
saxenap / gist:8293d0e9e379896d501a8f02cd8b97c0
Created April 21, 2018 18:59 — forked from abhishekkr/gist:4165864
shell.func-download-all-files-from-any-GITHUB-GIST-URL {updated to *new* gist}
# 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
@saxenap
saxenap / package.json
Created April 13, 2018 23:55 — forked from addyosmani/package.json
npm run-scripts boilerplate
{
"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",