Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
- ⌘ : Command key
- ⌃ : Control key
- ⌫ : Delete key
- ← : Left arrow key
- → : Right arrow key
- ↑ : Up arrow key
| # This solution was based on https://gist.github.com/GlenCrawford/16163abab7852c1bd550547f29971c18 | |
| Rails.configuration.to_prepare do | |
| ActiveRecord::SchemaDumper.ignore_tables = %w[ | |
| salesforce._hcmeta | |
| salesforce._sf_event_log | |
| salesforce._trigger_log | |
| salesforce._trigger_log_archive | |
| ] | |
| end |
| # Overrides Rails file activerecord/lib/active_record/schema_dumper.rb to | |
| # include all schema information in the db/schema.rb file, for example, in the | |
| # create_table statements. This allows for a working development database | |
| # to be built from a schema.rb file generated by rake db:schema:dump. | |
| # | |
| # This is essentially a rebuild of the "schema_plus_multischema" gem (which is | |
| # unfortunately only compatible with Rails ~> 4.2). | |
| # | |
| # Tested with Rails 6.0. |
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
| # | |
| # Name: nginx-tls.conf | |
| # Auth: Gavin Lloyd <[email protected]> | |
| # Desc: Nginx SSL/TLS configuration for "A+" Qualys SSL Labs rating | |
| # | |
| # Enables HTTP/2, PFS, HSTS and OCSP stapling. Configuration options not related | |
| # to SSL/TLS are not included here. | |
| # | |
| # Additional tips: | |
| # |
| def my_task | |
| while(true) do | |
| begin | |
| database_access_here | |
| rescue Exception => ex | |
| begin | |
| ActiveRecord::Base.connection.reconnect! | |
| rescue | |
| sleep 10 | |
| retry # will retry the reconnect |