Joshix-1

Results 25 issues of Joshix-1

Python-Code from https://openmoji.org/faq/ ```python emoji_code = "-".join(f"{ord(c):x}" for c in emoji).upper() url = f"https://raw.githubusercontent.com/hfg-gmuend/openmoji/master/color/72x72/{emoji_code}.png" ``` generates for https://emojipedia.org/emoji/%E2%80%BC/ (‼️) 203C-FE0F. That is correct. (see the emojipedia link) But https://raw.githubusercontent.com/hfg-gmuend/openmoji/master/color/72x72/203C-FE0F.png is...

bug

This pr adds the core functionality of editing messages sent by webhooks without all the helper methods.

See: https://discord.com/developers/docs/resources/channel#follow-news-channel

medium priority

When you edit a message with an embed and an image like this ``` api.getMessageByLink(link).ifPresent(future -> { Message m = future.join(); EmbedBuilder embed = m.getEmbeds().get(0).toBuilder(); m.edit(embed).join(); }); ``` the image...

:bug: bug
medium priority

add a setting on a guild/channel base wich automatically encrypts all your messages with a specified key you're sending. (This could allow you to send animated emotes without Nitro) Then...

Platform: Linux Version: Latest on Itch

Commits were sorted by time in diff view. That's wrong as some people like to commit in the future or past. To see the fix just compare my commit to...

The following both should work as String and int can be compared to each other. ````dart print(("a", 1) > ("a", 0)); // false print(("a", 1).compareTo(("a", 0))); // 1 ```` Records...

feature