Thanks for the reply. This thread may give us some clues: https://bugzilla.mozilla.org/show_bug.cgi?id=1941820
Japanese Speaker. I can read/write some English but not well, so corrections are always appreciated.
プログラミングや音楽に興味があります。最近はEmacsでよく遊んでます。
- 5 Posts
- 91 Comments
Some fonts may require additional configuration to display properly, so usually manual installation should be avoided.
Please run (and post the result here)
fc-match sans
andfc-match serif
to check fontconfig picks wrong italic font. If that’s the case, try to remove the TTF files you’ve installed via the font manager you’re using, then install the fonts via the package manager - it should configures fonts properly.
nmtake@lemm.eeto Emacs@lemmy.ml•Pascal problem, Emacs seems to be changing := into : space =3·2 months agoPlease post the whole output (it should contain “font” and “text propertires”), and run describe-char against the actual space-inserted assignment operator you found (not the newly created file), and finally, enclose the output with three backquotes. to format it properly.
nmtake@lemm.eeto Emacs@lemmy.ml•Pascal problem, Emacs seems to be changing := into : space =2·2 months agoCan you post the output of
M-x describe-char
on each character (“:”, space, “=”) here?
nmtake@lemm.eeto Linux@lemmy.ml•Help me list custom keyboard shortcuts from terminal on Linux [RESOLVED]6·3 months agoThe SCHEMA:PATH part seems slightly wrong (singular vs. plural). Try:
schema=org.gnome.settings-daemon.plugins.media-keys.custom-keybinding path=/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom1/ gsettings get "${schema}:${path}" binding gsettings get "${schema}:${path}" command gsettings get "${schema}:${path}" name
nmtake@lemm.eetoLemmy Support@lemmy.ml•Re: Blocking/Disabling DMs, I see the feature is "complete". Can I use this yet? If so, please give instructions.6·3 months agoAlthough committing the feature to the Github repository has finished, the feature will be available for you when your instance updates the Lemmy version to 0.20, 1.0, or higher.
How about consult-history? https://github.com/minad/consult?tab=readme-ov-file#histories
nmtake@lemm.eeto Fediverse@lemmy.world•I believe that the "Nicole" images being sent to Threadiverse users may be intending to deanonymize accountsEnglish2·4 months agoIf anyone has other suggestions to mitigate this
Firefox has “permissions.default.image” (link) option that disables image loading, but this Wikipage is very old so I’m not sure whether it works properly in current FIrefox.
I’d write a bookmarklet for that case:
javascript: { const name = 'ABC'; const d = new Date(); const year = d.getFullYear(); const month = d.getMonth(); const date = d.getDate(); document.activeElement.value = `${year}/${month}/${date} ${name}`; void 0; }
This bookmarklet inserts the desired text into the currently focused text box. Tested on Lemmy Web UI.
What program are you using to write or edit the comments?
Yes. See https://join-lemmy.org/docs/contributors/04-api.html for general usage and https://github.com/db0/pythorhead for a library (written in Python).
Edit: See also: https://lemm.ee/c/lemmydev and https://lemmy.dbzer0.com/c/lemmy_integrations
As already suggested, take a look at i3 Window Manager’s docs: https://i3wm.org/docs/userguide.html because Sway (works on Wayland) is a port of i3 (works on X11).
** URL now never sends user email addresses in HTTP requests.
Someone like me may want to know the background of the change, so here’s the commit and the relevant discussion.
nmtake@lemm.eetoLemmy Support@lemmy.ml•Will Lemmy eventually start detecting duplicate links? if yes, can anyone link the relevant issue on the project GitHub, so I can follow it.3·5 months agoI believe that detection works for posts in the same community too. I posted two same links in a community and both was detected as cross-posted:
You can get the cross posts via API resposne. See
cross_posts
field in the response ofhttps://<instance>/api/v3/post?id=<ID>
.
nmtake@lemm.eeto Fediverse@lemmy.world•Has anyone been able to register for Misskey outside of Japan?English11·8 months agoYes, they started the restriction a year ago. For a future reference, here’s the announcement about the restriction (written in Japanese): https://support.misskey.io/hc/ja/articles/7604557294607
I think it doesn’t work. I skimmed Lemmy source code (search
scrape_text_for_mentions
if you’re interested) and found this issue so I’m almost sure the mention in the post body doesn’t work, but haven’t tested, so I used the word may. Sorry for your confusion.
FYI username mention in a post body (not in a comment) may not work.
nmtake@lemm.eetoLemmy Support@lemmy.ml•Is it a bug that the response of .../api/v3/comment/list?post_id is always empty?3·9 months agoOddly, the endpoint on lemm.el and lemmy.ml return comments:
> curl 'https://lemm.ee/api/v3/comment/list?post_id=45734814' | jq '.comments.[] | .comment.content[:50]' "Yeah, you're right. I didn't read enough of the do" "Thank you for the tip ... but whatever I try with " "~~In 0.19.5, they removed the deprecated `post_id`" > curl 'https://lemmy.ml/api/v3/comment/list?post_id=21766749' | jq '.comments.[] | .comment.content[:50]' "Yeah, you're right. I didn't read enough of the do" "Thank you for the tip ... but whatever I try with " "~~In 0.19.5, they removed the deprecated `post_id`"
I think it would be better to ask the admin of the instance before creating the issue.
AFAIK contents aren’t shared automatically between servers. See https://join-lemmy.org/docs/administration/federation_getting_started.html