Kevin Brubeck Unhammer
Kevin Brubeck Unhammer
opening an issue so https://github.com/apertium/lttoolbox/issues/82#issuecomment-646959621 doesn't get lost
Before https://github.com/apertium/lttoolbox/commit/944ed2556c38f058a5118ab5e481b3412aa3e3d8 / https://github.com/apertium/lttoolbox/pull/52 it was possible to use monodix files with an empty `` in order to segment into all known analyses (presumably symbols without analyses were output as...
It'd be nice to be able to do something like ``` $ echo AP_PAIR_VERSION | apertium foo-bar 74a6bc782f95c94ebfd8238063e256df40e84bb8 ``` where 74a6bc782f95c94ebfd8238063e256df40e84bb8 is the git commit of the language pair `foo-bar`....
I tried ``` (setq gnus-completing-read-function ; based on gnus-ido-completing-read (defun gnus-ivy-completing-read (prompt collection &optional require-match initial-input history def) "Call `ivy-completing-read-function'." (ivy-completing-read prompt collection nil require-match initial-input history def))) (use-package ivy-historian...
It'd be nice to have some sort of centering. Currently I use ``` (add-hook 'epresent-start-presentation-hook #'center-current-window) ``` with https://gist.github.com/unhammer/103e8ad5823ea323d328 but I feel like that code is a bit roundabout …...
In js-mode, I get an error with the message (jit-lock--run-functions 3698 3699) [UNPR HOST api.js]: Wrong type argument: number-or-marker-p, nil for almost every edit. The nil-check in this patch fixes...
I get ``` expression `\xs -> sort xs == (sort . sort) (xs :: [Int])' :59:3: No instance for (Show ([Int] -> [Int])) (maybe you haven't applied enough arguments to...
I've started getting this: ``` src/Foo.hs:603: failure in expression `not . null . parseFoo' :76:19: error: • Variable not in scope: mkName :: [Char] -> template-haskell-2.14.0.0:Language.Haskell.TH.Syntax.Name • Perhaps you meant...
I would like to do this: ``` key.setViewKey("]", function () { command.walkInputElement(command.elementsRetrieverTextarea, true, true); }, "Focus to the next textarea", false); key.setViewKey("[", function () { command.walkInputElement(command.elementsRetrieverTextarea, false, true); }, "Focus...
``` λ> let bø = [fmt|ø|] :: ByteString; in T.putStrLn $ "ø vs " [fmt|{T.decodeUtf8With T.lenientDecode bø}|] ø vs � λ> ([fmt|ø|]:: ByteString, T.encodeUtf8 "ø") ("\248","\195\184") λ> ([fmt|{T.pack "ø"}|]:: ByteString,...