This file contains hidden or 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
| [Big Bay Boom!] | |
| --------------------------- | |
| Jul 4, 2019 (original_date) | |
| 2019-07-04 (dates *start*) | |
| [San Diego Crew Classic] | |
| --------------------------- | |
| Apr 6 - Apr 7, 2019 (original_date) | |
| 2019-04-06 (dates *start*) |
This file contains hidden or 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
| version: '2' | |
| services: | |
| wordpress: | |
| image: wordpress:latest | |
| ports: | |
| - 8080:80 | |
| volumes: | |
| - ./wp-content:/var/www/html/wp-content |
This file contains hidden or 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> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>Dot loader</title> | |
| </head> | |
| <body> | |
| Loading<span id="dots"></span> | |
| </body> |
This file contains hidden or 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> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <script src="https://code.jquery.com/jquery-3.1.0.js"></script> | |
| <style id="jsbin-css"> | |
| div { | |
| width:50px; |
This file contains hidden or 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
| /* | |
| Filename ./myModule.js | |
| */ | |
| let a = (obj)=>{ | |
| return obj.x * obj.y | |
| } | |
| let b = (obj)=>{ |
This file contains hidden or 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 falseTracker = 0; | |
| isUniform(["2","2","2","2"]); | |
| function isUniform(array) { | |
| var firstElement = array[0]; | |
| array.shift(); | |
| array.forEach(function(element,index) { | |
| if (firstElement !== element) | |
| falseTracker = 1; |
This file contains hidden or 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 imgSource = 'http://fonts.voxmedia.com/emoji/unicode/1f4a9.png'; | |
| var txtSource = "shit ♥ "; | |
| var valueInput = prompt("How many shit faces?"); | |
| for (var a = 1; a <= valueInput; a++) { | |
| $("#container").add("div").attr('id', "image" + a); | |
| $("#image" + a).append("<img class = 'emojiIcon' src=" + imgSource + ">"); | |
| $("#container").add("div").attr('id', "text" + a); | |
| $("#text" + a).append("<h3 class = 'emojiNumber'>" + txtSource + a + "</h3>"); | |
| } |
NewerOlder