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
| Bringing machine 'blimp' up with 'virtualbox' provider... | |
| ==> blimp: Importing base box 'ubuntu-12.04-amd64-daily'... | |
| ==> blimp: Matching MAC address for NAT networking... | |
| ==> blimp: Setting the name of the VM: blimp_blimp_1427301836223_13691 | |
| ==> blimp: Clearing any previously set forwarded ports... | |
| ==> blimp: Clearing any previously set network interfaces... | |
| ==> blimp: Preparing network interfaces based on configuration... | |
| blimp: Adapter 1: nat | |
| blimp: Adapter 2: hostonly | |
| ==> blimp: Forwarding ports... |
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
| .image_wrapper { | |
| width: 119px; | |
| margin: 0 auto; | |
| overflow: hidden; | |
| height: 118px; | |
| display: inline-block; | |
| img { | |
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
| $( '.tree li' ).each( function() { | |
| if( $( this ).children( 'ul' ).length > 0 ) { | |
| $( this ).addClass( 'parent' ); | |
| } | |
| }); | |
| $( '.tree li.parent > a' ).click( function( ) { | |
| $( this ).parent().toggleClass( 'active' ); | |
| $( this ).parent().children( 'ul' ).slideToggle( 'fast' ); | |
| }); |
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
| <?php | |
| class Automobile | |
| { | |
| private $vehicle_make; | |
| private $vehicle_model; | |
| public function __construct($make, $model) | |
| { | |
| $this->vehicle_make = $make; | |
| $this->vehicle_model = $model; |
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 Post(options) { | |
| this.title = options.title || "A New Post"; | |
| this.author = options.author || "Anonymous"; | |
| this.blob = options.blob || "This post is emply..."; | |
| } | |
| var MyApp = {} | |
| post_options = { | |
| title: "A Beautiful Day", |
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 CarDoor(options) { | |
| this.color = options.color || "red"; | |
| this.side = options.side || "right"; | |
| this.hasPowerWindows = options.hasPowerWindows || true; | |
| } | |
| function CarSeat(options) { | |
| this.color = options.color || "gray"; | |
| this.material = options.material || "leather"; | |
| this.isReclinable = options.isReclinable || true; |
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 div_element = document.querySelector("div"); |
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 element = document.querySelector(".class_name"); |
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 anchor_link = document.querySelector("a"); | |
| anchor_link.href; |
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 do_something() { | |
| let foo; | |
| let foo; // This works fine. | |
| } |