Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Password Generator</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
let cards = [
'AH', '2H', '3H', '4H', '5H', '6H', '7H', '8H', '9H', '10H', 'JH', 'QH', 'KH',
'AD', '2D', '3D', '4D', '5D', '6D', '7D', '8D', '9D', '10D', 'JD', 'QD', 'KD',
'AS', '2S', '3S', '4S', '5S', '6S', '7S', '8S', '9S', '10S', 'JS', 'QS', 'KS',
'AC', '2C', '3C', '4C', '5C', '6C', '7C', '8C', '9C', '10C', 'JC', 'QC', 'KC'
]
<script>
let grades1 = new Array(75,85,92,100,91,67);
let grades2 = new Array(88,77,56,99,80,79);
let grades3 = new Array(90,91,77,72,85,88);
let allGrades = [grades1, grades2, grades3];
//Loop through each array object
for(x=0; x < allGrades.length; x++){
alert(allGrades[x]);
@mlassoff
mlassoff / bands.csv
Created April 12, 2020 21:49
File for Activity 002 in Python Code Camp by Framework Television.
Journey 10
REO Speedwagon 8
Foreigner 7
Scandal 8
The Cure 9
Orleans 7
Doobie Brothers 9
Cheap Trick 8
Pink Floyd 10
Live 9
@mlassoff
mlassoff / directory.py
Last active April 12, 2020 20:44
Day 8 Activity 001 Solution for Framework's Python Code Camp
entry = ""
out = ""
while entry != "XXX":
name = raw_input("Enter a full name: ")
phone = raw_input("Enter a phone number: ")
email = raw_input("Enter an email address: ")
print("\n")
entry = raw_input("Press enter to add a new entry or XXX to stop")
out += name + ","
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Tip Calculator</title>
<link rel="stylesheet" href="https://unpkg.com/onsenui/css/onsenui.css">
<link rel="stylesheet" href="https://unpkg.com/onsenui/css/onsen-css-components.min.css">
<script src="https://unpkg.com/onsenui/js/onsenui.min.js"></script>
</head>
<!DOCTYPE html>
<html>
<head>
<title>Complex Selectors</title>
</head>
<body>
<header align="center">
<h2>Living in Southwestern Connecticut</h2>
<p class="fancy">Along the Connecticut Coast</p>
</header>
I am happy to join with you today in what will go down in history as the greatest demonstration for freedom in the history of our nation.
Five score years ago, a great American, in whose symbolic shadow we stand today, signed the Emancipation Proclamation. This momentous decree came as a great beacon light of hope to millions of Negro slaves who had been seared in the flames of withering injustice. It came as a joyous daybreak to end the long night of their captivity.
But one hundred years later, the Negro still is not free; one hundred years later, the life of the Negro is still sadly crippled by the manacles of segregation and the chains of discrimination; one hundred years later, the Negro lives on a lonely island of poverty in the midst of a vast ocean of material prosperity; one hundred years later, the Negro is still languished in the corners of American society and finds himself in exile in his own land.
So we’ve come here today to dramatize a shameful condition. In a sense we’ve come to our nation’
<script>
let numbers = new Set()
.add("B1")
.add("B2")
.add("B3")
.add("B4")
.add("B5")
.add("B6")
.add("B7")
.add("B8")
<!DOCTYPE html>
<html>
<head>
<title>Music</title>
<style>
table
{
border: 1px dotted #128fc2;
background-color: #eeeeee;
border-collapse: collapse;