I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
/* Smartphones (portrait and landscape) */ | |
@media only screen | |
and (min-device-width: 320px) | |
and (max-device-width: 480px) { | |
} | |
/* Smartphones (landscape) */ | |
@media only screen | |
and (min-width: 321px) { |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>title</title> | |
</head> | |
<body> | |
<p>body</p> | |
</body> | |
</html> |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
# config/initializers/reimbursement_hook.rb | |
Rails.application.config.to_prepare do | |
Spree::Reimbursement.reimbursement_success_hooks = [ | |
->(reimbursement) { puts reimbursement } | |
] | |
end |
# Postgresql fancy datatypes! | |
* array | |
* hstore (=~ hash) | |
* json | |
* jsonb | |
Philippe Creux - [@pcreux](http://twitter.com/pcreux) |
import React, { PropTypes } from 'react' | |
import { Transition } from 'react-move' | |
const RouteTransition = React.createClass({ | |
propTypes: { | |
pathname: PropTypes.string.isRequired | |
}, | |
render() { | |
return ( |