Contents:
Create an account on stripe.com and note the secret_key and publication_key. Stripe dashboard can be accessed here.
Contents:
Create an account on stripe.com and note the secret_key and publication_key. Stripe dashboard can be accessed here.
Open the terminal and type git
. If it not installed, you will see a dialog box with a button to install it. Click on the button and git
will be installed in a couple of minutes.
$ git --version
git version 2.15.2 (Apple Git-101.1)
Contents:
External links:
API Url:
A Ruby static code analyzer, based on the community Ruby style guide.
Title | Link |
---|---|
Github | https://github.com/rubocop-hq/rubocop |
Docs | http://rubocop.readthedocs.io/en/latest/ |
Ruby Style Guide | https://github.com/rubocop-hq/ruby-style-guide |
#!/bin/ruby | |
class CavityFinder | |
def initialize(grid) | |
@grid = grid | |
end | |
def cavities | |
cavities = [] | |
i = 1 |
class OutlookCalendarService | |
APP_ID = your_app_id | |
APP_SECRET = your_app_secret | |
LOGIN_API_DOMAIN = 'https://login.microsoftonline.com' | |
AUTHORIZE_PATH = '/common/oauth2/v2.0/authorize' | |
TOKEN_PATH = '/common/oauth2/v2.0/token' | |
CALENDAR_API_DOMAIN = 'https://outlook.office365.com' | |
VERSION_PATH = '/api/v2.0' |