Checkout VueMastery at https://www.vuemastery.com/courses/
npm i -g @vue/cli
Checkout VueMastery at https://www.vuemastery.com/courses/
npm i -g @vue/cli
GET/SET Windows PowerShell Execution policy Get-ExecutionPolicy
. If it returns Restricted
, then run Set-ExecutionPolicy AllSigned
or Set-ExecutionPolicy Bypass -Scope Process
.
Install, PowerShell execute:
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
A. Select: Static Website hosting (https://docs.aws.amazon.com/AmazonS3/latest/dev/EnableWebsiteHosting.html)
B. Note the URL at the top of that setting (your-domain.net.s3-website.eu-west-2.amazonaws.com)
https://www.npmjs.com/package/eyeglass
npm i -D eyeglass
Currently considering https://github.com/webdriverio/webdrivercss
Core Goals:
A simple asynchronous data store.
STATUS: This is a thought experiment, not a serious proposal. Would basic async storage like this be useful? With this plus some locking primitive, could you build Indexed DB?
Like Indexed DB:
/* Given a string containing a series of words, for example containing a newspaper article, | |
implement a function to read the string and count the words within it. | |
You can’t use ‘split’ or similar. */ | |
var sentence = "Given a string containing a series of words, for example containing a newspaper article,"; | |
var wordsCount = function (str) { | |
var i = 0; | |
var word = ""; | |
var arr = []; | |
for (i = 0; i < str.length; i++) { |
/* Task: | |
// Write a function called GCD | |
// that prints the greatest common divisor of two positive integers (a and b). | |
// */ | |
function GCD(a,b) { | |
'use strict'; | |
var calc = function (a,b) { | |
return (a % b === 0) ? b : null; | |
}, |
A Pen by Chris Coyier on CodePen.