Jordan Miner

Results 8 comments of Jordan Miner

@assarbad I looked it up and found that PowerShell Core has added globbing but only on Unix systems. It's based on a compile time define, here: https://github.com/lzybkr/PowerShell/blob/7f3364f5dd5c3095d1b177c682960f3bb3ca4ca0/src/System.Management.Automation/engine/NativeCommandParameterBinder.cs#L265 I suppose its...

As a user, I've always preferred Inno Setup or NSIS installers over msi. Most msi installers I've used are slower and don't have as nice of a UI as the...

I'd like to use probe-rs with the CC2650 and CC2652, which should be pretty similar to the CC1352R. These chips use cJTAG, and I imagine it will be a decent...

Sure, here is a program that I would expect to print "Matched: true", but it prints "Matched: false": ``` extern crate regex; use regex::RegexBuilder; fn main() { let regex =...

Java's regex also matches `\r\n` by default: Pattern p = Pattern.compile("foo$", Pattern.MULTILINE); System.out.println(p.matcher("foo\r\n").find()); prints `true`.

Spektrum receivers communicate with the Smart ESC using 3.3V half-duplex UART on the signal pin. The UART is 115,200 baud or optionally 400,000 baud. There is more detail in the...

Yes, that looks good. A pull request would be welcome.

> [@jminer](https://github.com/jminer) Is this font part of a Linux package? If so, which (could you provide a link to the distro package list)? What is the source of the font...