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> | |
<body> | |
<section> | |
<input id="theData" type="text" placeholder="Enter some text to save" /> | |
</section> | |
<section> | |
<h1>Local Storage</h1> | |
<article> | |
<label for="localValue">Local Storage: </label> |
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> | |
<title>HTML5 Canvas Game</title> | |
<script type="text/javascript" src="canvas.js" ></script> | |
</head> | |
<body> | |
<h2>Left/Right to Move. Space to Jump.</h2> | |
<canvas id="canvas" width="640" height="320" > | |
Your browser doesn't seem to support the canvas tag... |
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
## IDE Free, presentation demos | |
This gist contains sample scripts of the terminal demos used throughout the presentation. |
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
## 5 Reasons Why Your Website Is[n't] a Native App | |
These scripts are the commands used for the presentation demonstration |
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
<?xml version="1.0" encoding="utf-8"?> | |
<key name="Software"> | |
<key name="ConEmu"> | |
<key name=".Vanilla" modified="2017-04-17 23:40:13" build="170118"> | |
<value name="StartType" type="hex" data="02"/> | |
<value name="CmdLine" type="string" data=""/> | |
<value name="StartTasksFile" type="string" data=""/> | |
<value name="StartTasksName" type="string" data="{Shells::PowerShell}"/> | |
<value name="StartFarFolders" type="hex" data="00"/> | |
<value name="StartFarEditors" type="hex" data="00"/> |
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
<# Create PS Profile #> | |
New-Item -Path $Profile -Type File -Force | |
<# Install Chocolatey #> | |
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex | |
<# | |
Utilities | |
- FileZilla | |
- PuTTY Tools |
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
// one line | |
serviceClientMock.Setup(scm => scm.CreateBlobContainer(It.IsAny<string>(), PublicAccessType.Blob, Mock.Of<IDictionary<string, string>>(), CancellationToken.None)).Returns((string s) => Azure.Response.FromValue<BlobContainerClient>(GenerateBlobContainerClient(s).Object, Mock.Of<Azure.Response>())); | |
// one line per method | |
serviceClientMock | |
.Setup(scm => scm.CreateBlobContainer(It.IsAny<string>(), PublicAccessType.Blob, Mock.Of<IDictionary<string, string>>(), CancellationToken.None)) | |
.Returns((string s) => Azure.Response.FromValue<BlobContainerClient>(GenerateBlobContainerClient(s).Object, Mock.Of<Azure.Response>())); | |
// one line per parameter | |
serviceClientMock.Setup(scm => scm.CreateBlobContainer( |