Forum Settings
Forums
New
May 25, 2020 6:44 AM
#1

Offline
Jan 2018
46
I made a web app for sorting anime on your MAL profile. I made this app as a way to make consistent and objective anime "tier lists". I am currently hosting it at https://myanimetierlist.herokuapp.com/.

It's pretty intuitive to use, just type in your MAL username and chose from what list you want to select from (by default this will be your Completed list). You will be presented with two anime from your list, chose the one you like the most among the two and you will be presented with another pair. This will continue until the program has sorted every possible pair of anime.

This can be a very lengthy process if you have a large list so I've included a couple features to help with that. There is a min/max counter which estimates the number of comparisons required before the program has fully sorted your list. And there is a Save feature in case you want to take a break and continue at a later time.

It is worth noting that the app scrapes the data directly from your list and doesn't use an API so it will not work if your list is set to private, and you may run into some issues if you are using a custom theme. The Save feature uses local storage so the information will be saved locally on your computer and will be deleted if you clear the cache/history on your browser. Also I've only tested it in Chrome and Firefox so I can't guarantee it will work in other browsers yet.

I would really appreciate anyone who takes the time to create their own tier lists with the app, and I welcome all feedback and suggestions.
May 25, 2020 12:17 PM
#2

Offline
Mar 2010
13701
I can't seem to get anything to happen. I type my username in and press submit but nothing happens :( I have tried Chrome and Firefox both computer/android
May 25, 2020 3:36 PM
#3

Offline
Jan 2018
46
Stardew said:
I can't seem to get anything to happen. I type my username in and press submit but nothing happens :( I have tried Chrome and Firefox both computer/android


I think this is because you are using a custom theme on your list. If possible try temporarily switching to the default theme. Strange that you aren't getting an error message though, I will look into that.
May 25, 2020 5:47 PM
#4
Offline
Jul 2018
561864
Just finished it. I think something that would cut down time a lot would be not presenting choices that are already scored differently. All of my 8's are better than all of my 7's, and so on. So I think it would be logical not to have me choose between two anime where I've already scored one higher than the other; that's just a waste of time.
May 25, 2020 6:03 PM
#5

Offline
Jun 2012
12277
For people like me who are going to play with it out of curiosity, having it work only with the default list design is restrictive. Sounds very cool though.
May 25, 2020 6:15 PM
#6

Offline
Jan 2018
46
mikerjw said:
Just finished it. I think something that would cut down time a lot would be not presenting choices that are already scored differently.


I wouldn't want to automate that since some people might want to change their ratings, but it wouldn't be hard to add the ratings to the card so that you can make your decision faster.

AtmosphericEntry said:
For people like me who are going to play with it out of curiosity, having it work only with the default list design is restrictive. Sounds very cool though.


Yeah really sorry about that, the app currently collects data in a really hacky way. My next goal is to integrate the app with an API like Jikan to make the it more accessible. If you remember, come back in a week and this issue should be fixed.
May 25, 2020 6:19 PM
#7
Offline
Jul 2018
561864
Yeah, it would be nice to see the ratings on the cards. Now that I think about it, a "back" button would also be helpful, if that's possible.
Jun 7, 2020 2:59 PM
#8

Offline
May 2015
275
I guess it doesn't work for me either. First I used the "Dark Green" theme and it said "Invalid Input" and then I switched to Default and it still didn't work. Is there a reason for it?
Jun 7, 2020 3:06 PM
#9

Offline
Jan 2018
46
CureDream said:
I guess it doesn't work for me either. First I used the "Dark Green" theme and it said "Invalid Input" and then I switched to Default and it still didn't work. Is there a reason for it?


I actually recently fixed the issue with the themes, it should work with any custom theme. I made some changes to the way the proxy works, and I think that is where the problem is coming from. Try again in 30 minutes I should have it fixed by then.

edit: I did some searching and it looks like the API I am using is having trouble connecting to MAL's servers. MAL is returning an internal server error. I will let you know if I can get it to work with your profile. It isn't an issue with the theme though so you don't need to worry about that.
Shining_BoyJun 7, 2020 3:33 PM
Jun 8, 2020 3:57 AM

Offline
Aug 2018
5201
Seems like the API is blocking it from working
_______I like rocks__
Jun 8, 2020 9:29 AM

Offline
Jan 2018
46
MSAtlos said:
Seems like the API is blocking it from working


MAL recently started blocking IP ranges from cloud services like Heroku. People are talking about it here https://myanimelist.net/forum/?topicid=1844975. The app was definitely working 3 days ago. I will have to find a different place to host the app.
Jun 13, 2020 5:19 PM
Offline
Jul 2018
561864
Is there a way to exclude Plan to Watch, but keep the Dropped, On Hold, and Watching titles?
Jun 13, 2020 7:16 PM

Offline
Jan 2018
46
-1RIng2Rule- said:
Is there a way to exclude Plan to Watch, but keep the Dropped, On Hold, and Watching titles?


I could definitely do this, but I'm still trying to figure out why MAL suddenly forbade me from making requests.

