Kimi MA

Results 31 comments of Kimi MA

is there any solution to this problem? minibuffer is keeping flashing..

option 2, could define this method with a try...catch, but need an additional function `read-cell-cached`: ```clojure (defmethod read-cell CellType/FORMULA [^Cell cell] (let [evaluator (.. cell getSheet getWorkbook getCreationHelper createFormulaEvaluator)] (try...

I've tested in Excel. By default, number string is stored as number. When the field with small green triangle, indicates it is a number stored as string: https://support.microsoft.com/en-us/office/fix-text-formatted-numbers-by-applying-a-number-format-6599c03a-954d-4d83-b78a-23af2c8845d0#__toc260840018

"2014" in this file is treated as string. [1900-based-dates.xlsx](https://github.com/mjul/docjure/files/5421480/1900-based-dates.xlsx) ![number-stored-as-string](https://user-images.githubusercontent.com/5523431/96847955-60f87180-1486-11eb-94b0-75eef3df67e9.JPG)

I also want this feature, so I created a PR here: #93

Hello, since you are creating the server from `ServerBuilder`, you do not need configuration files. The problem in the code is that `sample_user_id` is not defined. You could replace this...

I found offlineimap is better that it support Windows. I cannot make mbsync to support Windows.

I think you can follow this link: https://hackernoon.com/learn-blockchains-by-building-one-117428612f46

@dgthanhan good idea! I also want this feature.

Hello, I combined the power of sdcv with fanyi.el: ```emacs-lisp (require 'sdcv) (defun kimim/sdcv-translate-result-advice (word dictionary-list) (let* ((arguments (cons word (mapcan (lambda (d) (list "-u" d)) dictionary-list))) (result (mapconcat (lambda...