Atomic Habits Reading Planning
- Introduction - 10 pages
- Part 1 - The Fundamentals - 45 pages - 6/17
- Ch 1 - 16 pages
- Ch 2 - 14 pages
- Ch 3 - 15 pages
- Part 2 - The 1st Law - 41 pages - 7/8
- Ch 4 - 10 pages
- Ch 5 - 12 pages
- Ch 6 - 10 pages
| <nav | |
| class="elementor-pagination" | |
| role="navigation" | |
| aria-label="Pagination" | |
| > | |
| <span class="page-numbers prev">« Previous</span> | |
| <span aria-current="page" class="page-numbers current" | |
| ><span class="elementor-screen-only">Page</span>1</span | |
| > | |
| <a |
Atomic Habits Reading Planning
| required(:hes_sfr_att_townhome_position_post).maybe(:str?).when(:not_left_or_middle?).when(:not_front_represents_all_types?) do | |
| value(:hes_right_side_windows_area_post).filled? | |
| end | |
| required(:hes_sfr_att_townhome_position_post).maybe(:str?).when(:not_left_or_middle?) do | |
| value(:hes_right_side_windows_frame_post).valid_window_frame? | |
| end | |
| required(:hes_sfr_att_townhome_position_post).maybe(:str?).when(:not_left_or_middle?) do | |
| value(:hes_right_side_windows_glass_layers_post).filled? | |
| end |
| Handlebars.registerHelper('data-type', function(arg) { | |
| if ( arg.indexOf('image/svg') !== -1 ) { | |
| return 'svg'; | |
| } else if ( arg.indexOf('image/png') !== -1 ) { | |
| return 'png'; | |
| } else { | |
| return 'png-fallback'; | |
| } | |
| }); |
| class ReportsController < ApplicationController | |
| include Trailblazer::Operation::Controller | |
| def create | |
| run Report::Create do |op| | |
| flash[:notice] = "Created Report for \"#{op.work_scope_report.title}\"" | |
| return redirect_to work_scope_report_path(op.work_scope_report) | |
| end | |
| @wsr = WorkScopeReport.find(params[:work_scope_report_id]) |
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| @import "true"; | |
| // From Thoughtbot's Bourbon | |
| /// Converts shorthand to the 4-value syntax. | |
| /// | |
| /// @param {List} $shorthand |
| UPDATE wp_EkUMs54Z_users SET ID = 10 WHERE ID = 1; -- update user id | |
| UPDATE wp_EkUMs54Z_usermeta SET user_id = 10 WHERE user_id = 1; -- retain permissions | |
| ALTER TABLE wp_EkUMs54Z_users AUTO_INCREMENT = 11; -- make sure auto increment stays correct |
| cd wp-content/plugins/ | |
| rm hello.php | |
| cd ../themes/ | |
| rm -fR twentyten twentyeleven twentytwelve twentythirteen twentyfourteen | |
| cd ../../ | |
| git commit -am 'Deleting unused themes and plugins' |