Keenan Brock
Keenan Brock
`require` loads files based upon a load path. `require_relative` loads files based upon the location of the current file. While `..` is discouraged from use in `require_relative`, it just doesn't...
Alternatively, you can `git mv Images images` and push that up. Wasn't sure how to do it in the github ui.
I plan on doing the following in my local prototype. Which of these do you think will add to this example and not just make the code more complicated? UNKNOWN:...
### before ``` /Users/kbrock/dotfiles/bashrc.d/chruby.sh real 0m0.004s user 0m0.001s sys 0m0.001s ``` ### after ``` /Users/kbrock/dotfiles/bashrc.d/chruby.sh real 0m0.000s user 0m0.000s sys 0m0.000s ``` ### why? I was trying to figure out...
When you install a new ruby in a different terminal shell, chruby does not pick up on the new ruby version. The solution is to to source chruby.sh again. Introducing...
## Overview MiqExpression can run in both sql and ruby. When it runs in ruby, it produces a string, regular expressions replaces the string a few times and then it...
The goal is to reduce the overhead of archived records when working with `VimPerformanceStates` - [x] https://github.com/ManageIQ/manageiq/pull/22580 - [x] https://github.com/ManageIQ/manageiq/pull/22579 - [x] #22605 - [x] #11868 - [x] https://github.com/ManageIQ/manageiq/pull/22607 -...
`VimPerformanceState` are used to represent an object in the past. These records are used for metrics rollups, metric calculations, and chargeback calculations. Do note, that chargeback calculations do contain some...
## Before - Determine `supports?` from the `unsupported_reason` hash. It will return a true, false, String reason, or block. - Call block if necessary and store the result in `unsupported`...
Do not merge until we talk ## Overview Change implementation of `supports` to not define methods. 1. https://github.com/ManageIQ/manageiq/issues/21989 2. https://github.com/ManageIQ/manageiq/issues/21179 3. https://github.com/ManageIQ/manageiq/pull/21553 - avoiding `&:supports_feature?` calls ## Before 1. `supports...