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
<header> | |
<a href="#" id="logo">Logo</a> | |
</header> | |
<section id="hero1" class="hero"> | |
<div class="inner"> | |
<div class="copy"> | |
<h1>Choice mountains bro</h1> | |
<p>Its like im actually there! But sitting at a computer. Wow, the future is intense!</p> | |
</div> |
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
<div id="bg"></div> | |
<div class="contact"> | |
<div class="envelope"> | |
<div class="top"> | |
<div class="outer"><div class="inner"></div></div> | |
</div> | |
<div class="bottom"></div> | |
<div class="left"></div> | |
<div class="right"></div> | |
<div class="cover"></div> |
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
<div id="container"></div> | |
<div id="tag" class="before"> | |
<h1>SPREAD</h1> | |
<p>Click anywhere to have the plane spread</p> | |
<ul> | |
<li><a href="https://github.com/MathiasPaumgarten/spread">Github</a></li> | |
</ul> | |
<span>by <a href="http://mathias-paumgarten.com">Mathias Paumgarten</a></span> | |
</div> |
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
<div class='fluid'> | |
<header class='header clearfix'> | |
<span class='logo'></span> | |
<section class='top-nav last'> | |
<li><a href='#'>Tasks</a></li> | |
<li><a href='#'>Messages<span class='rednum'>74</span></a></li> | |
<li><a href='#'>Logout</a></li> | |
</section> | |
<section class='notification'> |
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 charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0"> | |
<title>Shape Shifter</title> | |
<link rel="stylesheet" href="styles/normalize.css" > | |
<link rel="stylesheet" href="styles/style.css" > | |
</head> |
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 charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0"> | |
<title>Shape Shifter</title> | |
<link rel="stylesheet" href="styles/normalize.css" > | |
<link rel="stylesheet" href="styles/style.css" > | |
</head> |
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
# abap | |
REPORT TEST. | |
WRITE 'I <3 you'. | |
#ada | |
procedure Hello is | |
begin | |
Put_Line ("I <3 you"); | |
end Hello; |
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
<?php | |
function getfromweb($url, $username = null, $password = null) { | |
$opts = array('http' => | |
array( | |
'method' => 'GET', | |
'header' => "Authorization: Basic ".base64_encode("$username:$password")."\r\n") | |
); | |
$context = stream_context_create($opts); | |
$result = file_get_contents($url, false, $context); | |
return $result; |
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
//Works on http://web.whatsapp.com | |
// With little creativity and some coding skills you can do a lot of things using this code to annoy some one. | |
function dispatch(target, eventType, char) { | |
var evt = document.createEvent("TextEvent"); | |
evt.initTextEvent (eventType, true, true, window, char, 0, "en-US"); | |
target.focus(); | |
target.dispatchEvent(evt); | |
} | |
function triggerClick() { | |
var event = new MouseEvent('click', { |
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
// With little creativity and some coding skills you can do a lot of things using this code to annoy some one. | |
// works on the first chat box opened. only works in google chrome! | |
function dispatch(target) { | |
var evt = document.createEvent("Event"); | |
evt.initEvent("keydown",true,true); | |
evt.keyCode = 13; | |
evt.which = 13; | |
target.dispatchEvent(evt); | |
} |
OlderNewer