A fork of the popular open-source contract for web designers and developers by Stuff & Nonsense, reworded for developers
- Originally published: 05/02/2014
- Original post
Between us [company name] and you [customer name]
Between us [company name] and you [customer name]
[ | |
{ | |
"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 }, |
<?php | |
namespace Application\Validator; | |
use Zend\Validator\AbstractValidator; | |
class MyCustomValidator extends AbstractValidator | |
{ | |
const CONDITIONAL_EMPTY = 'conditionally_empty'; | |
const SOMETHING_BAD = 'something_bad'; |
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):
<!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"> |
<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 () { |
# 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 |
#!/bin/bash | |
# | |
# The reason of creating this script is that Endpoint Security VPN installs it's own application firewall kext cpfw.kext | |
# which prevents for example PPTP connections from this computer, which is not appropriate if you need subj connection just | |
# from time to time | |
# | |
# Usage: ./checkpoint.sh | |
# | |
# The script checks if Enpoint Security VPN is running. If it is, then it shuts it down, if it is not, it fires it up. | |
# Or, make an Automator action and paste the script. |