Discuss Scratch
- Discussion Forums
- » Things I'm Making and Creating
- » Forumoji: Forum-style unicode emojis!
- notwait
- Scratcher
100+ posts
Forumoji: Forum-style unicode emojis!
there is no specific vendor we're trying to recreate here.(#1699)Yeah, but I like using emojipedia.org because It's organized a lot better.
A place to find emojis is also: https://commons.wikimedia.org/wiki/Emoji
Is there a specific vendor (Google, Microsoft) That we are making the emojis of on here? If we had to choose, Google Noto Is always a good choice imo…
it can be any vendor's emoji, as long as it is recreated in the forumoji style.
edit: king of the page
Last edited by notwait (Sept. 12, 2023 15:00:12)
- Scratch137
- Scratcher
1000+ posts
Forumoji: Forum-style unicode emojis!
(#1694)whoa nice! i didn't realize we were so far along already
progress pie chart thingy i made in python
(edit) grey = not made
i guess it has been nearly two years…
- RobotChickens
- Scratcher
500+ posts
Forumoji: Forum-style unicode emojis!
(#1694)Super cool! Is this on a website somewhere? How dod you make this?
progress pie chart thingy i made in python
(edit) grey = not made
- RobotChickens
- Scratcher
500+ posts
Forumoji: Forum-style unicode emojis!
Githup image hosting is no longer supported.
- TheTrillion
- Scratcher
500+ posts
Forumoji: Forum-style unicode emojis!
(#1704)it never was; it was made for other websites iirc
Githup image hosting is no longer supported.
- notwait
- Scratcher
100+ posts
Forumoji: Forum-style unicode emojis!
It's a program i made using python(#1694)Super cool! Is this on a website somewhere? How dod you make this?
progress pie chart thingy i made in python
(edit) grey = not made
also, here's the source code (warning: bad code)
import requests import tkinter as tk colors = ["#f00", "#0f0", "#00f", "#0ff", "#ff0", "#f0f", "#700", "#070", "#007", "#077", "#770", "#707", "#f70", "#730", "#f77", "#7f7", "#77f", "#7ff", "#ff7", "#f7f", "#f27", "#575", "#757", "#0d7", "#fff"] colors.reverse() print(len(colors)) print("downloading forumoji.json") forumoji = requests.get("https://gh.vercte.net/forumoji/resources/forumoji.json").json() print("downloading unicode-emoji.json") unicode = requests.get("https://gh.vercte.net/forumoji/resources/unicode-emoji.json").json() authors = [emoji["author"][0] for emoji in forumoji["emoji"]] author_counts = sorted([(author, authors.count(author)) for author in set(authors)], key=lambda t: t[1]) codepoints = [] for category in unicode["contents"]: for subcategory in category["contents"]: for emoji in subcategory["contents"]: codepoints.append(emoji["codepoint"]) emoji_count = (len(codepoints)) print(len(forumoji["emoji"]) / emoji_count * 100) root = tk.Tk() canvas = tk.Canvas() canvas.create_oval(0,0,600,600, fill="gray", width=0) start = 0 for color_index, t in enumerate(author_counts): extent = (t[1] / emoji_count * 360) canvas.create_arc(0,0,600,600, fill=colors[min(color_index, len(colors)-1)], start=start, extent=extent, width=0, outline="") start += extent print(start, extent, color_index, t[0], t[1]) canvas.create_rectangle(620, color_index * 20, 620 + 20, color_index * 20 + 20, fill=colors[min(color_index, len(colors)-1)], width=1) canvas.create_text(620+30, color_index*20+10, text=t[0], anchor="w") canvas.pack(expand=1, fill="both") root.mainloop()
maybe someone will port this to JS and put it on the website
- mumu245
- Scratcher
1000+ posts
Forumoji: Forum-style unicode emojis!
(#1708)Or even PyScript, but not with Tkinter. Chartify (it's made by music app) seems nice for this job. It doesn't have pie charts, but the bar charts it does make are interactive.
maybe someone will port this to JS and put it on the website
Last edited by mumu245 (Sept. 16, 2023 05:39:26)
- DifferentDance8
- Scratcher
1000+ posts
Forumoji: Forum-style unicode emojis!
What interest does Spotify want to have with the concept of charts?(#1708)Or even PyScript, but not with Tkinter. Chartify (it's made by music app) seems nice for this job. It doesn't have pie charts, but the bar charts it does make are interactive.
maybe someone will port this to JS and put it on the website
- mumu245
- Scratcher
1000+ posts
Forumoji: Forum-style unicode emojis!
(#1710)Nothing, but https://github.com/spotify/chartify/blob/master/examples/Examples.ipynb . Probably a side project made by some bored employees.What interest does Spotify want to have with the concept of charts?(#1708)Or even PyScript, but not with Tkinter. Chartify (it's made by music app) seems nice for this job. It doesn't have pie charts, but the bar charts it does make are interactive.
maybe someone will port this to JS and put it on the website
- lolecksdeehaha
- Scratcher
1000+ posts
Forumoji: Forum-style unicode emojis!
all emoji vendors should have the same emojis. we're just essentially another emoji vendor, so own style(#1699)Yeah, but I like using emojipedia.org because It's organized a lot better.
A place to find emojis is also: https://commons.wikimedia.org/wiki/Emoji
Is there a specific vendor (Google, Microsoft) That we are making the emojis of on here? If we had to choose, Google Noto Is always a good choice imo…
- 64lu
- Scratcher
1000+ posts
Forumoji: Forum-style unicode emojis!
this emoji should be added i think - better Exploding Head emoji
- 64lu
- Scratcher
1000+ posts
Forumoji: Forum-style unicode emojis!
made some edits to the current thumbs up/down emojis
- RobotChickens
- Scratcher
500+ posts
Forumoji: Forum-style unicode emojis!
(#1712)The celebrating emoji is very clearly modeled ofter the Windows version:all emoji vendors should have the same emojis. we're just essentially another emoji vendor, so own style(#1699)Yeah, but I like using emojipedia.org because It's organized a lot better.
A place to find emojis is also: https://commons.wikimedia.org/wiki/Emoji
Is there a specific vendor (Google, Microsoft) That we are making the emojis of on here? If we had to choose, Google Noto Is always a good choice imo…
But, the ghost on the other hand is based on the Google version: (It's the only one with a swooshy bottom)
I just think it would be nice to have some kind of consistency…
- 64lu
- Scratcher
1000+ posts
Forumoji: Forum-style unicode emojis!
this is a pretty big project contributed to by many people, your expectations for consistency should be pretty low… -snip
I just think it would be nice to have some kind of consistency…
at least for now, what vendor each forumoji is based on is up to the artist right now and i dont really think theres anything wrong with that
- 7salad3salad
- Scratcher
1000+ posts
Forumoji: Forum-style unicode emojis!
No random person is going to realize that, or if they do they wouldnt care…(#1712)The celebrating emoji is very clearly modeled ofter the Windows version:all emoji vendors should have the same emojis. we're just essentially another emoji vendor, so own style(#1699)Yeah, but I like using emojipedia.org because It's organized a lot better.
A place to find emojis is also: https://commons.wikimedia.org/wiki/Emoji
Is there a specific vendor (Google, Microsoft) That we are making the emojis of on here? If we had to choose, Google Noto Is always a good choice imo…
But, the ghost on the other hand is based on the Google version: (It's the only one with a swooshy bottom)
I just think it would be nice to have some kind of consistency…
- AIGamesDeveloper
- Scratcher
1000+ posts
Forumoji: Forum-style unicode emojis!
(#1714)
made some edits to the current thumbs up/down emojis
I love the shadows
- Crispydogs101
- Scratcher
1000+ posts
Forumoji: Forum-style unicode emojis!
I honestly like it better. made some edits to the current thumbs up/down emojis
- mcgoomba
- Scratcher
1000+ posts
Forumoji: Forum-style unicode emojis!
- Sneezing face
(I didn't notice we had one sorry)
(I didn't notice we had one sorry)
Last edited by mcgoomba (Sept. 23, 2023 01:53:54)