- Open below directory in Finder with Cmnd + Shift + G
/Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/Resources/
| $(function(){ | |
| $('.menu a').on('click', function(){ | |
| $('html, body').animate({ | |
| scrollTop: $( $.attr(this, 'href') ).offset().top | |
| }, 500); | |
| return false; | |
| }); | |
| }); | |
| // OR |
| $(document).on('turbolinks:before-cache', function() { | |
| $.datepicker.dpDiv.remove() | |
| $(".date-picker input").each(function(index, el) { | |
| $(el).datepicker("destroy") | |
| }); | |
| }) |
| --- | |
| include: | |
| - "**/*.rb" | |
| exclude: | |
| - spec/**/* | |
| - test/**/* | |
| - vendor/**/* | |
| - ".bundle/**/*" | |
| require: | |
| - actioncable |
| #postgresql setup | |
| ssh -i ~/.ssh/id_rsa root@<domain> | |
| dokku postgres:connect <db> | |
| psql=# SHOW config_file; | |
| -> /var/lib/postgresql/data/postgresql.conf | |
| psql=# \q | |
| docker ps |