View cryptokitties.sol
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
pragma solidity ^0.4.11; | |
/** | |
* @title Ownable | |
* @dev The Ownable contract has an owner address, and provides basic authorization control | |
* functions, this simplifies the implementation of "user permissions". | |
*/ | |
contract Ownable { | |
address public owner; |
View holdex-preloader.html
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
<div class="preloader"> | |
<div class="right-tnx"> | |
<div class="flip"> | |
<div class="tnx"> | |
<div class="el"></div> | |
<div> | |
<div class="el"></div> | |
</div> | |
</div> | |
</div> |
View trello-product-owner.html
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> | |
<head> | |
<title>Product manager dashboard</title> | |
<script | |
src="https://code.jquery.com/jquery-3.3.1.min.js" | |
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" | |
crossorigin="anonymous"></script> | |
<script src="https://api.trello.com/1/client.js?key=5971ce0cdd8bc45946980a62ed81ae8c"></script> | |
</head> |
View load_test_util.sh
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
#!/bin/bash | |
COUNTER=0 | |
while [ $COUNTER -lt 15 ]; do | |
curl -X GET https://api.dev.bump.fm/v1.0/playlists -H 'user-agent: mxbl' -I & | |
let COUNTER=COUNTER+1 | |
done | |
View package.json
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
{ | |
"name": "gif_renamer", | |
"version": "0.1.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "", | |
"license": "ISC", |
View console_print.js
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
(function() { | |
console.log(" ▀▄ ▄▀"), | |
console.log(" ▄█▀███▀█▄"), | |
console.log(" █▀███████▀█"), | |
console.log(" █ █▀▀▀▀▀█ █"), | |
console.log(" ▀▀ ▀▀"), | |
console.log("┌───────────────────────────────────────────────────────────────────┐"), | |
console.log("│ Found a bug? Please report to hello@example.com"), | |
console.log("├───────────────────────────────────────────────────────────────────┴──────────────────┐"), | |
console.log("│ We're always looking for excellent developers! Check out https://example.com/careers │"), |