Repo: https://github.com/MoonHi-ghway/schema-design-workshop
- 5 scalar types: Int, Float, Boolean, String, ID
- Fields are nullable by default
- Convention is for enum types to be ALL CAPS
- Input type: wrapper around a set of fields passed into a mutation
Repo: https://github.com/MoonHi-ghway/schema-design-workshop
Need help? Watch this RubyConf video
Each CircleCI container now prints out all of the spec files that it ran along with the seed number. If you see a spec that you think might be failing due to an order dependency, you can run rspec <all spec files listed for that container pasted here> --bisect --seed <seed copied from that container pasted here> locally to get the minimum command to reproduce the failure.
If you run with SSH on CircleCI and need to install VIM on the box to be able to edit specs, follow the 2nd solution on this StackOverflow post to get it installed. You will likely need to use sudo in front of each of the commands.
Some handy git aliases for the command line. The $argv syntax is from fish, but for bash functions you can use $1.
Lists the most recent 5 stashes. Shows commit sha/message, who created the stash, and file stats.
git stash list --stat -5 --pretty=format:'%C(yellow)%gd: %C(green)%s %C(blue)[%cn]'This is going to take awhile, so as you keep this branch open, make sure you merge in master every day!!!! There will be merge conflicts, and people will keep bringing in new things that cause deprecation warnings, but you just have to fix them.
Official Rails documentation: https://edgeguides.rubyonrails.org/upgrading_ruby_on_rails.html#upgrading-from-rails-4-2-to-rails-5-0
Official Rails 5.0 Changelog: https://guides.rubyonrails.org/5_0_release_notes.html
Sum0Labs!So you've got the party rabbit for the day, huh? It's time to party!
terminal-notifier installedGITHUB_API_TOKEN set in your .bash_profile
config.fish, you MUST copy it into your .bash_profile.review requested label applied to themreview requested stateget_review_requested_pull_requests
| module Gospotcheck | |
| module Sso | |
| class IdpBroker | |
| def initialize(username, password, request_id) | |
| @username = username | |
| @password = password | |
| @request_id = request_id | |
| end | |
| def sso_user? |
| LOOKS LIKE: 04:01:13PM photo-viewer on master ↑2✓ | |
| function fish_prompt --description 'Write out the prompt' | |
| set -l last_status $status | |
| set_color e22265 | |
| printf (date "+%I:%M:%S%p ") | |
| set_color normal |