forum

Alternative Site for downloading beatmaps ?

posted
Total Posts
16
Topic Starter
rhalp10
Alternative Site for downloading beatmaps ? other than bloodcat ? i, tyring to make site having converted maps ? maybe this site is for mania only ?
http://o2mania-osumap.net16.net/ or someone help me and make this for all like blood cat ? :roll:
Ikaer
U can try my website if you want http://www.altosu.org. There is also http://osusearch.com/ and http://www.osubeatmaps.com/en/
Topic Starter
rhalp10

Ikaer wrote:

U can try my website if you want http://www.altosu.org. There is also http://osusearch.com/ and http://www.osubeatmaps.com/en/
nice sites :) i want to create like those site,... can i ask, how did you make your site .org ? for free ?
Ikaer
Hi, thanks :)

No it's not free to register a domain name. It's a subscription for a year (or more) that you can do on some websites. For exemple, I bought mine using my server provider (in France), it costs me 15$ / year (probably not the cheapest, I think).
Howl

rhalp10 wrote:

Ikaer wrote:

U can try my website if you want http://www.altosu.org. There is also http://osusearch.com/ and http://www.osubeatmaps.com/en/
nice sites :) i want to create like those site,... can i ask, how did you make your site .org ? for free ?
Also.
I saw your website, and I've seen that it has been done with a website builder.
You won't get far with those. Not if you're trying to build something similiar to bloodcat. By the way, hosting a mirror takes a hell lot of space (going up to terabytes if you include pending, wip and graveyard beatmaps), so you probably don't want to use free hosting services.
If you want to build one, grab a serious programming guide (I'd suggest Go or node.js), learn about how to sysadmin servers, and in probably a year or so you might as well be able to finally create your own website for mirroring beatmaps.
(protip: if you're doing it manually, as in you are adding beatmaps to the listing by hand, you're doing it wrong. automate everything when possible. this is an example of discontinued osu! mirror prototype. it works, but you should not run it unless you are 100% sure on what you are doing.)

EDIT: i forgot a not, ffs
Topic Starter
rhalp10

Ikaer wrote:

Hi, thanks :)

No it's not free to register a domain name. It's a subscription for a year (or more) that you can do on some websites. For exemple, I bought mine using my server provider (in France), it costs me 15$ / year (probably not the cheapest, I think).

ah,.. i think already find the right website of free domain of .com but i dont how to upload file on that site , and then they need the legit info and scan of your picture,..
Topic Starter
rhalp10

Howl wrote:

Also.
I saw your website, and I've seen that it has been done with a website builder.
You won't get far with those. Not if you're trying to build something similiar to bloodcat. By the way, hosting a mirror takes a hell lot of space (going up to terabytes if you include pending, wip and graveyard beatmaps), so you probably don't want to use free hosting services.
If you want to build one, grab a serious programming guide (I'd suggest Go or node.js), learn about how to sysadmin servers, and in probably a year or so you might as well be able to finally create your own website for mirroring beatmaps.
(protip: if you're doing it manually, as in you are adding beatmaps to the listing by hand, you're doing it wrong. automate everything when possible. this is an example of discontinued osu! mirror prototype. it works, but you should not run it unless you are 100% sure on what you are doing.)

EDIT: i forgot a not, ffs

I know that man, it will cause alot of terabytes , i will use google for that !! :) ahaha bytheway thanks,
Ikaer
The library of Altosu is currently taking 300Gb (for approximately 100 000 beatmaps in WI, Graveyard state, and 45 000 in ranked, approved state).

As Howl said, Node.js is a good techno to start with because you only learn one language (javascript) for both client and server sides.

rhalp10 wrote:

ah,.. i think already find the right website of free domain of .com but i dont how to upload file on that site , and then they need the legit info and scan of your picture,..
There are several ways to upload files on a server (FTP, source control, copy / paste with a terminal server).

And yeah, your informations must be legit, but domain sellers generally provide a proxy option to hide those information, so nothing go public, but they can delivered those information to mandated services.
Topic Starter
rhalp10

Ikaer wrote:

The library of Altosu is currently taking 300Gb (for approximately 100 000 beatmaps in WI, Graveyard state, and 45 000 in ranked, approved state).

As Howl said, Node.js is a good techno to start with because you only learn one language (javascript) for both client and server sides.

