Jonathan Chun

Results 35 comments of Jonathan Chun

So it seems this is mostly an artifact of being placed next to 2 "full-sized" icons. It looks much better next to the rounder or other tilted icons. I still...

Here's what it looks like on macOS: ![image](https://user-images.githubusercontent.com/5800539/78691596-cad47380-78c6-11ea-81f2-83c53e5abefb.png)

YAML is not a valid [MIME type](http://www.iana.org/assignments/media-types/media-types.xhtml) Looks like CPython does not consider it a "common type" either ([Source](https://hg.python.org/cpython/file/3.2/Lib/mimetypes.py#l528)). `mimetypes.guess_type('example.yml', strict=False)` will result in `(None, None)`.

This behavior is expected for the `Authorization` header. `httpie` is using the `Requests` library internally, so certain headers are overwritten as described in this comment [here](https://github.com/requests/requests/issues/2062#issuecomment-44200835) Most importantly, here: >...

I just tested the same code and it works perfectly fine on my end. ``` sqlite3.OperationalError: database is locked ``` is most likely being thrown because you have a different...

As of commit 39e2020ade12aa3e248dcda907ea8a15a5e7d004, it looks like autocommit is BLOCKING. Can this issue be marked resolved?

@mpenkov one problem I see with that approach is that you would need to pickle the entire dictionary every time you change any Key/Value inside the nested dictionary. With @wkatsak's...

What happens when you run the following? ``` cd /home/ak/sources/applet-window-appmenu/ bash ./install.sh ```

Looks like there's a problem with the current master branch of that repo. I should definitely not be building the master branch but rather the latest release. I bet you...

Well, that's just my best guess -- I haven't actually tested this myself yet.