2023-12-09
How To Fix Opencl Platform Not Found Issue On Android

To run llama.cpp on Oneplus Ace2V, you need an extra step:

1
2
export LD_LIBRARY_PATH=/vendor/lib64:/vendor/lib64/mt6983:/vendor/lib64/egl/mt6983

Read More

2022-08-07
Dash Api Docset Reference Search

on non-macos platforms, use zeal instead.

the core problem is that after uninstallation of xcode, one cannot launch the Apple Doc Helper or some binary afterwards inside the Apple docset under dash documentation folder. the docset can be copied to this folder automatically by dash but without xcode it cannot be opened.

Read More

2022-08-07
Macos Locate Fix And Alternative

the fix

to enable the service:

1
2
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist

to update locate db:

1
2
sudo /usr/libexec/locate.updatedb

or, more conveniently:

1
2
3
sudo ln -s /usr/libexec/locate.updatedb /usr/local/sbin/updatedb
sudo updatedb

alternative

use mdfind

Read More