[Verifying my keyoxide cryptographic key: https://keyoxide.org/E5655B7E3F856C237DF6330D23F5ED613A1E4DF0]
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
<html> | |
<head> | |
<title>The Library</title> | |
</head> | |
<script type="text/javascript"> | |
class LibraryItem{ | |
// add properties to this that hold the itemType and the title.. |
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 lang='en-US'> | |
<head> | |
<title>Random Name Generator</title> | |
</head> | |
<script type='text/javascript'> | |
var MaleName = ['Jason', 'Michael', 'Noah', 'Liam', 'Benjamin','Bill','Justin','Ted','Joe','Steve','Chris','Charles','Craig','Duane','Sean','Chuck','Anthony','Tony']; | |
var FemaleName = ['Emma', 'Olivia', 'Ava', 'Isabelle', 'Mia','Lisa','Emily','Shannon','Cyndy','Amber','Shonna','Marsha','Anna','Meghan','Sunny','Emma']; |
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
<html> | |
<head> | |
<script type="text/javascript"> | |
class Student{ | |
constructor(firstName, lastName) { | |
this.firstName = firstName; | |
this.lastName = lastName; | |
} |
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
<html> | |
<head> | |
<script type="text/javascript"> | |
// random number will return | |
// an integer (whole number) between 0 and maxValue-1 | |
// so, if you have an array of six elements and you want | |
// a random index value to find a value in that array | |
// you'd pass in the array length of six and this would | |
// return a value between 0 and 5 |
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
<html> | |
<head> | |
<script type="text/javascript"> | |
// better way to create an array | |
// its easier and less prone to mistakes | |
var betterArray = ['summer','fall']; | |
//console.log(betterArray); | |
//console.table(betterArray); |
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
<html> | |
<head> | |
<script type="text/javascript"> | |
// define a couple strings | |
var myString = 'first part'; | |
var myOtherString = 'last part'; | |
// concatenate the strings with a space in the middle | |
var myLastString = myString + ' ' + myOtherString; |
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
<html> | |
<head> | |
<script type="text/javascript"> | |
// define a function | |
function isEven(numberToTest) | |
{ | |
var minVal = -1000000; | |
var maxVal = 1000000; |
I hereby claim:
- I am finalcut on github.
- I am finalcut (https://keybase.io/finalcut) on keybase.
- I have a public key ASA9kt5b52Uqw1FsfO_0_PcN6Mw9ajWls3FQckEUMhALLgo
To claim this, I am signing this object:
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
[CmdletBinding()] | |
Param( | |
[Parameter(Mandatory=$True,Position=1)] | |
[string]$subscription, | |
[Parameter(Mandatory=$True,Position=2)] | |
[string]$service, | |
[Parameter(Mandatory=$True,Position=3)] | |
[string]$projectName, |
NewerOlder