Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mergeweb
mergeweb / .sass-lint.yml
Last active January 30, 2018 15:57
Default Sass Lint File
#########################
## Sass Lint File
#########################
# sass-lint -v
# Linter Options
options:
# Don't merge default rules
merge-default-rules: false
# Set the formatter to 'stylish'
formatter: compact
handleNumberInputFocus: function (e){
e.target.addEventListener('wheel', this.handlePreventScrollNumberInput)
},
handleNumberInputBlur: function (e) {
e.target.removeEventListener('wheel', this.handlePreventScrollNumberInput);
},
handlePreventScrollNumberInput: function (e) {
e.preventDefault();
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 0 installs, 14 updates, 0 removals
- Updating mobiledetect/mobiledetectlib (2.8.24 => 2.8.25): Downloading (100%)
- Updating cakephp/chronos (1.1.0 => 1.1.1): Downloading (100%)
- Updating zendframework/zend-diactoros (1.3.10 => 1.4.0): Downloading (100%)
- Updating symfony/yaml (v3.2.6 => v3.2.7): Loading from cache
- Updating symfony/debug (v3.2.6 => v3.2.7): Downloading (100%)
- Updating symfony/console (v3.2.6 => v3.2.7): Downloading (100%)
- Updating symfony/var-dumper (v3.2.6 => v3.2.7): Downloading (100%)
while [ ! "$(sed -n "/done/p" "$LOGFILE")" ];
do
if [ "$LINE" != "$(tail -n 1 "$LOGFILE")" ]; then
LINE=$(tail -n 1 "$LOGFILE")
echo -en $LINE"\n"
fi
done
<table className="table">
{this._getHeadings()}
<tbody ref="tbody">
{this.props.data.map((row, i) => {
return (
<tr key={'row_' + i}>
{this.props.selected_columns.map((column) => {
return (
<td className="no-wrap" key={row['id'] + '+' + column}>
<Field {...row}
{% extends "refeed/account/form.html" %}
{% block form_header %}
{% endblock form_header %}
{% block form_submit_controls %}
<input class="btn" type="submit" value="Save Password"/>
{% endblock form_submit_controls %}
<?php
public function testImplementedEvents()
{
$eventsToTest = [
'Table.Listings.bid_approved' => 'logUserApprovedBid',
'Table.Listings.bids_rejected' => 'logUserRejectBids',
'Table.Listings.bids_reset' => 'logUserResetBids',
'Table.Listings.publish' => 'logUserPublishListing',
<?php
public function testViewAuthenticated()
{
$this->session([
'Auth' => [
'User' => [
'permissions' => [
[
'label' => 'ViewInvoices'
<?php
$fields = [
'title' => 'Your listing needs a title',
'insurer_id' => 'Please specify an Insurer'
];
$rules = [];
foreach($fields as $field => $message){
$rules['location_' . $field] = [
exec("echo '".CAKE_CORE_INCLUDE_PATH."/cake/console/cake subscriber email -auction_id ".$auction_id." -existing ".$existing." -app ".APP."' | at now");