JP Sugarbroad
JP Sugarbroad
As in title. Lots of complaints about missing crates.
I'm seeing invoices where the date comes in as u'UpdatedDateUTC': u'/Date(1451988985943+1300)/' -- which doesn't work as something you can send back. Any ideas?
Testcase: ```python from typing import List def f(d: int) -> int: return d + 1 def g(l: List[str]) -> List[str]: return list(f(x) for x in l) ``` Running `pytype-single --quick`...
It would be very useful to allow the user to specify a smaller font. I can read much smaller text, and the proxmark puts out a lot of data quite...
My USB port isn't great and the proxmark sometimes disconnects mid-operation. If I hit the back button to get back to the connect button, it sometimes pops up with "Copying...
I turned on the "Forums" label, and it overrode more specific labels for bundling. I'd love to be able to specify a priority order for bundles so that I can...
I use Priority Inbox extensively to ensure that important messages pop out. So I don't want them to be bundled, even if they have the bundle label.
https://webrtchacks.com/sdp-anatomy/ There's a horizontal scrollbar because width is mixed with margin in two places: 1. `` 2. `#description` has margins, but inherits width. Both of these should be paddings, which...
Steps to reproduce: 1. Set Integrated Only 2. Run Chrome and open something that would activate discrete GPU 3. Close laptop 4. Wait a bit. 5. Open laptop Expected result:...
``` switch b[0] { case 0xFF: io.ReadFull(c.r, c.buf[:]) case 0x00: ``` I think you need to read a byte and set c.raw after io.ReadFull. :-)