Edit: MAL is now accepting requests and the app works as intended again.
Shining_BoyJun 27, 2020 8:37 PM
May 15, 2021 7:13 AM
Offline
Feb 2018
1
If you're still around, I was wondering how you scraped the data from MAL. I want to take my completed list, probably in order of rating top down, and be able to play with it using their pictures. Manually make an SABCDEF tier list with + and - (so S+, S, S-,...) (hopefully make this customizable) and stuff like that. And since I have some time this summer I'd def wanna make a website like yours and maybe host it on heroku or something and share it too.
May 15, 2021 10:18 AM

Offline
Dec 2019
3529
What's the point of it?
Click here to see My Tampermonkey Scripts For MAL

If you like my work, please consider supporting it!
Cryptos / Patreon / Ko-Fi / BuyMeaCoffee https://cyber-sec0.github.io
May 16, 2021 9:37 PM

Offline
Jan 2018
46
morgann_thain said:
If you're still around, I was wondering how you scraped the data from MAL. I want to take my completed list, probably in order of rating top down, and be able to play with it using their pictures. Manually make an SABCDEF tier list with + and - (so S+, S, S-,...) (hopefully make this customizable) and stuff like that. And since I have some time this summer I'd def wanna make a website like yours and maybe host it on heroku or something and share it too.


Hey Morgann, I originally just requested the page's source as plain text and parsed the information I cared about through trial and error. This is a really unreliable and time consuming process and I don't recommend it. Later I refactored the app to use MAL's public API and it is very intuitive to use. The documentation can be found here https://myanimelist.net/apiconfig/references/api/v2 and there are support forums on the website if you have any questions although I can't attest to the quality of said support.

hacker09 said:
What's the point of it?

The way I rate an anime (or any other piece of media) is by comparing it to how much enjoyment I get from it compared to every other anime I've experienced. This can get really difficult when you've seen a lot of shows and I tend to change my mind a lot and have inconsistent opinions. I remember seeing a similar app people used to make Fire Emblem character tier lists and it inspired me (I want to make that but for anime). The app is currently not active because I use the free plan on heroku which is very limited and I have other services running on my account. Here is a video of what the app looked like and how it worked https://youtu.be/2jQlMQmB1eI.
Aug 2, 2021 7:06 AM
Offline
Dec 2016
2
Great tool! I've always wanted to rank anime this way but had no idea how to search for it without finding crusty tier-list websites.

Worked great for me.

2 cool things to add would be:
-raising the list cap past 300 for peeps with lists pasts that amount
-being able to pick from your list what to rank (so I could exclude all the extra episode ova's and save that time)

Great Stuff!
Aug 24, 2021 6:35 AM
Offline
Apr 2021
2
i just used this i dont think you are getting enough praise for creating it. this was very useful i am in the process of changing all my scores and it took away my bias to others scores and focused on my enjoyment solely, thank you.
Aug 12, 2022 9:55 AM

Offline
Jul 2019
363
It’s not working.... why?
Dec 6, 2022 12:30 PM

Offline
Jun 2021
3189
I like using your tier list. Is it no longer working? Any plans on updating it?
Jan 27, 2023 2:12 AM

Offline
Aug 2018
24
For the sake of anyone curious, herokuapp now requires you to pay for programs so the animetierlist application went down because I'm sure its original creator doesn't even think about it anymore and wouldn't be able or willing to pay for it.
Jan 27, 2023 4:05 AM

Offline
Jun 2021
3189
KoraxCatalyst said:
For the sake of anyone curious, herokuapp now requires you to pay for programs so the animetierlist application went down because I'm sure its original creator doesn't even think about it anymore and wouldn't be able or willing to pay for it.


Nothing's free nowadays... And because of that a few other apps that used herokuapp are no longer working.

R.I.P. to these tier lists:
https://animetierlist.herokuapp.com/mal/
https://mal-tier-list-app.herokuapp.com

Uhm, is there a similar template available on TierMaker?
IridescentJauneFeb 5, 2023 3:19 PM
Feb 8, 2023 8:19 AM
DG9 CEO striker

Offline
Aug 2020
734
RIP if you ever create something similar let me know 
9cycle cycle9

More topics from this board

» I made a webcomic about a silly wabit and kat with aliens doing weeds

blockisaac - May 1

5 by pholcidae »»
22 minutes ago

» MY ANIMATED SHORT FILM

DiscloSalilokui - Oct 9

3 by DiscloSalilokui »»
Oct 12, 5:59 PM

» Four Ages! ( 1 2 )

Robert_SS_Gordon - Feb 21

52 by Retro8bit »»
Oct 11, 5:07 PM

» 【 ART THREAD 】Let's share our art! ‪‪❤︎‬ ( 1 2 3 4 5 )

mewmewforever - Aug 30, 2024

216 by Retro8bit »»
Oct 11, 5:06 PM

» share your amv! ( 1 2 3 4 5 ... Last Page )

Animetwins - May 5, 2015

1029 by Stormey »»
Oct 11, 8:17 AM
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login