Skip to content

Instantly share code, notes, and snippets.

View martinbean's full-sized avatar

Martin Bean martinbean

View GitHub Profile
@martinbean
martinbean / gist:1037465
Created June 21, 2011 08:35
CSS pseudo selected styles
body.home #navigation li.home a,
body.events #navigation li.events a,
body.news #navigation li.news a,
body.wrestlers #navigation li.wrestlers a,
body.shop #navigation li.shop a {
background: #ff9900;
}
<?php
$file_to_upload = array(
'ticket_attachment[attachment]' => '@' . $_SERVER['DOCUMENT_ROOT'] . '/nmsworkbacklog/crown.jpg',
'ticket_attachment[description]' => 'test description'
);
$headers = array();
$headers[] = 'Authorization: Basic ' . base64_encode('nms/martinbean:' . $this->registry->get('authenticate')->getApiKey());
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://api3.codebasehq.com/api-test-project/tickets/146/attachments');
curl_setopt($ch, CURLOPT_POST, true);
@martinbean
martinbean / xml.php
Created November 16, 2012 21:07
Building an XML file with DOMDocument
<?php
$products = array(
array(
'title' => 'Product #1',
'description' => 'Lorem ipsum'
),
array(
'title' => 'Product #2',
'description' => 'Lorem ipsum'
@martinbean
martinbean / composer.json
Created November 23, 2012 22:38
Code samples for “Uploading files with Amazon’s new PHP SDK” blog post.
{
"require": {
"aws/aws-php-sdk": "dev-master"
}
}
@martinbean
martinbean / gist:4162031
Created November 28, 2012 15:36
Martin’s fantastic naming convention document

Martin’s fantastic naming convention document

Controllers: plural

  • For example: UsersControllers

Models: singular

  • A model representes one item, i.e. a record from a database. So: User or UserModel.
@martinbean
martinbean / NewsArticle.php
Last active December 10, 2015 07:28
Fetching records from one table based on existence of records in a HABTM relation.
<?php
class NewsArticle extends AppModel {
public $name = 'NewsArticle';
public $hasAndBelongsToMany = array(
'Image' => array(
'joinTable' => 'news_articles_images'
)
);
@martinbean
martinbean / filtering.php
Last active December 28, 2015 05:29
Very crude way of building up raw SQL clauses for filtering and sorting.
<?php
// whitelist columns to filter by
$filterable = array(
'colour',
'size',
'price'
);
// build up string for WHERE clause
$where = array();
@martinbean
martinbean / RepositoryMakeCommand.php
Last active January 19, 2016 14:58
Laravel repository make command.
<?php
namespace App\Console\Commands;
use Illuminate\Console\GeneratorCommand;
class RepositoryMakeCommand extends GeneratorCommand
{
/**
* The console command name.
@martinbean
martinbean / after.sh
Created January 22, 2016 11:29
Per-project Homestead after.sh and aliases
#!/bin/sh
cd 'project-dir'
composer install
php artisan migrate
php artisan db:seed
npm install --loglevel error
export DISABLE_NOTIFIER=true
gulp
@martinbean
martinbean / replace-dots.js
Created June 1, 2016 14:37
Converts dotted notation (`some.dotted.string`) to HTML format (i.e. `some[dotted][string]`).
key.replace(/\.(\w+)/g, '[$1]');