Andrei Sura
Andrei Sura
Redmine 2.6 references the "fixed_version" in two places which might be worth investigating == versions_controller.rb ``` ruby 47 @issues_by_version = {} 48 if @selected_tracker_ids.any? && @versions.any? 49 issues = Issue.visible....
I can confirm that the API supports filtering the issues by the "fixed_version_id=your_sprint_id" @see https://github.com/ctsit/redman/blob/master/fabfile.py#L350
It looks like the maintainer are busy... :(
This is related to https://github.com/bitly/data_hacks/pull/35
it looks like this repo is dead :(
I believe some people here got confused. I personally did not want to open a new terminal, I wanted to replace the terminal inside the IDE with Iterm2 (which is...
Btw this is a cool plugin to debug startup times https://github.com/dstein64/vim-startuptime
An option is to rename the columns if you know the column position, then sort by the name you choose. See https://miller.readthedocs.io/en/latest/csv-with-and-without-headers/ ``` cat unknown_col.csv abc, xxx_like, yyy_unlike 10, 1,...
@ joseph-fox can you save the filter bits and reload them from a file?
@joseph-fox I was looking for `bt.tofile()` and `BloomFilter.fromfile()` with open('bloom.bits', 'wb') as fw: bf.tofile(fw) with open('bloom.bits', 'rb') as fr: bf2 = BloomFilter.fromfile(fr)