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
const endpoint = 'https://gist.githubusercontent.com/Miserlou/c5cd8364bf9b2420bb29/raw/2bf258763cdddd704f8ffd3ea9a3e81d25e2c6f6/cities.json'; | |
const list = document.querySelector('.suggestions'); | |
const input = document.querySelector('.search'); | |
const populateList = data => { | |
const html = data.reduce((acc, item) => { | |
acc = `${acc} | |
<li> | |
<span class="name">${item.city}, ${item.state}</span> |
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"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>JS + CSS Clock</title> | |
</head> | |
<body> | |
<div class="clock"> | |
<div class="clock-face"> |
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"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>JS + CSS Clock</title> | |
</head> | |
<body> | |
<div class="clock"> | |
<div class="clock-face"> |
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
// functions take parameters in any order and set defaults | |
const greetPerson = ({first = 'Saw', last = 'Gerrera'}) => `Hello ${first}! Sorry, I meant Dr. ${last}`; | |
// objects or properties can be built however | |
const person = { | |
first: 'Cassian', | |
last: 'Andor', | |
birthday: '04/04', | |
age: '23', | |
position: 'Pilot' |
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
const keyElements = document.querySelectorAll('.key'); | |
const audioElements = document.querySelectorAll('audio'); | |
const sounds = {}; | |
const keys = {}; | |
// got this from wes bos | |
function removeTransition (e) { | |
if (e.propertyName !== 'transform') return; | |
e.target.classList.remove('playing'); | |
} |
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
<input id="button" type="button" value="WHAT'S MY LUCK!?!" onclick="return window.run()" /> | |
<h1 id="results"></h1> | |
<script type="text/javascript"> | |
var count = 0; | |
var result = ''; | |
window.run = function() { | |
console.log('running'); | |
var rand = Math.floor((Math.random() * 292000000)) + 1; | |
var check = 0; | |
while(true) { |
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
var count = 0; | |
var run = function() { | |
var rand = Math.floor((Math.random() * 292000000)) + 1; | |
var check = 0; | |
while(true) { | |
check = Math.floor((Math.random() * 292000000)) + 1; | |
if(check === rand) { | |
break; | |
} | |
rand = Math.floor((Math.random() * 292000000)) + 1; |
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
// based on standard powerball lotto of 69 balls for the first 5 and 26 for the "power ball" | |
// note that this could potentially run forever, running in node should take ~30min but be warned, the browser is much slower! | |
var _ = require('underscore'); | |
var balls = []; | |
var powerball = []; | |
for(var i = 1; i < 70; i++) { | |
balls.push(i); | |
} | |
for(i = 1; i < 27; i++) { |
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
// somehow when running this in node I get strange numbers for the distribution of the final "random" number | |
// this assumes a lottery system of 6 balls, 5 picked randomly from a batch of 39 and the final one from 8 | |
var fastLottery = function() { | |
var count = 0; | |
var running = true; | |
var distribution = [0, 0, 0, 0, 0, 0, 0, 0]; | |
var finalCount = 0; | |
while (running) { | |
count++; |
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
module.exports = function(grunt) { | |
grunt.registerTask('walk-ast', function() { | |
grunt.log.writeln('walking'); | |
var file = require('file'); | |
var uglify = require('uglify-js'); | |
var result = []; | |
function walkAST(node) { | |
if (node instanceof uglify.AST_If) { | |
if (node.condition) { |