This is a work in progress. ... Markdown ref: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
Excellent ref:
Very complete: Sublime Text 2 Keyboard Shortcuts Cheat Sheet (Win, OS X and Linux):
# My slate file | |
# 10-02-2013 | |
# Basic mappings and bindings for moving screens around | |
# I have set up my right command key to trigger ctrl+alt+shift+cmd | |
# see http://stevelosh.com/blog/2012/10/a-modern-space-cadet/#hyper for details | |
config defaultToCurrentScreen true | |
config windowHintsShowIcons true | |
config windowHintsIgnoreHiddenWindows false | |
config windowHintsSpread true |
<textarea name="my-xml-editor" data-editor="xml" rows="15"></textarea> | |
... | |
<textarea name="my-markdown-editor" data-editor="markdown" rows="15"></textarea> | |
... | |
<script src="//d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js"></script> | |
<script> | |
// Hook up ACE editor to all textareas with data-editor attribute | |
$(function () { |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Merge GitHub's PRs with Git Flow style</title> | |
<link rel="stylesheet" href="css/bootstrap.css"/> | |
<link rel="stylesheet" href="css/bootstrap-responsive.min.css"/> | |
</head> | |
<body> | |
<div class="container"> |
This is a work in progress. ... Markdown ref: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet
Excellent ref:
Very complete: Sublime Text 2 Keyboard Shortcuts Cheat Sheet (Win, OS X and Linux):
<?php | |
namespace Application\Validator; | |
use Zend\Validator\AbstractValidator; | |
class MyCustomValidator extends AbstractValidator | |
{ | |
const CONDITIONAL_EMPTY = 'conditionally_empty'; | |
const SOMETHING_BAD = 'something_bad'; |
[ | |
{ | |
"keys": ["enter"], | |
"command": "run_macro_file", | |
"args": { | |
"file": "res://Packages/Default/Add Line in Braces.sublime-macro" | |
}, | |
"context": | |
[ | |
{ "key": "setting.auto_indent", "operator": "equal", "operand": true }, |
Between us [company name] and you [customer name]
<?php | |
namespace Soap\Controller; | |
use Zend\Mvc\Controller\AbstractActionController; | |
use Zend\Soap\AutoDiscover as SoapWsdlGenerator; | |
use Zend\Soap\Server as SoapServer; | |
class SoapController | |
{ |