├── .gitignore ├── .vimrc ├── README.md ├── browsers ├── block-a-url-in-chrome-devtools.md ├── change-timezone-in-chrome-devtools.md ├── chrome-flags.md ├── chrome-samesite-updates.md ├── date-input-tag.md ├── filter-network-requests-by-status-code-in-devtools.md ├── hide-bookmarks-bar-in-chrome.md ├── open-every-site-in-a-chrome-bookmarks-folder-with-one-click.md └── use-display-none.md ├── css ├── apply-a-conditional-border-without-moving-element.md ├── preserve-whitespace-in-css.md └── semicolon-breaks-everything.md ├── functional-programming └── filtering-by-identity.md ├── general ├── jira-actions-menu.md ├── rds-breaks-my-clock.md ├── turn-off-autoformatter-for-new-features.md └── validate-circleci-configuration-locally.md ├── git ├── apply-a-patch-in-reverse.md ├── delete-remote-git-tags.md ├── force-with-lease.md ├── git-log-since.md ├── git-log-with-authors.md ├── git-snapshot.md ├── show-how-a-file-is-ignored-in-git.md ├── the-alpha-commit.md └── undo-a-git-mistake.md ├── github ├── ignore-whitespace-in-a-github-pull-request.md └── link-to-headers-in-github-readmes.md ├── go ├── go-iota.md └── seeding-golangs-rand.md ├── html ├── autofocus-a-form-field.md └── reading-a-buttons-value-on-submit.md ├── images └── scrollbar-always.png ├── javascript ├── build-a-sentence-from-a-javascript-array.md ├── build-urls-with-window-location.md ├── load-a-dependency-in-node-repl.md └── sorting-numbers-with-javascripts-sort-function.md ├── less └── less-help.md ├── mac ├── understanding-scrollbar-visiblity.md └── zoom-and-scroll-in-figma.md ├── mobile ├── app-store-delays.md ├── clear-ios-mobile-dependencies.md ├── react-native-shake.md ├── scroll-on-xcode-simulator.md ├── testflight-downloads-latest-build.md └── xcode-run-hotkey.md ├── rails ├── assert-about-response-body-in-rspec-controller-tests.md ├── bypass-basic-auth.md ├── change-column-null.md ├── classify-and-constantize.md ├── controller-parameters-infered-from-the-model.md ├── fields-for-exclude-id.md ├── find-or-create-by-with-block.md ├── generate-a-rails-secret-key.md ├── highlighted-routes-searching.md ├── how-rails-action-name-works.md ├── modify-attribute-on-set.md ├── multipurpose-environmental-variables.md ├── parameters-filtering.md ├── rails-destroy.md ├── rails-restoreattributes.md ├── redirect-a-path.md ├── set-a-default-scope.md └── show-model-and-grep-with-pryrails.md ├── react ├── clear-react-routers-location-state-from-the-console.md ├── conditional-props.md ├── join-react-components-with-comma.md ├── link-externally-with-react-routers-link.md └── rerender-child-component-by-changing-key.md ├── ripgrep └── ignore-ripgrep-ignore.md ├── ruby ├── accessor-performance-gap.md ├── case-insensitive-matchers.md ├── edit-in-pry.md ├── fetch-your-environmental-variables.md ├── find-stale-gems.md ├── group-by-with-default.md ├── hash-equality.md ├── ignore-rubocop-block-length-lint-in-rspec.md ├── keyword-precedence.md ├── minmax.md ├── object-id.md ├── puts-multiple-lines.md ├── reset-a-gem.md ├── ruby-regex-literal.md ├── rubys-kernel-abort.md ├── show-proc-source-location.md ├── skid-keywords.md ├── steps-within-steps.md ├── succeed-precede-and-surround-in-haml.md ├── truthy-strings.md ├── upgrade-rubygems.md └── variable-hoisting-in-ruby.md ├── sql ├── cleanup-postgres-databases.md ├── default-to-empty-array-in-postgres.md ├── history-of-the-postgresql-name.md ├── postgres-unlogged.md ├── prepare-execute.md ├── psql-connect.md ├── query-the-size-of-postgres-array.md └── terminate_database_connections.md ├── svg ├── install-svgo-with-reasonable-defaults-part-two.md └── install-svgo-with-reasonable-defaults.md ├── terminal ├── append-to-a-write-protected-file.md ├── autojump-and-open.md ├── command-line-subshell.md ├── create-a-file-with-cat.md ├── ctags-dotfiles.md ├── directional-commands.md ├── finding-getters.md ├── force-asdf-reshim.md ├── md5-file-signatures.md ├── override-autojumps-directory-rankings.md ├── printing-with-lpr.md ├── read-zsh-builtin-manual-pages.md ├── reverse-a-string.md ├── run-previous-command.md ├── save-size-changes-to-iterm-profile.md ├── screen-flashing-in-osx.md ├── send-processes-to-the-background.md ├── standard-output-to-clipboard-buffer.md ├── start-postgresapp-from-the-command-line.md └── watch-that-program.md ├── testing ├── expect-a-caseinsensitive-match.md ├── extractrspeclet.md └── testing-edit-forms.md ├── tmux ├── source-tmux-config.md └── tmux-copy-mode.md ├── typescript ├── either-or-props-in-typescript.md └── typescript-union-type-from-array.md ├── urls └── encoding-plus-signs-in-urls.md └── vim ├── call-a-vimscript-method-in-vim.md ├── change-inner-tag-block.md ├── close-a-file.md ├── count-links-in-a-markdown-file.md ├── current-value-of-a-setting.md ├── delete-a-line-from-another-line.md ├── delete-comments.md ├── edit-the-current-file-always.md ├── explore-buffers-with-bufexplorer.md ├── find-and-replace-across-files.md ├── get-help-with-pathogen.md ├── increment-and-decrement-numbers.md ├── jump-to-n-percent-of-a-file.md ├── jump-to-the-first-non-blank-character.md ├── man-pages-in-vim.md ├── override-vims-filetype.md ├── select-first-spell-suggestion.md ├── sort-alphabetically.md └── vim-regex-word-boundaries.md /.gitignore: -------------------------------------------------------------------------------- 1 | /notes.md 2 | 3 | .js 4 | -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/.vimrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/README.md -------------------------------------------------------------------------------- /browsers/block-a-url-in-chrome-devtools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/browsers/block-a-url-in-chrome-devtools.md -------------------------------------------------------------------------------- /browsers/change-timezone-in-chrome-devtools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/browsers/change-timezone-in-chrome-devtools.md -------------------------------------------------------------------------------- /browsers/chrome-flags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/browsers/chrome-flags.md -------------------------------------------------------------------------------- /browsers/chrome-samesite-updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/browsers/chrome-samesite-updates.md -------------------------------------------------------------------------------- /browsers/date-input-tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/browsers/date-input-tag.md -------------------------------------------------------------------------------- /browsers/filter-network-requests-by-status-code-in-devtools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/browsers/filter-network-requests-by-status-code-in-devtools.md -------------------------------------------------------------------------------- /browsers/hide-bookmarks-bar-in-chrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/browsers/hide-bookmarks-bar-in-chrome.md -------------------------------------------------------------------------------- /browsers/open-every-site-in-a-chrome-bookmarks-folder-with-one-click.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/browsers/open-every-site-in-a-chrome-bookmarks-folder-with-one-click.md -------------------------------------------------------------------------------- /browsers/use-display-none.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/browsers/use-display-none.md -------------------------------------------------------------------------------- /css/apply-a-conditional-border-without-moving-element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/css/apply-a-conditional-border-without-moving-element.md -------------------------------------------------------------------------------- /css/preserve-whitespace-in-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/css/preserve-whitespace-in-css.md -------------------------------------------------------------------------------- /css/semicolon-breaks-everything.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/css/semicolon-breaks-everything.md -------------------------------------------------------------------------------- /functional-programming/filtering-by-identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/functional-programming/filtering-by-identity.md -------------------------------------------------------------------------------- /general/jira-actions-menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/general/jira-actions-menu.md -------------------------------------------------------------------------------- /general/rds-breaks-my-clock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/general/rds-breaks-my-clock.md -------------------------------------------------------------------------------- /general/turn-off-autoformatter-for-new-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/general/turn-off-autoformatter-for-new-features.md -------------------------------------------------------------------------------- /general/validate-circleci-configuration-locally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/general/validate-circleci-configuration-locally.md -------------------------------------------------------------------------------- /git/apply-a-patch-in-reverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/git/apply-a-patch-in-reverse.md -------------------------------------------------------------------------------- /git/delete-remote-git-tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/git/delete-remote-git-tags.md -------------------------------------------------------------------------------- /git/force-with-lease.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/git/force-with-lease.md -------------------------------------------------------------------------------- /git/git-log-since.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/git/git-log-since.md -------------------------------------------------------------------------------- /git/git-log-with-authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/git/git-log-with-authors.md -------------------------------------------------------------------------------- /git/git-snapshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/git/git-snapshot.md -------------------------------------------------------------------------------- /git/show-how-a-file-is-ignored-in-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/git/show-how-a-file-is-ignored-in-git.md -------------------------------------------------------------------------------- /git/the-alpha-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/git/the-alpha-commit.md -------------------------------------------------------------------------------- /git/undo-a-git-mistake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/git/undo-a-git-mistake.md -------------------------------------------------------------------------------- /github/ignore-whitespace-in-a-github-pull-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/github/ignore-whitespace-in-a-github-pull-request.md -------------------------------------------------------------------------------- /github/link-to-headers-in-github-readmes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/github/link-to-headers-in-github-readmes.md -------------------------------------------------------------------------------- /go/go-iota.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/go/go-iota.md -------------------------------------------------------------------------------- /go/seeding-golangs-rand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/go/seeding-golangs-rand.md -------------------------------------------------------------------------------- /html/autofocus-a-form-field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/html/autofocus-a-form-field.md -------------------------------------------------------------------------------- /html/reading-a-buttons-value-on-submit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/html/reading-a-buttons-value-on-submit.md -------------------------------------------------------------------------------- /images/scrollbar-always.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/images/scrollbar-always.png -------------------------------------------------------------------------------- /javascript/build-a-sentence-from-a-javascript-array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/javascript/build-a-sentence-from-a-javascript-array.md -------------------------------------------------------------------------------- /javascript/build-urls-with-window-location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/javascript/build-urls-with-window-location.md -------------------------------------------------------------------------------- /javascript/load-a-dependency-in-node-repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/javascript/load-a-dependency-in-node-repl.md -------------------------------------------------------------------------------- /javascript/sorting-numbers-with-javascripts-sort-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/javascript/sorting-numbers-with-javascripts-sort-function.md -------------------------------------------------------------------------------- /less/less-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/less/less-help.md -------------------------------------------------------------------------------- /mac/understanding-scrollbar-visiblity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/mac/understanding-scrollbar-visiblity.md -------------------------------------------------------------------------------- /mac/zoom-and-scroll-in-figma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/mac/zoom-and-scroll-in-figma.md -------------------------------------------------------------------------------- /mobile/app-store-delays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/mobile/app-store-delays.md -------------------------------------------------------------------------------- /mobile/clear-ios-mobile-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/mobile/clear-ios-mobile-dependencies.md -------------------------------------------------------------------------------- /mobile/react-native-shake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/mobile/react-native-shake.md -------------------------------------------------------------------------------- /mobile/scroll-on-xcode-simulator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/mobile/scroll-on-xcode-simulator.md -------------------------------------------------------------------------------- /mobile/testflight-downloads-latest-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/mobile/testflight-downloads-latest-build.md -------------------------------------------------------------------------------- /mobile/xcode-run-hotkey.md: -------------------------------------------------------------------------------- 1 | ### XCode Run Hotkey 2 | 3 | `⌘ + R`. 4 | -------------------------------------------------------------------------------- /rails/assert-about-response-body-in-rspec-controller-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/assert-about-response-body-in-rspec-controller-tests.md -------------------------------------------------------------------------------- /rails/bypass-basic-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/bypass-basic-auth.md -------------------------------------------------------------------------------- /rails/change-column-null.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/change-column-null.md -------------------------------------------------------------------------------- /rails/classify-and-constantize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/classify-and-constantize.md -------------------------------------------------------------------------------- /rails/controller-parameters-infered-from-the-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/controller-parameters-infered-from-the-model.md -------------------------------------------------------------------------------- /rails/fields-for-exclude-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/fields-for-exclude-id.md -------------------------------------------------------------------------------- /rails/find-or-create-by-with-block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/find-or-create-by-with-block.md -------------------------------------------------------------------------------- /rails/generate-a-rails-secret-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/generate-a-rails-secret-key.md -------------------------------------------------------------------------------- /rails/highlighted-routes-searching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/highlighted-routes-searching.md -------------------------------------------------------------------------------- /rails/how-rails-action-name-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/how-rails-action-name-works.md -------------------------------------------------------------------------------- /rails/modify-attribute-on-set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/modify-attribute-on-set.md -------------------------------------------------------------------------------- /rails/multipurpose-environmental-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/multipurpose-environmental-variables.md -------------------------------------------------------------------------------- /rails/parameters-filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/parameters-filtering.md -------------------------------------------------------------------------------- /rails/rails-destroy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/rails-destroy.md -------------------------------------------------------------------------------- /rails/rails-restoreattributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/rails-restoreattributes.md -------------------------------------------------------------------------------- /rails/redirect-a-path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/redirect-a-path.md -------------------------------------------------------------------------------- /rails/set-a-default-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/set-a-default-scope.md -------------------------------------------------------------------------------- /rails/show-model-and-grep-with-pryrails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/rails/show-model-and-grep-with-pryrails.md -------------------------------------------------------------------------------- /react/clear-react-routers-location-state-from-the-console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/react/clear-react-routers-location-state-from-the-console.md -------------------------------------------------------------------------------- /react/conditional-props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/react/conditional-props.md -------------------------------------------------------------------------------- /react/join-react-components-with-comma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/react/join-react-components-with-comma.md -------------------------------------------------------------------------------- /react/link-externally-with-react-routers-link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/react/link-externally-with-react-routers-link.md -------------------------------------------------------------------------------- /react/rerender-child-component-by-changing-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/react/rerender-child-component-by-changing-key.md -------------------------------------------------------------------------------- /ripgrep/ignore-ripgrep-ignore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ripgrep/ignore-ripgrep-ignore.md -------------------------------------------------------------------------------- /ruby/accessor-performance-gap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/accessor-performance-gap.md -------------------------------------------------------------------------------- /ruby/case-insensitive-matchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/case-insensitive-matchers.md -------------------------------------------------------------------------------- /ruby/edit-in-pry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/edit-in-pry.md -------------------------------------------------------------------------------- /ruby/fetch-your-environmental-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/fetch-your-environmental-variables.md -------------------------------------------------------------------------------- /ruby/find-stale-gems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/find-stale-gems.md -------------------------------------------------------------------------------- /ruby/group-by-with-default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/group-by-with-default.md -------------------------------------------------------------------------------- /ruby/hash-equality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/hash-equality.md -------------------------------------------------------------------------------- /ruby/ignore-rubocop-block-length-lint-in-rspec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/ignore-rubocop-block-length-lint-in-rspec.md -------------------------------------------------------------------------------- /ruby/keyword-precedence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/keyword-precedence.md -------------------------------------------------------------------------------- /ruby/minmax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/minmax.md -------------------------------------------------------------------------------- /ruby/object-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/object-id.md -------------------------------------------------------------------------------- /ruby/puts-multiple-lines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/puts-multiple-lines.md -------------------------------------------------------------------------------- /ruby/reset-a-gem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/reset-a-gem.md -------------------------------------------------------------------------------- /ruby/ruby-regex-literal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/ruby-regex-literal.md -------------------------------------------------------------------------------- /ruby/rubys-kernel-abort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/rubys-kernel-abort.md -------------------------------------------------------------------------------- /ruby/show-proc-source-location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/show-proc-source-location.md -------------------------------------------------------------------------------- /ruby/skid-keywords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/skid-keywords.md -------------------------------------------------------------------------------- /ruby/steps-within-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/steps-within-steps.md -------------------------------------------------------------------------------- /ruby/succeed-precede-and-surround-in-haml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/succeed-precede-and-surround-in-haml.md -------------------------------------------------------------------------------- /ruby/truthy-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/truthy-strings.md -------------------------------------------------------------------------------- /ruby/upgrade-rubygems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/upgrade-rubygems.md -------------------------------------------------------------------------------- /ruby/variable-hoisting-in-ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/ruby/variable-hoisting-in-ruby.md -------------------------------------------------------------------------------- /sql/cleanup-postgres-databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/sql/cleanup-postgres-databases.md -------------------------------------------------------------------------------- /sql/default-to-empty-array-in-postgres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/sql/default-to-empty-array-in-postgres.md -------------------------------------------------------------------------------- /sql/history-of-the-postgresql-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/sql/history-of-the-postgresql-name.md -------------------------------------------------------------------------------- /sql/postgres-unlogged.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/sql/postgres-unlogged.md -------------------------------------------------------------------------------- /sql/prepare-execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/sql/prepare-execute.md -------------------------------------------------------------------------------- /sql/psql-connect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/sql/psql-connect.md -------------------------------------------------------------------------------- /sql/query-the-size-of-postgres-array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/sql/query-the-size-of-postgres-array.md -------------------------------------------------------------------------------- /sql/terminate_database_connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/sql/terminate_database_connections.md -------------------------------------------------------------------------------- /svg/install-svgo-with-reasonable-defaults-part-two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/svg/install-svgo-with-reasonable-defaults-part-two.md -------------------------------------------------------------------------------- /svg/install-svgo-with-reasonable-defaults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/svg/install-svgo-with-reasonable-defaults.md -------------------------------------------------------------------------------- /terminal/append-to-a-write-protected-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/append-to-a-write-protected-file.md -------------------------------------------------------------------------------- /terminal/autojump-and-open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/autojump-and-open.md -------------------------------------------------------------------------------- /terminal/command-line-subshell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/command-line-subshell.md -------------------------------------------------------------------------------- /terminal/create-a-file-with-cat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/create-a-file-with-cat.md -------------------------------------------------------------------------------- /terminal/ctags-dotfiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/ctags-dotfiles.md -------------------------------------------------------------------------------- /terminal/directional-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/directional-commands.md -------------------------------------------------------------------------------- /terminal/finding-getters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/finding-getters.md -------------------------------------------------------------------------------- /terminal/force-asdf-reshim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/force-asdf-reshim.md -------------------------------------------------------------------------------- /terminal/md5-file-signatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/md5-file-signatures.md -------------------------------------------------------------------------------- /terminal/override-autojumps-directory-rankings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/override-autojumps-directory-rankings.md -------------------------------------------------------------------------------- /terminal/printing-with-lpr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/printing-with-lpr.md -------------------------------------------------------------------------------- /terminal/read-zsh-builtin-manual-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/read-zsh-builtin-manual-pages.md -------------------------------------------------------------------------------- /terminal/reverse-a-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/reverse-a-string.md -------------------------------------------------------------------------------- /terminal/run-previous-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/run-previous-command.md -------------------------------------------------------------------------------- /terminal/save-size-changes-to-iterm-profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/save-size-changes-to-iterm-profile.md -------------------------------------------------------------------------------- /terminal/screen-flashing-in-osx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/screen-flashing-in-osx.md -------------------------------------------------------------------------------- /terminal/send-processes-to-the-background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/send-processes-to-the-background.md -------------------------------------------------------------------------------- /terminal/standard-output-to-clipboard-buffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/standard-output-to-clipboard-buffer.md -------------------------------------------------------------------------------- /terminal/start-postgresapp-from-the-command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/start-postgresapp-from-the-command-line.md -------------------------------------------------------------------------------- /terminal/watch-that-program.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/terminal/watch-that-program.md -------------------------------------------------------------------------------- /testing/expect-a-caseinsensitive-match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/testing/expect-a-caseinsensitive-match.md -------------------------------------------------------------------------------- /testing/extractrspeclet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/testing/extractrspeclet.md -------------------------------------------------------------------------------- /testing/testing-edit-forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/testing/testing-edit-forms.md -------------------------------------------------------------------------------- /tmux/source-tmux-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/tmux/source-tmux-config.md -------------------------------------------------------------------------------- /tmux/tmux-copy-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/tmux/tmux-copy-mode.md -------------------------------------------------------------------------------- /typescript/either-or-props-in-typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/typescript/either-or-props-in-typescript.md -------------------------------------------------------------------------------- /typescript/typescript-union-type-from-array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/typescript/typescript-union-type-from-array.md -------------------------------------------------------------------------------- /urls/encoding-plus-signs-in-urls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/urls/encoding-plus-signs-in-urls.md -------------------------------------------------------------------------------- /vim/call-a-vimscript-method-in-vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/call-a-vimscript-method-in-vim.md -------------------------------------------------------------------------------- /vim/change-inner-tag-block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/change-inner-tag-block.md -------------------------------------------------------------------------------- /vim/close-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/close-a-file.md -------------------------------------------------------------------------------- /vim/count-links-in-a-markdown-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/count-links-in-a-markdown-file.md -------------------------------------------------------------------------------- /vim/current-value-of-a-setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/current-value-of-a-setting.md -------------------------------------------------------------------------------- /vim/delete-a-line-from-another-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/delete-a-line-from-another-line.md -------------------------------------------------------------------------------- /vim/delete-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/delete-comments.md -------------------------------------------------------------------------------- /vim/edit-the-current-file-always.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/edit-the-current-file-always.md -------------------------------------------------------------------------------- /vim/explore-buffers-with-bufexplorer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/explore-buffers-with-bufexplorer.md -------------------------------------------------------------------------------- /vim/find-and-replace-across-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/find-and-replace-across-files.md -------------------------------------------------------------------------------- /vim/get-help-with-pathogen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/get-help-with-pathogen.md -------------------------------------------------------------------------------- /vim/increment-and-decrement-numbers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/increment-and-decrement-numbers.md -------------------------------------------------------------------------------- /vim/jump-to-n-percent-of-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/jump-to-n-percent-of-a-file.md -------------------------------------------------------------------------------- /vim/jump-to-the-first-non-blank-character.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/jump-to-the-first-non-blank-character.md -------------------------------------------------------------------------------- /vim/man-pages-in-vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/man-pages-in-vim.md -------------------------------------------------------------------------------- /vim/override-vims-filetype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/override-vims-filetype.md -------------------------------------------------------------------------------- /vim/select-first-spell-suggestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/select-first-spell-suggestion.md -------------------------------------------------------------------------------- /vim/sort-alphabetically.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/sort-alphabetically.md -------------------------------------------------------------------------------- /vim/vim-regex-word-boundaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwworth/til/HEAD/vim/vim-regex-word-boundaries.md --------------------------------------------------------------------------------