/^https?:\/\/(?<domain>.*?)\/(?<tenant>.*?)\/(?<study>.*?)\/(?<rest>.*)$/gm
http://xxxx-dev.xxxxxxxx.edu/nuvalence/demo/test/hello/howare/you
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.7" | |
services: | |
plex: | |
image: plexinc/pms-docker | |
container_name: plex | |
restart: unless-stopped | |
environment: | |
- TZ=America/New_York | |
devices: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Students = [ | |
{ | |
name: "Zhao", | |
gender: 'M', | |
}, | |
{ | |
name: "John", | |
gender: 'M', | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Array.prototype = { | |
// left: num => x.slice(num), | |
// divideBy: x => x.map(y => y / num), | |
// value: x => x | |
// } | |
let t1 = [ | |
{name: 'Alice', age: 20}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="Check constraints"> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://gist.github.com/dlants/8d7fadfb691b511f1376ba437a9aaea9.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Resize by X | |
----------- | |
:10winc + - < > | |
Open Terminal | |
------------- | |
:vsplit term://zsh | |
:split term://zsh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
moviedb.discoverMovie(query_en, function (err, list) { | |
//Get Movie List page 1 | |
if (err) {return console.log(err);} | |
movieDbList = movieDbList.concat(list.results); | |
//Query Limitation has been set by TMDB API- 40 Queries ---10 Second Wait Time--->Next Query | |
//Create an array of Queries by Page for the rest of the movies | |
//Create batches of 30 Request to be processed | |
for (var page_no = 2; page_no <= list.total_pages; page_no++) { | |
query_temp = query_en + '&page=' + page_no; | |
querybatch.push(query_temp); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Controlling Visibility | |
var Animal = function Animal(init){ | |
var privateInit = init; | |
var interface = { | |
getName: function(){ | |
return "init Name: "+privateInit; | |
}, | |
setName: function(newName){ | |
privateInit = newName; |