- NGINX Plus repo setup and install instructions (https://cs.nginx.com/repo_setup)
- NGINX Open Source install instructions (http://nginx.org/en/docs/install.html)
- NGINX syntax highlighting in vim (https://gist.github.com/kmjones1979/e3580525801254844e3b3f57989cbd38)
- NGINX command line switches (https://nginx.org/en/docs/switches.html)
- NGINX directives index (http://nginx.org/en/docs/dirindex.html)
- NGINX variables index (http://nginx.org/en/docs/varindex.html)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function createStore(reducer) { | |
const store = { | |
state: {}, | |
reducer, | |
dispatch(action) { | |
this.state = this.reducer(action, this.state) | |
} | |
} | |
store.dispatch({}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source "https://rubygems.org" | |
# Fixed order | |
gem "rails" | |
# Alphabetical order | |
gem "activerecord-belongs_to_if" | |
gem "bcrypt" | |
gem "email_validator" | |
gem "execjs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'openid_connect' | |
OpenIDConnect.debug! | |
config = { | |
client_id: 'YOUR-CHANNEL-ID', | |
client_secret: 'YOUR-CHANNEL-SECRET' | |
} | |
client = OpenIDConnect::Client.new( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Note: You must restart bin/webpack-watcher for changes to take effect | |
var path = require('path') | |
var webpack = require('webpack') | |
var merge = require('webpack-merge') | |
var config = require('./shared.js') | |
var devconfig = { | |
devtool: 'sourcemap', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ActiveJobRetryControlable | |
extend ActiveSupport::Concern | |
DEFAULT_RETRY_LIMIT = 5 | |
attr_reader :attempt_number | |
module ClassMethods | |
def retry_limit(retry_limit) | |
@retry_limit = retry_limit |
That is is basically a "fork" of blog article i'm constantly returning to. It seems that the blog is down:
Dave Bass proposed this which I picked up for my implementation (here for an 8-chars token):
日時: | 2016-01-23 |
---|---|
作: | @voluntas |
バージョン: | 0.1.2 |
url: | https://voluntas.github.io/ |
- http://coedo-dev.doorkeeper.jp/events/20181
- 講師: 野島 梨恵氏(東京山王法律事務所)
- 2015-02-10 19:15-20:45
- Co-Edo
- システム開発そのものは素人だけど、裁判にはクライアント/開発側の両方で関わったことがある。
- 裁判官はもっとシステム開発については分かってない。
NewerOlder