One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
document.write('Jason is ' jason.age); // Output: Jason is 24 | |
document.write('Jason is a ' jason.gender); // Output: Jason is a male |
server { | |
listen 80; | |
listen [::]:80; | |
server_name domain.com; | |
autoindex off; | |
index index.php index.html; | |
root /srv/www/domain.com/public; |
let hasBlobConstructor = typeof(Blob) !== 'undefined' && (function () { | |
try { | |
return Boolean(new Blob()); | |
} catch (e) { | |
return false; | |
} | |
}()); | |
let hasArrayBufferViewSupport = hasBlobConstructor && typeof(Uint8Array) !== 'undefined' && (function () { | |
try { |
Short (72 chars or less) summary
More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).
Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
1. Install "Dart Code" extention for VS Code. | |
2. run "pub global activate stagehand" with your Terminal | |
"pub global activate webdev" | |
3. Add the Path "C:\Users\<username>\AppData\Roaming\Pub\Cache\bin" to the environment variable path. | |
Install Chocolatey for Dart cli update: | |
run "choco upgrade chocolatey" to update. |
using System; | |
using System.Threading.Tasks; | |
using NUnit.Framework; | |
namespace PuppeteerSharp.Contrib.Sample | |
{ | |
public class Examples | |
{ | |
async Task<IBrowser> Browser() | |
{ |
<html> | |
<head> | |
<script | |
src="https://unpkg.com/react@16/umd/react.development.js" | |
crossorigin | |
></script> | |
<script | |
src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" | |
crossorigin | |
></script> |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using Microsoft.EntityFrameworkCore; | |
namespace EFSampleApp | |
{ | |
public class Program | |
{ | |
public static void Main(string[] args) |