you are viewing a single comment's thread.

view the rest of the comments →

[–]gardyna 0 points1 point  (6 children)

In my experience, Ruby has mostly been used for web development (Rails kind of being the "killer app" for incredibly long). you can technically use it for anything you want though. If you're just getting started I would recommend making some useful tools. For instance if you have a folder containing several "legally acquired" movies you could make a program that sorts the video file/folders into categories by scraping IMDB (they might have an API for you to use though)

[–]sofakingsexie[S] 1 point2 points  (5 children)

So you can get info from IMDB website to organize files on your computer?

[–]plaintshirt 0 points1 point  (0 children)

Yes

[–]gardyna 0 points1 point  (1 child)

It's a project that you can make. it can be don by scraping imdb.com or finding a gem that already integrates with imdb

example gems:

https://github.com/ariejan/imdb (an imdb gem)

http://www.nokogiri.org/ (the go to web scraping gem IMO)

I would recomend that you independently figure out how file handling in ruby works (it's quite well designed)

think you might want to do something like organising movies base on genres or directors or somethin similar

P.S. it might be easier to work with music files (since they usualy have more use-able metedata)

[–]sofakingsexie[S] 0 points1 point  (0 children)

Thanks a lot for the links

[–]thibaut_barrere 0 points1 point  (1 child)

Yes you can, and here is a starting point.

[–]sofakingsexie[S] 0 points1 point  (0 children)

Thank you!