- Postico client for mac
- pgcli - Postgres CLI with autocompletion and syntax highlighting
- pghero - Server and query performance dashboard
- PEV - Query planning / Explain analyze visualisation
- PostgreSQL's explain analyze made readable
<!doctype html> | |
<html> | |
<body> | |
<header role="banner"> | |
<a href="/" rel="home">My company</a> | |
<nav role="navigation"> | |
<a href="/about">About</a> | |
<a href="/contact">Contact</a> | |
</nav> | |
</header> |
define( ['jquery'], function ( $ ) { | |
var token = $( 'meta[name="csrf-token"]' ).attr( 'content' ); | |
$.ajaxSetup( { | |
beforeSend: function ( xhr ) { | |
xhr.setRequestHeader( 'X-CSRF-Token', token ); | |
} | |
}); | |
return token; |
You'll need to add a whole slew of hosts for intercom if you've got CSP in place (which you should).
Heres what you'll need to add:
connect-src: https://api-ping.intercom.io https://nexus-websocket-a.intercom.io https://nexus-websocket-b.intercom.io wss://nexus-websocket-a.intercom.io wss://nexus-websocket-b.intercom.io https://api-iam.intercom.io
script-src: https://widget.intercom.io https://js.intercomcdn.com
image-src: https://js.intercomcdn.com
{ | |
"directory": "vendor/assets/components" | |
} |
// Add Modernizr test for font-smoothing | |
// A designer may wish to darken the colour of a given font when antialiasing is applied | |
// Examples of font-smoothing in action: http://bit.ly/bLeUg1 | |
/* | |
Usage: | |
Add to your page | |
Use html.fontsmoothing h1 { color: xxx; } to make your colours darker | |
*/ |
$public_path: "./"; | |
@mixin vector-bg-with-fallback($name) { | |
background-image: url('#{$public_path}images/#{$name}.png'); | |
background-image: none, url('#{$public_path}images/#{$name}.svg'); | |
} |
I hereby claim:
To claim this, I am signing this object:
bonsai | |
rdiscount |
<link rel="stylesheet" href="/stylesheets/screen.css"> | |
<link rel="stylesheet" href="/stylesheets/narrow.css" media="screen and (max-width: 44em)"> | |
<link rel="stylesheet" href="/stylesheets/medium.css" media="screen and (min-width: 44em) and (max-width: 65em)"> | |
<link rel="stylesheet" href="/stylesheets/wide.css" media="screen and (min-width: 44em)"> | |
<!--[if (gte IE 6)&(lte IE 8)]> | |
<link rel="stylesheet" href="/stylesheets/wide.css"> | |
<script src="/javascripts/nwmatcher.min.js"></script> | |
<script src="/javascripts/selectivizr.min.js"></script> | |
<![endif]--> |