This file contains 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
/* This is the main layout component */ | |
class Full extends Component { | |
static propTypes = { | |
viewer: React.PropTypes.object.isRequired | |
}; | |
render() { | |
return ( |
This file contains 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 | |
if (!function_exists('isHMR')) { | |
/** | |
* Get whether HMR is active. | |
* | |
* @return bool | |
*/ | |
function isHMR() | |
{ |
This file contains 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
#Setup the autocomplete | |
fpath=(~/.zsh/completion $fpath) #assuming the _docker-connect file is stored at ~/.zsh/completion/_docker-connect | |
autoload -Uz compinit && compinit -i | |
#The actual functions | |
docker-connect () { | |
docker exec -i -t $1 /bin/bash | |
} | |
docker-ip () { |
This file contains 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 EditableTablePage extends Page { | |
private static $has_many = [ | |
'TableRows' => 'TableRow' | |
]; | |
public function getCMSFields(){ | |
$fields = parent::getCMSFields(); |
This file contains 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 AmpersandCheckboxView = require('ampersand-checkbox-view'); | |
module.exports = AmpersandCheckboxView.extend({ | |
initialize: function(opts){ | |
this._defaultInitialize(opts); | |
this.htmlLabel = !!opts.htmlLabel; | |
}, | |
render: function(){ |
This file contains 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
Requirements::customScript(<<<JS | |
(function($) { | |
$('.icp-auto').entwine({ | |
onmatch: function(){ | |
$('.icp-auto').iconpicker(); | |
this._super(); | |
}, | |
onunmatch: function() { | |
this._super(); | |
} |
This file contains 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
/* $AMPERSAND_VERSION */ | |
var domify = require('domify'); | |
var dom = require('ampersand-dom'); | |
var matches = require('matches-selector'); | |
var View = require('ampersand-view'); | |
//Replaceable with anything with label, message-container, message-text data-hooks and a <select> | |
var defaultTemplate = [ | |
'<label class="select">', | |
'<span data-hook="label"></span>', |
This file contains 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 | |
for($i = 1; $i <= 10; $i++){ | |
for($j = 1; $j <= (11-($i?:1)); $j++){ | |
echo $i.chr(64+$j)."\n"; | |
} | |
echo "--\n\n"; | |
} | |
?> |
This file contains 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
BlogEntry: | |
default_sort: 'Date DESC' | |
summary_fields: | |
- Title | |
- Date | |
field_labels: | |
- Title: 'Entry Title' | |
- Date: 'Date Posted' |
This file contains 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
Director: | |
environment_type: 'dev' | |
Director: | |
rules: | |
'test//$Action/$ID' : 'TestPage_Controller' | |
'OrderModifierForm_Controller//$Action/$ID' : 'OrderModifierForm_Controller' |