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
| ### Keybase proof | |
| I hereby claim: | |
| * I am cjmarkham on github. | |
| * I am cjmarkham (https://keybase.io/cjmarkham) on keybase. | |
| * I have a public key whose fingerprint is 4A55 A573 AA03 E146 17AE E0A4 EA74 6273 7C17 9D21 | |
| To claim this, I am signing this object: |
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 weekdays = [ | |
| 'Sunday', | |
| 'Monday', | |
| 'Tuesday', | |
| 'Wednesday', | |
| 'Thursday', | |
| 'Friday', | |
| 'Saturday' | |
| ]; |
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
| ========== OUTPUTING STACK TRACE ================== | |
| (0x00727086) c:\buildagent\work\d3d49558e4d408f4\runtime\graphics\s3decompression.cpp (1121 + 0x1b): STORE_RGB + 0xd6 | |
| (0x00727926) c:\buildagent\work\d3d49558e4d408f4\runtime\graphics\s3decompression.cpp (1339 + 0x21): decompressBlockDiffFlip + 0x896 | |
| (0x00727D9C) c:\buildagent\work\d3d49558e4d408f4\runtime\graphics\s3decompression.cpp (1456 + 0x5c): DecompressETC_RGB4 + 0x7c | |
| (0x007293DE) c:\buildagent\work\d3d49558e4d408f4\runtime\graphics\s3decompression.cpp (1669 + 0x0): DecompressNativeTextureFormat + 0x13e | |
| (0x00729663) c:\buildagent\work\d3d49558e4d408f4\runtime\graphics\s3decompression.cpp (1591 + 0x1e): DecompressNativeTextureFormatWithMipLevel + 0x53 | |
| (0x0106031B) c:\buildagent\work\d3d49558e4d408f4\runtime\gfxdevice\d3d11\texturesd3d11.cpp (293 + 0x28): TexturesD3D11::Upload2DData + 0x2bb | |
| (0x01061554) c:\buildagent\work\d3d49558e4d408f4\runtime\gfxdevice\d3d11\texturesd3d11.cpp (497 + 0x2f): TexturesD3D11::UploadTexture2D + 0x814 | |
| (0x01042AE9) c:\buil |
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
| <a href="" target="_blank" id="foo">Click Me</a> | |
| <script> | |
| document.addEventListener('DOMContentLoaded', function () { | |
| document.getElementById('foo').addEventListener('click', function () { | |
| window.location.href = 'http://google.com'; | |
| }); | |
| }); | |
| </script> |
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
| cjmarkham@cjmarkham-MS-7728:~/git/fog/snake-charmer$ ssh deploy cap alpha deploy | |
| * executing `alpha' | |
| * executing `deploy' | |
| * executing `deploy:update' | |
| ** transaction: start | |
| * executing `deploy:update_code' | |
| updating the cached checkout on all servers | |
| executing locally: "git ls-remote git@bitbucket.org:fog/snake-charmer.git develop" | |
| * executing "if [ -d /var/www/vhosts/alpha.freeonlinegames.com/shared/cached-copy ]; then cd /var/www/vhosts/alpha.freeonlinegames.com/shared/cached-copy && git fetch -q origin && git fetch --tags -q origin && git reset -q --hard a842700e27ef8b0e733f6b9b70a9316c9f93220c && git submodule -q init && git submodule -q sync && export GIT_RECURSIVE=$([ ! \"`git --version`\" \\< \"git version 1.6.5\" ] && echo --recursive) && git submodule -q update --init $GIT_RECURSIVE && git clean -q -d -x -f; else git clone -q git@bitbucket.org:fog/snake-charmer.git /var/www/vhosts/alpha.freeonlinegames.com/shared/cached-copy && cd /var/www/vhosts/alpha.freeonlinegames.com/shared/cach |
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 robots = new Array(); | |
| //FightCode can only understand your robot | |
| //if its class is called Robot | |
| var Robot = function(robot) { | |
| }; | |
| Robot.prototype.start = function( ev ){ |
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
| //FightCode can only understand your robot | |
| //if its class is called Robot | |
| var Robot = function(robot) { | |
| }; | |
| Robot.prototype.onIdle = function(ev) { | |
| var robot = ev.robot; | |
| robot.ahead(100); |