Results 60 comments of hexchain

Under openwrt-19.07 one needs to explicitly enable the required boost libraries. In `make menuconfig`, enable `Libraries` -> `boost`, and enable `program_options` and `system` under "Select boost libraries". EDIT: The boost...

Same problem here. It's a 4MB TP-Link MR-13U so no iproute2 and no tcpdump. (Argh!) `/etc/config/dhcp`: ``` config dnsmasq option domainneeded '1' option boguspriv '1' option localise_queries '1' option rebind_protection...

Hit the same problem today. Here is a backtrace: ``` (gdb) bt #0 wl_proxy_create_wrapper (proxy=proxy@entry=0x0) at ../wayland-1.18.0/src/wayland-client.c:2237 #1 0x00007fffea2b643f in wsi_wl_display_init (wsi_wl=0x555555894710, display=display@entry=0x7fffffffce40, wl_display=0x0, get_format_list=get_format_list@entry=true) at ../mesa-20.2.1/src/vulkan/wsi/wsi_common_wayland.c:399 #2 0x00007fffea2b6df3 in...

I've got the same issue with systemd 242.84 on Arch. However, without restarting resolved, even if I manually execute `resolvectl dnssec wlp58s0 no`, some queries still fail: ``` Sep 03...

You might want to start Steam with the environment variable `GDK_SCALE=2` to ensure HiDPI support. AFAIK GNOME and GTK internally uses XSettings to share information about scaling, but Steam only...

Opened a issue: https://gitlab.gnome.org/GNOME/gtk/-/issues/4772

Looking from `ftgrid`, that stroke seems completely missing under 12-12.5, 13.5-15ppem: ![image](https://user-images.githubusercontent.com/529520/124363169-55438880-dc6c-11eb-96ed-adaae108d890.png) That doesn't look correct to me, but I know nothing about glyphs, so this comment might be completely...

This is still an issue in Spring Cloud 2023.0.0-M2 and Spring Boot 3.2.0-M3: ```kotlin // this refreshes @ConfigurationProperties("app.props") class AppProps { var text: String = "" var number: Int =...

Sorry for the confusion. Title and description updated. According to the exception, the problem is not about metadata, but `song_url`.

I've tried adding two `print` statement: ``` python print(repr(song_url), type(song_url)) print(repr(params['music_dir']), type(params['music_dir'])) ``` and the result is: ``` '\xe9\xa2\xa8\xe3\x81\xaf\xe4\xba\x88\xe5\x91\x8a\xe3\x81\xaa\xe3\x81\x8f\xe5\x90\xb9\xe3\x81\x8f.mp3' u'file:///home/hexchain/Music' ```