yougg

Results 7 comments of yougg

I found the notice ` No binary provided now` in this commit: https://github.com/brookhong/brookhong.github.io/commit/00984eeae1326764c184a8aa15893ada441f3b84#diff-c6e90340df7f815042df9006331a370bR10 but you can still download the old binaries from the commit history :smiley: https://github.com/brookhong/brookhong.github.io/commits/master/assets/downloads

the strace log: ``` $ strace `which parsecd` execve("/usr/local/bin/parsecd", ["/usr/local/bin/parsecd"], 0x7ffc11b00b80 /* 74 vars */) = 0 brk(NULL) = 0x57830057c000 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7ae81882a000 access("/etc/ld.so.preload", R_OK)...

the parsec installed in my termina linux vm runs correctly.

update `~/.parsec/appdata.json` to reference to orginal so file ```bash sed 's/'$(jq -r .hash /usr/local/share/parsec/skel/appdata.json)'/'$(sha256sum /usr/local/share/parsec/skel/parsecd-150-90c.so | awk '{print $1}')'/g;s#parsecd-150-90c.so#/usr/local/share/parsec/skel/parsecd-150-90c.so#g' /usr/local/share/parsec/skel/appdata.json > ~/.parsec/appdata.json ``` ![image](https://github.com/chromebrew/chromebrew/assets/1641020/3e687724-7b6a-4850-a39a-52d8f983a9d0) then it start with an new...

从AUR安装了lunar-date, 复制了lunar-date.mo到en_US中, 还是显示的拼音 ![image](https://github.com/yetist/lunar-date/assets/1641020/a35298c9-15f6-41fd-996a-b0a70f6ef902) ![image](https://github.com/yetist/lunar-date/assets/1641020/035f1acd-23ea-49d5-9083-f8781efe5e4c) udpate: 注销重新登陆后显示汉字了 ![image](https://github.com/yetist/lunar-date/assets/1641020/d9ed9915-42f0-4dca-b663-1242ae5e88ac)

还可以试试数组和map方式 ```go var roundsArray = [...]string{ 0: "☆☆☆☆☆☆☆☆☆☆", 1: "★☆☆☆☆☆☆☆☆☆", 2: "★★☆☆☆☆☆☆☆☆", 3: "★★★☆☆☆☆☆☆☆", 4: "★★★★☆☆☆☆☆☆", 5: "★★★★★☆☆☆☆☆", 6: "★★★★★★☆☆☆☆", 7: "★★★★★★★☆☆☆", 8: "★★★★★★★★☆☆", 9: "★★★★★★★★★☆", } func getPercentageRoundsArray(percentage float64)...