For Homebrew v2.6.x and below:
brew cask install ngrokFor Homebrew v2.7.x and above:
| /* | |
| ##Device = Desktops | |
| ##Screen = 1281px to higher resolution desktops | |
| */ | |
| @media (min-width: 1281px) { | |
| /* CSS */ | |
| <html> | |
| <head> | |
| <title>the cryptogram</title> | |
| <style> | |
| .cnt_letter_item{ | |
| display: inline-block; | |
| border: 1px dotted black; | |
| padding: 3px; | |
| text-align: center; |
| <html> | |
| <head> | |
| <title>mustache says hi!</title> | |
| </head> | |
| <body> | |
| <table id="students"> | |
| <thead> | |
| <tr> | |
| <th>ID</th> |
| <?php defined('SYSPATH') OR die('No direct access allowed.'); | |
| /** | |
| * Provides Kohana-specific helper functions. This is where the magic happens! | |
| * | |
| * $Id: Kohana.php 4372 2009-05-28 17:00:34Z ixmatus $ | |
| * | |
| * @package Core | |
| * @author Kohana Team | |
| * @copyright (c) 2007-2008 Kohana Team | |
| * @license http://kohanaphp.com/license.html |
Table of Contents
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
| variable "aws_region" { | |
| default = "eu-west-1" | |
| } | |
| variable "domain" { | |
| default = "my_domain" | |
| } | |
| provider "aws" { | |
| region = "${var.aws_region}" |
| //@flow | |
| import { createStore, applyMiddleware } from 'redux'; | |
| import storage from 'redux-persist/lib/storage' | |
| import { composeWithDevTools } from 'redux-devtools-extension'; | |
| import { persistStore, persistReducer } from 'redux-persist'; | |
| import thunk from 'redux-thunk'; | |
| import reducer from 'reducers'; | |
| import { createOffline } from '@redux-offline/redux-offline'; | |
| import offlineConfig from '@redux-offline/redux-offline/lib/defaults/index'; |
| import axios from 'axios' | |
| const MAX_REQUESTS_COUNT = 5 | |
| const INTERVAL_MS = 10 | |
| let PENDING_REQUESTS = 0 | |
| // create new axios instance | |
| const api = axios.create({}) | |
| /** |