Robert Leach
Robert Leach
Oh cool. Well obviously, I haven't used the catch node enough to know you could do that, thanks.
Excellent! I will give it a shot over the weekend. That's when I fool around with my flows (at least until my wife complains that I'm not doing chores and...
I have a different use-case that perhaps is somewhat similar. I have devices that I've set homebridge up to control using homebridge-commander. Those devices cannot be controlled via IFTTT or...
No, my Etekcity devices are cheap RF outlets and can only be controlled via a 433Mhz signal. I have a remote that came with the outlets and I also bought...
Incidentally, I have my [fork of pi-rc](https://github.com/hepcat72/pi-rc) doing the basics of what I want to accomplish. I just don't want to be messing with the dma controller. Also, it's a...
I'm running a one-time large test of my fix for this issue. It all goes as planned without a problem, I'll be submitting a PR tomorrow.
Yep. Looks like my fix works. Prior to this fix, the unmatched output in the standard output was a nonsense negative number. Now: ``` ... Plate3_4D_F1_353_F_S3 29159 Plate3_4D_F1_353_F_S3_R1.fastq Plate3_4E_F1_385_F_S1 27228...
Thanks. I'll be extra careful.
Make a feature that effectively implements colgroup tags that are compatible with switchable columns
Just FYI, I implemented it myself just now... ```javascript document.addEventListener("DOMContentLoaded", function(){ const real_cnt_elem = document.getElementById("realcount") const real_cnt = real_cnt_elem.innerHTML const rec_cnt_elem = document.getElementById("recordcount") rec_cnt_elem.innerHTML = real_cnt // https://bootstrap-table.com/docs/api/events/ // https://bootstrap-table.com/docs/api/events/#oncolumnswitch...
Make a feature that effectively implements colgroup tags that are compatible with switchable columns
Here's an example: Columns are switchable in the menu at the top right and the thick black border highlighting the colgroups updates. Right now, I do this via javascript triggered...