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
| $('.title') | |
| .typetype("Hello there.", { e: 0.04, t: 100,}) | |
| .backspace( | |
| 12, | |
| { | |
| t: 75, | |
| callback: function() { | |
| $('.title') | |
| .delay(1122) | |
| .typetype("I am &!", { e: 0.04, t: 100,}) |
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 lang="en"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <meta charset="utf-8"/> | |
| <title>&! - bnb, bitandbang - Student Web Designer and Developer</title> | |
| <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> | |
| <link href="./css/main.css" rel="stylesheet"> |
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
| // Hover effects on services | |
| var oldBG1 = $('.widItem.1').css('background-color'); | |
| var oldBG2 = $('.widItem.2').css('background-color'); | |
| var oldBG3 = $('.widItem.3').css('background-color'); | |
| $('.widItem').hover( | |
| function() { | |
| $(this) | |
| .addClass('widAnim') | |
| .animate({ |
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
| <head> | |
| <meta charset="utf-8" /> | |
| <title> | |
| Whiteout Mail | |
| </title><!-- Theses CSP rules are used as a fallback in runtimes such as Cordova --> | |
| <meta http-equiv="Content-Security-Policy" content= | |
| "default-src 'self' chrome-extension: file: gap:; object-src 'none'; script-src 'self' 'unsafe-eval' chrome-extension: file: gap:; connect-src *; style-src 'self' 'unsafe-inline' chrome-extension: file: gap:; img-src 'self' chrome-extension: file: gap: data:" /> | |
| <!-- iOS homescreen link --> | |
| <meta name="apple-mobile-web-app-capable" content="yes" /><!-- iOS iPad icon (retina) --> | |
| <link rel="apple-touch-icon" sizes="152x152" href="img/icon-152-ios.png" /><!-- iOS iPhone icon (retina) --> |
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
| if(!isset($_GET['entity'])){ | |
| header('HTTP/1.0 400 Bad Request'); | |
| header('Link: <?entity=some-entity-uri>, rel="Usage";'); //Is the entity here... | |
| die(); | |
| } | |
| $entity = $_GET['entity']; //...the same as the entity in the GET request here? If not, where is the one in the GET request coming from? |
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 express = require('express'); | |
| var app = express(); | |
| app.get('/', function(req, res) { | |
| res.end('Hello World!'); | |
| }); | |
| app.listen(process.argv[2]); |
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
| function FirstFactorial(num) { | |
| var finalNum = 0; | |
| for(i = num; i < num; i--) [ | |
| finalNum *= i; | |
| } | |
| // code goes here | |
| return finalNum; | |
| } | |
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
| public var enemy.types = { | |
| base: { | |
| base, | |
| strong, | |
| strongest | |
| }, | |
| strong: { | |
| base, | |
| strong, | |
| strongest |
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
| /* | |
| Column CSS | |
| */ | |
| .clear { | |
| clear: both; | |
| } |
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
| function landscape() { | |
| var toLog = ''; | |
| var flat = function(num) { | |
| for(var i = 0; i < num; i++) { | |
| toLog += '_'; | |
| } | |
| } | |
| var mountain = function(num) { |