KeePass is good at syncing (via FTP or DAV). I missed that functionality on Windows. Here's how I install and use KeePass on MacOS: ## Install wine-crossover ```bash brew tap gcenx/wine brew install --cask --no-quarantine wine-crossover ``` ## Install winetricks ```bash brew install winetricks ``` ## Install .NET ```bash winetricks -q dotnet472 ``` ## Install mono ref: [StackOverflow](https://askubuntu.com/questions/644236/mono-does-not-appear-to-be-installed-error-winetricks) 1. Download [wine-mono.msi](http://dl.winehq.org/wine/wine-mono) from the official winehq site. 1. Run `wine64 uninstaller` 1. A window should popup. Inside the window choose the `mono.msi` file you just downloaded, and then click `install` ## Install clipboard dependences ```bash brew install xsel brew install xdotool ``` ## Install KeePass.zip Please download the exact KeePass version that you used on Windows. Or you may encounter the error `keepass failed to load the specified file the master key is invali...
Text Segmentation ------ [natto-py](https://github.com/buruzaemon/natto-py): MeCab [tinysegmenter3](https://github.com/SamuraiT/tinysegmenter): extremely compact Japanese tokenizer. Or [tinysegmenter](https://pypi.python.org/pypi/tinysegmenter) ``` # update: not perfect. 全部食べなさい。 >>> 全/部食/べ/なさい。 ``` [JapaneseTokenizers](https://github.com/Kensuke-Mitsuzawa/JapaneseTokenizers): Supports `Mecab` `Juman++` `Kytea` [Comparison](http://taku910.github.io/mecab/#diff) Romanize ------ [pykakasi](https://github.com/miurahr/pykakasi): For Kanji >>> romaji conversion. Method ------ [AutoFurigana](https://github.com/prometheus42/AutoFurigana): Way to combine `tinysegmenter` and `pykakasi` in python. Other ------ [nihongoparserd](https://github.com/Tatoeba/nihongoparserd) C++ hosted on local port. [Web version](https://tatoeba.org/eng/tools/furigana). [Furigana](https://github.com/michaelvobrien/furigana): Ruby command line t...
评论
发表评论