This file contains hidden or 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
| <?xml version="1.0"?> | |
| <configuration> | |
| <system.webServer> | |
| <rewrite> | |
| <rules> | |
| <rule name="React Routes" stopProcessing="true"> | |
| <match url=".*" /> | |
| <conditions logicalGrouping="MatchAll"> | |
| <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> | |
| <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> |
This file contains hidden or 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="viewport" content="width=device-width, initial-scale=1.0"> | |
| <style> | |
| html, | |
| body { | |
| height: 100% | |
| } |
This file contains hidden or 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
| # Last updated: 08/24/2916 | |
| # | |
| # Total instructions available: 18 | |
| # | |
| # https://docs.docker.com/engine/reference/builder/ | |
| # | |
| # You can use a .dockerignore file in the same context directory as | |
| # your Dockerfile to ignore files in the context before sending them | |
| # to the Docker daemon for building to speed up building. |
This file contains hidden or 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
| [ | |
| { | |
| "name":"Aaron Powell", | |
| "website":"http://ndcsydney.com/speaker/aaron-powell/", | |
| "bio":"I like long walks on the beach talking about JavaScript" | |
| }, | |
| { | |
| "name":"Adam Cogan", | |
| "website":"http://ndcsydney.com/speaker/adam-cogan/", | |
| "bio":"Chief Architect at SSW" |
This file contains hidden or 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
| [ | |
| { | |
| "name":"Aaron Powell", | |
| "website":"http://ndcsydney.com/speaker/aaron-powell/", | |
| "bio":"I like long walks on the beach talking about JavaScript", | |
| "id":1 | |
| }, | |
| { | |
| "name":"Adam Cogan", | |
| "website":"http://ndcsydney.com/speaker/adam-cogan/", |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <Response> | |
| <Dial> | |
| <Conference waitUrl="http://twimlets.com/holdmusic?Bucket=com.twilio.music.ambient">pv-conference</Conference> | |
| </Dial> | |
| </Response> |
This file contains hidden or 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
| # This function generates a new filename based on the current datetime | |
| function GenerateFileNamePerHour | |
| { | |
| # Store the current date in a variable | |
| $cDate = Get-Date | |
| $val = ("{0}_{1}_{2}-{3}00HRS.log" -f $cDate.Day, $cDate.Month, $cDate.Year, $cDate.Hour) | |
| return $val | |
| } | |
| # This script will run till the 328th day of the year |
This file contains hidden or 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
| # Define redis host & auth credentials | |
| $redisHost = "redis.local" | |
| $redisAuth = "redispwd" | |
| # Define per site variables stored in redis | |
| $sites = @("server-01","server-01") | |
| # Define function to Pretty Print Json (and replace escaped json string) | |
| function CleanJson($data) | |
| { |
This file contains hidden or 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 lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title> | |
| Apache Web Server <!--#echo var="SCRIPT_NAME" --> | |
| </title> | |
| </head> | |
| <body> |
This file contains hidden or 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
| var basketModule = (function () { | |
| // privates | |
| var basket = []; | |
| function doSomethingPrivate() { | |
| //... | |
| } | |