Sublime Text 2 – Useful Shortcuts (Mac OS X)
General
⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ | |
-moz-box-sizing: border-box; /* Firefox, other Gecko */ | |
box-sizing: border-box; /* Opera/IE 8+ */ |
.clearfix { | |
*zoom: 1; | |
} | |
.clearfix:before, | |
.clearfix:after { | |
content: ""; | |
display: table; | |
} | |
.clearfix:after { | |
clear: both; |
worker: while true; do cd /app/www/ && /app/bin/php worker.php; sleep 1; done |
#!/bin/bash | |
logger="logger -t bbbx-boot" | |
install() | |
{ | |
apt-get update | |
DEBIAN_FRONTEND=noninteractive apt-get -y \ | |
-o DPkg::Options::=--force-confdef \ | |
-o DPkg::Options::=--force-confold \ | |
install $@ |
<fileset id="src.php.custom" dir="${base.dir}src/application/"> | |
<include name="controllers/**/*.php" /> | |
<include name="core/**/*.php" /> | |
<include name="models/**/*.php" /> | |
<include name="modules/**/*.php" /> | |
<include name="helpers/**/*.php" /> | |
<exclude name="**/libraries/**/*.php" /> | |
</fileset> | |
<target name="fileset-list"> |
## Install ## | |
* nodejs: http://nodejs.org/download/ (how to guide for win if needed: http://dailyjs.com/2012/05/03/windows-and-node-1/) | |
* pear | |
* phpunit: | |
* pear channel-discover pear.phpunit.de | |
* pear install phpunit/PHPUnit | |
* jshint: npm install jshint | |
## Sublime config ## | |
https://github.com/Sitebase/sublime-config |
\Doctrine\DBAL\Types\Type::addType('uuid', 'BuboBox\Doctrine2\DBAL\Types\UuidType'); |
list($field1, $field2, $field3) = array_pad(explode('.', $params, 3), 3, NULL); |
public function unique($value, $params) | |
{ | |
$CI =& get_instance(); | |
list($table, $field, $exclude_field, $exclude_value) = array_pad(explode('.', $params, 4), 4, NULL); | |
$CI->form_validation->set_message('unique', 'The %s that you requested is unavailable.'); | |
$CI->db->select('COUNT(*) AS dupe')->from($table)->where($field, $value)->limit(1); | |
if($exclude_field AND $exclude_value) | |
{ |