Will

Results 4 issues of Will

I have the following code ``` with open("back number - sister.mp3", "rb") as file: info = fleep.get(file.read(128)) print(info.type) print(info.extension) print(info.mime) ``` But the output shows nothing ``` [] [] []...

According to [List of file signatures](https://en.wikipedia.org/wiki/List_of_file_signatures), there are 2 magic codes for MP3 files. I added the other missing magic code and a test for this specific scenario.

Currently, I want my output to `kill-ring`, so I have the current line: `(setq google-translate-output-destination 'kill-ring)` But I want it to output to both kill-ring and echo-area. I tried the...

enhancement

Here's my setup in `init.el` ``` ;; org-wunderlist (use-package org-wunderlist :ensure t :config (setq org-wunderlist-client-id "XXXX") (setq org-wunderlist-token "YYYY") (setq org-wunderlist-file "~/.emacs.d/wunderlist.org") (setq org-wunderlist-dir "~/.emacs.d/org-wunderlist/")) ``` I run `M-x org-wunderlist-fetch`...