There are several ways to upload files on a server (FTP, source control, copy / paste with a terminal server).

And yeah, your informations must be legit, but domain sellers generally provide a proxy option to hide those information, so nothing go public, but they can delivered those information to mandated services.
Ah, Ok Thanks :), hmm ikaer what did you use next page ? frame ? or ajax call ? i want my page not to become a slowpoke , can you help me with my code ? and also for the search bar, how did you do that..
Ikaer
Every interaction which modify the listing (like next page) triggers an ajax call yep.

If this can help, this is what I've used for this website:

On client side:
- Angular for the logical part (get beatmaps, bind them to UI, etc.) (https://angularjs.org/ with https://github.com/angular-ui/ui-router)
- Semantic UI for the design (http://semantic-ui.com/). The search bar is an adaptation of component sidebar (http://semantic-ui.com/modules/sidebar.html#/examples) in addition with component "Search" (http://semantic-ui.com/modules/search.html#category)

On server side:
- Express (which is a node.js web server) http://expressjs.com/
- MongoDB for beatmaps and users storage https://www.mongodb.org/

For the code itself, all sources are here https://github.com/Ikaer/osu-listing
The main part of client is written here:
- https://github.com/Ikaer/osu-listing/bl ... ainCtrl.js
with template files:
- https://github.com/Ikaer/osu-listing/bl ... /main.html
- https://github.com/Ikaer/osu-listing/bl ... sCard.html

The main part of server side is here:
- https://github.com/Ikaer/osu-listing/bl ... es.js#L460

Hope this helps you
Topic Starter
rhalp10

Ikaer wrote:

Every interaction which modify the listing (like next page) triggers an ajax call yep.

If this can help, this is what I've used for this website:

On client side:
- Angular for the logical part (get beatmaps, bind them to UI, etc.) (https://angularjs.org/ with https://github.com/angular-ui/ui-router)
- Semantic UI for the design (http://semantic-ui.com/). The search bar is an adaptation of component sidebar (http://semantic-ui.com/modules/sidebar.html#/examples) in addition with component "Search" (http://semantic-ui.com/modules/search.html#category)

On server side:
- Express (which is a node.js web server) http://expressjs.com/
- MongoDB for beatmaps and users storage https://www.mongodb.org/

For the code itself, all sources are here https://github.com/Ikaer/osu-listing
The main part of client is written here:
- https://github.com/Ikaer/osu-listing/bl ... ainCtrl.js
with template files:
- https://github.com/Ikaer/osu-listing/bl ... /main.html
- https://github.com/Ikaer/osu-listing/bl ... sCard.html

The main part of server side is here:
- https://github.com/Ikaer/osu-listing/bl ... es.js#L460

Hope this helps you
Thanks Ikaer it will help me alot :)
aceticke

Ikaer wrote:

U can try my website if you want http://www.altosu.org. There is also http://osusearch.com/ and http://www.osubeatmaps.com/en/
I can confirm after checking the site myself and malware scanning it that the first website: http://www.altosu.org links to a fake virus alert scam page. Any reason why this is?
Nessitro
Good day :

-http://osusearch.com/search/?query_order=favorites
-http://bloodcat.com/osu/?q=&c=b&s=&m=
-http://o2mania-osumap.net16.net/song.html

these are the best tbh i dunno if there are others
Ikaer

Adam2905 wrote:

Ikaer wrote:

U can try my website if you want http://www.altosu.org. There is also http://osusearch.com/ and http://www.osubeatmaps.com/en/
I can confirm after checking the site myself and malware scanning it that the first website: http://www.altosu.org links to a fake virus alert scam page. Any reason why this is?
Possible, I abandonned the DNS some month ago, so, altosu.org does not exist as beatmap mirror anymore. I'm not responsible of what is there now.

The source of website and server are still available here https://github.com/Ikaer/osu-aggregator and https://github.com/Ikaer/osu-listing if someone wants to revive the project.
Topic Starter
rhalp10

Ikaer wrote:

Possible, I abandonned the DNS some month ago, so, altosu.org does not exist as beatmap mirror anymore. I'm not responsible of what is there now.

The source of website and server are still available here https://github.com/Ikaer/osu-aggregator and https://github.com/Ikaer/osu-listing if someone wants to revive the project.

oh i see...
Raimuei
Please sign in to reply.

New reply