GarrisonBaird

Results 22 comments of GarrisonBaird

Few days later, with many changes to my decks, I tried to debug the problem about media sync, it works well...... Maybe the problem isn't at server side, which means...

The problem seems still exist :( Log from App (debug.log at Documents, can get it from iTunes) ``` [148****127]: ( reinit, "20028.3" ) [148****127]: ( updateCutoff, 174, 148****400 ) [148****128]:...

You can change the shortcut in `__init__.py`, see [here](https://github.com/finalion/WordQuery/blob/cd986d3ba795d1a2d2e17609f68b518c48922617/src/__init__.py#L26)

Seems like the problem of the mdict library, or maybe the dictionary file is corrupted. I found the same dictionary [here](https://www.pdawiki.com/forum/thread-20726-1-1.html), try stardict format witch is also supported. _PS: Files...

refers to the [official document](http://www.stardict.org/StarDictFileFormat), `.ifo` is the metadata of a dictionary and always exsits, if you want to make it simple, pick `.ifo` instead of other suffixes > Stardict...

during working on the code, I found that problems like magic numbers are everywhere I belive EVERY coding book or document for starters will alert that do NOT use magic...

oh, and something like this, really... [`if dict_type and dict_type != u'不是字典字段' and dict_type != 'Not dict field' and dict_field:`](https://github.com/finalion/WordQuery/blob/master/wquery/query.py#L189) lol

Note that online queries should be rate limited, I don't think we need multi thread. If you have so much cards, leave your PC run it at night.

This issue is caused by urllib2 in python2 which uses SSLv3 by default, some servers are configured as rejecting old SSL protocol for security propose, same issue occurs on [collins...

I don't think a simple plugin can do the trick, and we should report it to upsteam, if necessary. Only Python 2.7.9 or later supports TLSv1.1/v1.2, see https://stackoverflow.com/a/29155638