Reference: https://devcenter.heroku.com/articles/heroku-cli-commands
SQL to MongoDB Mapping Chart¶
In addition to the charts that follow, you might want to consider the Frequently Asked Questions section for a selection of common questions about MongoDB.
Executables¶
The following table presents the MySQL/Oracle executables and the corresponding MongoDB executables.
- Bento - https://bento.io/
- Class Central - https://www.class-central.com
- Code Avengers - https://www.codeavengers.com/
- CodeCademy - https://www.codecademy.com/
- Coursera - https://www.coursera.org/
- egghead - https://egghead.io/
This collection of files exists to serve you as starting point in exploring different sounds and how they're programmed in Sonic Pi.
Copy & Paste them into your Sonic Pi editor and start tweaking the values to change the sound.
The Sonic Pi integrated editor has a lot of keyboard shortcuts. A handy list of all shortcuts is integrated in the tutorial browser or online on github.
This image explains nicely, the four important parameters to controlling played sounds in Sonic Pi.
| For troubleshooting, two things to first try: | |
| run `git config --global gpg.program gpg2`, to make sure git uses gpg2 and not gpg | |
| run `echo "test" | gpg2 --clearsign`, to make sure gpg2 itself is working | |
| If that all looks all right, one next thing to try: | |
| run `brew install pinentry` to ensure you have a good tool installed for passphrase entry | |
| If after that install and you re-try git commit and still get the "failed to sign the data" error: | |
| run `gpgconf --kill gpg-agent` to kill any running agent that might be hung |
This uses terraform's template_file resource to generate a yaml properties file for serverspec to use.
- create the Rakefile in your terraform project root
- create a
specdirectory and putspec_helper.rbin it - create the
templates/properties.tmpl.ymlfile - create the
serverspec.tf terraform apply
Tests will be matched based on roles defined for a given node.
| require 'rails_helper' | |
| RSpec.describe TodosController, :type => :controller do | |
| describe "GET #index" do | |
| #describe "POST #create" do | |
| #describe "GET #show" do | |
| #describe "PATCH #update" do (or PUT #update) | |
| #describe "DELETE #destroy" do | |
| #describe "GET #new" do |