Title: P1: and aspell in Emacs [2023-08-12 Sat]
(add-hook # org-mode-hook (lambda ()
(local-set-key (kbd "C-c 2") # my/switch-flycheck-mode)
))
😃\n#dailyreport #emacs #aspell #flycheck

Title: P0: and aspell in Emacs [2023-08-12 Sat]
I configured aspell language spell checker in Emacs
with flycheck-aspell package, but it require much CPU. 🤔
I activate and deactivate it with command:

(defun my/switch-flycheck-mode ()
(interactive)
(if (null flycheck-mode) :: this allow to enable and disable mode with one command (minor-mode)
:: Turn mode off
(flycheck-mode)
:: Turn mode on
(flycheck-mode -1)
)
)\n#dailyreport #emacs #aspell #flycheck

Сегодня я смог починить проверку правописания в Claws Mail!

Оказалось, что помимо пакета
enchant2 нужен ещё пакет enchant2-hunspell или enchant2-aspell если вы используете aspell. И соответствующие пакеты со словарями, конечно же.

#ClawsMail #enchant #hunspell #aspell

Слишком стар для этого…? Полувековая ОС, текстовый браузер и программа-корректор — ретрософт с многолетней поддержкой

Мы в

https://habr.com/ru/companies/beeline_cloud/articles/948134/

#beeline_cloud #история_it #софт #open_source #браузер_lynx #aspell

Слишком стар для этого…? Полувековая ОС, текстовый браузер и программа-корректор — ретрософт с многолетней поддержкой

Мы в Beeline Cloud интересуемся примечательными ретротехнологиями — недавно вспоминали культовую « страничку на миллион долларов », а также говорили о проектах, стремящихся сохранить веб-артефакты,...

Хабр

TIL that #aspell (I assume on my #Fedora #Linux system) does not recognize "documents" as a valid word, instead, presumably, thinking that the plural of document is itself.

Is #English okay?

#KDE

@thisismissem apologizes if this was not helpful. If you are still looking for assistance later when I am at a computer, I can try to work up an actual workflow example with #markdownlint and #aspell.

Recuerdo que algún contertulio de Mastodon llevaba un blog con un recuento de cambios en el #Diccionario de la Academia.

Sería interesante tener esa lista de palabras para hacer comprobaciones automatizadas de qué palabras no hay en Lexica (y quizá en otros juegos) y en wiktionary.

Porque supongo que los diccionarios #Aspell sí se están actualizando debidamente...

https://github.com/lexica/lexica/issues/259

Words missing from spanish dictionary · Issue #259 · lexica/lexica

I miss some Spanish words such as 'osa' (female bear) and 'atole' (sweet drink popular on Central America). According to my web page, where I have old versions of some word lists, both words are in...

GitHub

Do you know why the German #aspell dictionaries are so small? When I write a text, about one correct word per page is unknown to aspell / #ispell.

Are there some other dictionaries that I could add?

I've found my first useful application for 'deep" AI: a plain spell check #aspell style. I underline not to produce to the text content itself but just correct spelling and comma mistakes.

IMHO, it is pretty good application for working in open source project such as #Linux #kernel because it improves fairness and equality between native and non-native #English speakers.

You have to remember that #English is one of the tedious #language's if you analyze it objectively. It has vast amount of corner cases and exceptions. It is dead easy only because at least in #Finland you hear throughout your life by playing video games and watching TV series (we do not dub) :-)

Still, in written English e.g. comma rules are so strange that I doubt whether I will ever really can master them....

Also I have a minor #dyslexia which makes me read sentences sometimes incorrectly in any language. This can be often seen at LKML but what can you do :-)
I want to process words from an English #dictionary in #RubyLang. Does anyone have a hint what to use nowadays?
I found some abandoned #aspell #rubygems but it looks like they only allow checks and not iterating over words.