mmcdole
mmcdole
It doesn't look like RAM access is mirrored per this diagram: http://en.wikibooks.org/wiki/NES_Programming/Memory_Map I believe a simple fix would be to bitwise & the address with `0x7FFF` which should be equivalent...
Take the following podcast rss: http://feeds.serialpodcast.org/serialpodcast It has both an `itunes:subtitle` and a `description` for the feed element. FeedParser only ever returns the `itunes:subtitle`, even when attempting to access `feed.description`....
This is a design change that I think would be a positive move for feedparser. It is somewhat related to #24 but isn't exactly the same. Right now, if feedparser...
In the font config file we have: ``` Noto Sans serif Noto Serif sans-serif Noto Sans monospace Noto Mono ``` I believe `Noto Mono` has been renamed `Noto Sans Mono`....
I'd like to suggest two enhancements to CodeBucket regarding pull requests: 1) I'd like to see the diff for a given pull request. Not just a commit list, but the...
When gofeed encounters an element that it doesn't know expect, it will call `parseText` on it and attempt to store the value in a `item.Custom` map. `parseText` calls decode element...
Following issue #180, #25 and some other issues, I'd like to make character sanitization more robust. I've previously tried to have the code do something like the following: ```golang func...
I'd like to be able to stream music from sources that require custom HTTP authorization headers. It would be really great if StreamingKit would expose an overload that would let...
Quick PR to add the ability to pass in a decoder. Trying to address #10