A Pen by Branchito de Munze on CodePen.
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
git archive --format zip --remote=bitbucket:chord_agency/cpl-api.git master >| t.zip |
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
{ | |
"id": 5, | |
"name": "Sanford-Carter", | |
"locationInfo": "Ullam et cumque ratione vero eaque et dolorem dolor porro at.", | |
"image": null, | |
"description": "<h5>Atque quisquam quia a quisquam cumque soluta quaerat sed dolorem molestias nobis asperiores et aperiam possimus sequi veritatis perspiciatis recusandae beatae omnis cupiditate optio ut provident aut et eos rem repellendus ea velit explicabo iure consequuntur blanditiis sunt sit sit eligendi incidunt laboriosam unde mollitia velit harum occaecati veniam ut necessitatibus odit soluta quibusdam nesciunt delectus consequatur dolore nostrum vero nemo qui reiciendis maxime quos et porro autem reiciendis minus et in recusandae qui quia reprehenderit sunt at nulla iste nihil eius praesentium officia atque qui voluptatem est nostrum et rerum earum molestias aliquid libero corporis quia sit rem aspernatur voluptates amet eum minus repudiandae ullam doloremque.</h5><p>Praesentium recusandae nam ut rerum enim nihil earum ullam modi quia aspernatur eum maiores q |
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
Timesheet: home | |
Day Start End Duration Pay | |
Thu May 04, 2017 12:10:11 - 13:30:22 1:20:11 €6.7 | |
14:24:58 - 16:04:20 1:39:22 €8.3 | |
2:59:33 €15.0 | |
--------------------------------------------------------- | |
Total 2:59:33 €15.0 |
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
dFh0UiE9 |
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" /> | |
<title>Module Pattern Example</title> | |
</head> | |
<body> | |
<script src="module-pattern-example.js"></script> | |
</body> | |
</html> |
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
*, *:before, *:after { | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; } | |
.container { | |
max-width: 1140px; | |
margin-left: 0; | |
margin-right: auto; | |
background-image: linear-gradient(to right, rgba(0, 128, 0, 0.25), rgba(0, 204, 0, 0.25) 88.88889%, transparent 88.88889%); |
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
# Ignore everything | |
/* | |
# Don't ignore directories, so we can recurse into them | |
!*/ | |
/cache/ | |
cli/ | |
includes/ |
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
/* Tooltips */ | |
.tip-wrap{ | |
z-index: 10000; | |
} | |
.tip { | |
float: left; | |
background: #ffc; | |
border: 1px solid #D4D5AA; | |
padding: 5px; | |
max-width: 200px; |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |