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.configure("2") do |config| | |
| #provider blocks | |
| config.vm.provider :virtualbox do |config, override| | |
| override.vm.box = "opscode-ubuntu-12.04" | |
| override.vm.box_url = "https://opscode-vm.s3.amazonaws.com/vagrant/opscode_ubuntu-12.04_provisionerless.box" | |
| config.vm.network :private_network, ip: "192.168.56.10" | |
| config.customize ["modifyvm", :id, "--memory", 512] | |
| end |
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
| java -jar /usr/local/opt/selenium-server-standalone/selenium-server-standalone-2.37.0.jar -p 4444 |
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
| renderList: function (model /*, res, options*/) { | |
| // do something with model but not res or options | |
| } |
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
| With Santander UK | |
| (GIR( ?)0AA)|(^(?![QVX])[A-Z]((?![IJZ])[A-Z]?)[0-9][0-9]?[A-HJKSTUW]?)( ?)[0-9](?![CIKMOV])[A-Z]{2}$ | |
| Without Santander UK | |
| (^(?![QVX])[A-Z]((?![IJZ])[A-Z]?)[0-9][0-9]?[A-HJKSTUW]?)( ?)[0-9](?![CIKMOV])[A-Z]{2}$ |
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
| new Image().src = 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
| var x, // Give me a value for it to be twoo | |
| method = function (callback) { | |
| callback(); | |
| }; | |
| var twoo = function () { | |
| console.log('twoo'); | |
| }; | |
| var fawlse = function () { |
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
| function args() { | |
| if (!arguments['0']['2']) { | |
| arguments['0']['2'] = arguments['0']['1']; | |
| } | |
| return arguments; | |
| } | |
| function wrap() { |
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 | |
| head | |
| link(rel='stylesheet', href='css/screen.css') | |
| html | |
| body | |
| article | |
| header | |
| h1 My Schema | |
| span.container { | |
| each property, name in properties |
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
| [ | |
| { "keys": ["super+shift+v"], "command": "paste" }, | |
| { "keys": ["super+v"], "command": "paste_and_indent" } | |
| { "keys": ["super+shift+r"], "command": "refresh_folder_list" } | |
| ] |
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
| { | |
| "show_full_path": true, | |
| "rulers": [80], | |
| "ensure_newline_at_eof_on_save": true, | |
| "translate_tabs_to_spaces": true, | |
| "draw_minimap_border": true, | |
| "draw_white_space": "all", | |
| "scroll_past_end": true, | |
| "tab_size": 2, | |
| "trim_trailing_white_space_on_save": true |