- High level overview https://yogthos.github.io/ClojureDistilled.html
- Interactive exercises http://clojurescriptkoans.com/
- Community-powered Clojure courses https://clojurecademy.com/
- Interactive book https://www.maria.cloud/
- Interactive workbook http://viewer.gorilla-repl.org/view.html?source=github&user=lspector&repo=clojinc&path=worksheet.clj
- Clojure workshop https://github.com/friemen/cugb/blob/master/kickstart.md
- Clojure style guide https://github.com/bbatsov/clojure-style-guide
- core functions explained visually http://blog.josephwilk.net/clojure/functions-explained-through-patterns.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# only dump data, no table structure | |
echo "Begin" | |
mysqldump --skip-opt --no-create-db --no-create-info --compact --quick --extended-insert --insert-ignore -h xx -u xx --password=xx database_name table_name > /mnt/dump.sql | |
echo "Done" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2020-03-11T06:05:09.880Z 29809 TID-aqrw0 WARN: Thread TID-aqrw0 | |
2020-03-11T06:05:09.880Z 29809 TID-aqrw0 WARN: /srv/www/udesk_proj_sidekiq_common/shared/bundle/ruby/2.6.0/gems/sidekiq-3.3.3/lib/sidekiq/cli.rb:138:in `backtrace' | |
/srv/www/udesk_proj_sidekiq_common/shared/bundle/ruby/2.6.0/gems/sidekiq-3.3.3/lib/sidekiq/cli.rb:138:in `block in handle_signal' | |
/srv/www/udesk_proj_sidekiq_common/shared/bundle/ruby/2.6.0/gems/sidekiq-3.3.3/lib/sidekiq/cli.rb:135:in `each' | |
/srv/www/udesk_proj_sidekiq_common/shared/bundle/ruby/2.6.0/gems/sidekiq-3.3.3/lib/sidekiq/cli.rb:135:in `handle_signal' | |
/srv/www/udesk_proj_sidekiq_common/shared/bundle/ruby/2.6.0/gems/sidekiq-3.3.3/lib/sidekiq/cli.rb:88:in `run' | |
/srv/www/udesk_proj_sidekiq_common/shared/bundle/ruby/2.6.0/gems/sidekiq-3.3.3/bin/sidekiq:8:in `<top (required)>' | |
/srv/www/udesk_proj_sidekiq_common/shared/bundle/ruby/2.6.0/bin/sidekiq:23:in `load' | |
/srv/www/udesk_proj_sidekiq_common/shared/bundle/ruby/2.6.0/bin/sidekiq:23:in `<top (required)>' | |
/home/webuser/.rbenv/vers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
gem 'rails', '4.2.5.1' | |
# assets management | |
gem 'sass-rails', '~> 5.0' | |
gem 'coffee-rails', '~. 4.1.0' | |
gem 'uglifier', '>= 1.3.0' | |
gem 'bootstrap-sass' | |
gem 'font-awesome-sass' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is the top-most .editorconfig file | |
root = true | |
# Unix-style newlines | |
[*] | |
end_of_line = lf | |
# append a new line at the bottom of each file | |
insert_final_newline = true |