- Throttle failed logins (password, token, email link, ...)
- Notify the old address on email change
- Check and Automate - https://gist.github.com/halilim/7888069
- Change admin path
-
use admin db.createUser( { user: "admin",
pwd: "***",
This file contains hidden or 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
| IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING. | |
| Do not copy, install, or use the "Materials" provided under this license agreement ("Agreement"), until you have carefully read the following terms and conditions. | |
| By copying, installing, or otherwise using the Materials, you agree to be bound by the terms of this Agreement. If you do not agree to the terms of this Agreement, do not copy, install, or use the Materials. | |
| End User License Agreement for the Intel(R) Power Gadget | |
| 1. LICENSE DEFINITIONS: | |
| A. "Materials" are defined as the software in source and object code formats, documentation, license key codes and other materials, including any updates and upgrade thereto, that are provided to you under this Agreement. |
Concatenate the files in the following order:
Root CA Certificate - AddTrustExternalCARoot.crt
Intermediate CA Certificate - COMODORSAAddTrustCA.crt
Intermediate CA Certificate - COMODORSADomainValidationSecureServerCA.crt
Your EssentialSSL Certificate - www_example_com.crt *
(*) Exclude the real certificate "www_example_com.crt" if CA bundle is entered separately.
This file contains hidden or 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
| class CreateTables < ActiveRecord::Migration | |
| def change | |
| create_table :products do |t| | |
| # ... | |
| end | |
| create_table :orders do |t| | |
| # ... | |
| end | |
| create_table :order_items do |t| | |
| t.references :order, index: true, foreign_key: true |
-
2015-11-10: Abandoned AWS EB.
Got
Create environment operation is complete, but with errors. For more information, see troubleshooting documentation..Tried to set up CloudWatch Logs but got
The following resource(s) failed to create: [AWSEBCWLHttp4xxMetricFilter, AWSEBCWLHttp5xxMetricFilter].
This file contains hidden or 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 'benchmark/ips' | |
| def digits_s(n) | |
| n.to_s.chars.map(&:to_i) | |
| end | |
| # http://stackoverflow.com/a/12909952/372654 | |
| def digits_divmod(n) | |
| n = n.abs | |
| [].tap do |result| |