Paul Jimenez

Results 112 comments of Paul Jimenez

Still repros for me as of 3cf8f283d3f271b6d0b5de39f55e4ea40b83eece .

I think https://github.com/willkg/everett/blob/master/everett/manager.py#L874 is enough to let this be closed.

Based on: * https://github.com/ziglang/zig/wiki/Zig-Build-System * Links from https://www.reddit.com/r/Zig/comments/jb8qd3/resources_for_understanding_zig_build_system/

Obviously this should be called ic.wrap ...

FWIW, I got this to work by first removing all the libav\* and ffmpeg libraries and then building a more recent ffmpeg just for pianobar. Something like: 1. clone ffmpeg...

I was thinking a list of RSS URLs to monitor, which would play the latest episode if there was a new one, like the current NPR feed does now.

My thought was that most people won't leave it on 24/7, so any podcasts would show up at startup. And the skip button should still work :)

I did it on my fork to make it more easily hackable; take whatever you want from https://github.com/pjz/pidora .

Yup, that's PEP 8. Good plan. Tools like the aforementioned autopep8 can help, and your text editor probably has a plugin.

Also, in places where you have `X == y or X == z or X == a` it's more pythonic to just test `X in [ y, z, a ]`.