Results 60 comments of hexchain

``` $ env | egrep '^LANG|^LC' LANG=en_US.utf8 $ locale charmap UTF-8 $ locale LANG=en_US.utf8 LC_CTYPE="en_US.utf8" LC_NUMERIC="en_US.utf8" LC_TIME="en_US.utf8" LC_COLLATE="en_US.utf8" LC_MONETARY="en_US.utf8" LC_MESSAGES="en_US.utf8" LC_PAPER="en_US.utf8" LC_NAME="en_US.utf8" LC_ADDRESS="en_US.utf8" LC_TELEPHONE="en_US.utf8" LC_MEASUREMENT="en_US.utf8" LC_IDENTIFICATION="en_US.utf8" LC_ALL= ```

Well, this program doesn't seem to be fully unicode-aware. Since in Python2 the `sys.getdefaultencoding()` is always `ascii` on Linux, trying to concatenate a unicode and a string will fail because...

That's because `config.get('Library', 'music_dir')` -> unicode but `find_music_dir()` -> str, around line 1219.

`zenity --entry` brings up a gtk3 inputbox on screen. `--shadow-exclude` can be used, but it seems there's no way to exclude all GTK3 windows.

Thank you, `--shadow-exclude '_NET_WM_OPAQUE_REGION@:c'` works fine here.

Thanks for explaining. I just headed to the dashboard json directory without looking at those scripts.

Is it possible to obtain the URL of the credit card verification page? That seems to be the only page that can make webkit2gtk crash.

I was able to find the URL and put it into a WebKitGTK-based browser (Midori), but it didn't crash.

I just noticed that there are two webkit2gtk packages in Arch: webkit2gtk and webkit2gtk-4.1. Midori uses the former, so that was not a valid test. But in the meantime, I...

With `G_SLICE=always-malloc` the webview process also crashes: ``` #0 0x00000000063da30f n/a (/home/user/Downloads/Telegram/Telegram + 0x5fda30f) ```