I hereby claim:
- I am lukearmstrong on github.
- I am lukearmstrong (https://keybase.io/lukearmstrong) on keybase.
- I have a public key whose fingerprint is 6BD3 B05B D75C 91B8 A513 545F DFC4 BF59 8B7B 8EC2
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>SPConnectionFavorites</key> | |
<array> | |
<dict> | |
<key>database</key> | |
<string></string> | |
<key>host</key> |
<!-- must define a width/height for this div in css --> | |
<div id="google-map"></div> | |
<script src="https://maps.googleapis.com/maps/api/js?sensor=true"></script> | |
<script type="text/javascript"> | |
function initialize() | |
{ | |
var latLng = new google.maps.LatLng(52.29538, -1.54200); | |
var mapOptions = { |
server { | |
listen 80; | |
server_name .example.co.uk.dev; | |
access_log /usr/local/var/log/nginx/example.co.uk-access.log; | |
error_log /usr/local/var/log/nginx/example.co.uk-error.log error; | |
root /var/www/example.co.uk/public; | |
index index.php index.html; |
<?php | |
/* | |
$original = '+44 (0)1234 567 890'; | |
$original = '0044 01234 567 890'; | |
$original = '01234 567 890'; | |
$original = '44 1234 567 890'; | |
Result should always be: | |
'+441234567890 |
$company = \Company::find($companyId) | |
->with('users') | |
->first(); | |
$users = $company->users()->paginate(10); |
# auto completion | |
if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
. $(brew --prefix)/etc/bash_completion | |
fi | |
# coloured terminal | |
export CLICOLOR=1 | |
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx | |
# list all files |
|- public/ | |
| |- js/ | |
| | |- app/ | |
| | | |- interactions.js | |
| | | |- main.js | |
| | | |- students.js | |
| | |- lib/ | |
| | | |- console.log.js | |
| | | |- jquery-1.9.1.js | |
| | | |- no-js.js |
<div id="pagination"> | |
<ul> | |
{% if paginate.previous %} | |
<li>{{ paginate.previous.title | link_to: paginate.previous.url }}</li> | |
{% endif %} | |
{% for i in (1..paginate.pages) %} | |
{% if paginate.current_page == i %} | |
<li>{{ i }}</li> |
* 9d0cdd7 (origin/v1.0-bugs) Merge pull request #84 from propcom/bugfix-mernu | |
|\ | |
| * 900be12 (HEAD, origin/bugfix-mernu, bugfix-mernu) fixed menu merning | |
|/ | |
* 7108920 bugfix-public-check merged into bugs; resolves #83 |