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 robotClass | |
| var robotClass = function(){ | |
| }; | |
| robotClass.prototype.onIdle = function(ev) { | |
| var robot = ev.robot; | |
| robot.ahead(100); | |
| robot.rotateCannon(360); |
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
| .area { | |
| background: crimson; | |
| width: 200px; | |
| height: 200px; | |
| position: relative; | |
| } | |
| .a { | |
| position: absolute; |
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 { | |
| width: 100px; | |
| height: 40px; | |
| background: crimson; | |
| margin: 100px; | |
| /*border: 10px solid navy;*/ | |
| border-width: 10px; | |
| border-style: solid; | |
| border-image: linear-gradient(top, #dcdcdc 0%,#dadada 16%,#c9c9c9 76%,#b6b6b6 100%); |
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 { | |
| width: 100px; | |
| height: 40px; | |
| background: crimson; | |
| margin: 100px; | |
| /*border: 10px solid navy;*/ | |
| border-width: 10px; | |
| border-style: solid; | |
| -webkit-border-image: -webkit-linear-gradient(top, #dcdcdc 0%,#dadada 16%,#c9c9c9 76%,#b6b6b6 100%); |
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
| <canvas width="800" height="600"></canvas> |
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
| SELECT uid, first_name, last_name, username, pic_square FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) AND is_app_user = 1 ORDER BY mutual_friend_count DESC LIMIT 10 |
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
| diff --git a/vows/filters_vows.py b/vows/filters_vows.py | |
| index 6269b27..96c45b5 100644 | |
| --- a/vows/filters_vows.py | |
| +++ b/vows/filters_vows.py | |
| @@ -46,7 +46,7 @@ FILTER_PARAMS_DATA = [ | |
| { | |
| 'type': BaseFilter.String, | |
| 'values': [ | |
| - ('a', 'a'), ('bbbb', 'bbbb'), (' cccc ', 'cccc'), (' cc:cc ', 'cc:cc') | |
| + ('a', 'a'), ('bbbb', 'bbbb'), (' cccc ', 'cccc'), (' cc:cc ', 'cc:cc'), ('"a,b"', 'a,b') |
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
| /** | |
| * Fancy arrow | |
| */ | |
| body { | |
| background-color: #ebeced; | |
| } | |
| .arrow { | |
| border: 96px solid transparent; | |
| border-bottom: 0; | |
| border-top: 37px solid #d7d7d8; |
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
| Vagrant::Config.run do |config| | |
| config.vm.define :frontend do |inner_config| | |
| inner_config.vm.box = "base" | |
| inner_config.vm.forward_port("http", 80, 8080) | |
| inner_config.vm.network("33.33.33.33") | |
| end | |
| config.vm.define :backend do |inner_config| | |
| inner_config.vm.box = "base" |
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> | |
| <!-- | |
| Just drop this file into your extension directory. | |
| --> | |
| <html> | |
| <head> | |
| <title>Locales Data</title> | |
| <script> | |
| var LocaleTable = function() { |