A colorized version of my recreation of an untitled GIF by PATAKK.
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
| echo 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
| sudo add-apt-repository ppa:webupd8team/java -y | |
| sudo apt-get update | |
| sudo apt-get install -y oracle-java8-installer | |
| sudo apt-get install -y oracle-java8-set-default | |
| sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF | |
| DISTRO=$(lsb_release -is | tr '[:upper:]' '[:lower:]') | |
| CODENAME=$(lsb_release -cs) | |
| echo "deb http://repos.mesosphere.io/${DISTRO} ${CODENAME} main" | sudo tee /etc/apt/sources.list.d/mesosphere.list | |
| sudo apt-get -y update | |
| sudo apt-get install -y mesosphere |
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
| [alias] | |
| s = status | |
| co = checkout | |
| p = push | |
| c = commit | |
| a = add | |
| aa = add -A | |
| ap = add -p |
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
| <html> | |
| <head></head> | |
| <body> | |
| A demo page for fast prototyping. | |
| </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
| icecomm.io|webrtc |
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(!d3.chart) d3.chart = {}; | |
| d3.chart.brush = function() { | |
| var g; | |
| var data; | |
| var width = 600; | |
| var height = 30; | |
| var dispatch = d3.dispatch(chart, "filter"); | |
| function chart(container) { |
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"> | |
| <title>D3 Playground</title> | |
| </head> | |
| <body> | |
| <div id="display"></div> | |
| <script src="//cdn.jsdelivr.net/jquery/2.1.4/jquery.min.js"></script> | |
| <script src="//cdn.jsdelivr.net/d3js/3.5.5/d3.min.js"></script> |
[ Launch: barchart ] e100ecf336266fbb0634 by tjwudi[ Launch: test ] 4653053 by enjalot[ Launch: test ] 4652017 by enjalot[ Launch: test ] 4582399 by enjalot
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
| # Do not push to master | |
| if [ $(git rev-parse --abbrev-ref HEAD) == "master" ] | |
| then | |
| echo 'Hello' | |
| exit 1 | |
| fi |