- Illogical redirect (false return) on "empty string" user input on results view -> redirected to front page.
- Goal: Should stay on results "page", perhaps with flash error message (Ajax?)
- Illogical redirect (false return) when user attempts to add a duplicate tracker - > redirected to front page with flash message ("You already have this tracker...").
- Goal: Should stay on results "page" (Ajax?)
- Develop static site module for SEO-enhancement generated from DB stored trackers (keywords).
- Auto-updated site map, with updated child nodes.
- Develop forum
- Reuse user DB from app, to avoid double sign up in forum
- Discourse?
- Add Que to utilize modular architecture for UX speed enhancement.
- Finalize remove account functionality via email confirmation Nobi.
- Implement single tracker cration for unregistered users by entering email only + design view/form.
- Redesign the layout - with clear CTA
- Size and seeder sorted torrent search results.
- Produce simple instructional video for home page
- Email check
- Ajax UX improvements
- Auto-reset of password via perishable token
- Remember me-functionality
- Merge/integrate app with separately developed updater, mailer and static page generation modules
- Integrate as modular Sinatra app?
- Learn and do testing
- Dynamically generate list of 10 latest, most popular and highest seeded notifications, etc. along with 10 latest forum posts
- Cron-job for 10 min interval update of the above, stored in file, to reduce DB querying?
- Evaluate need for numerical constraints and foreign key constraints (for referential integrity) at the database level
- Add option to change user password
- Add user's forum activity to profile page; number of posts and latest post.
- Develop option for setting update interval for trackers; immediately/hourly, daily, weekly or monthly, along with buffer storing updates until released frequency is reached.
- Add 'pause' option for individual trackers
- Integrate results from several different sources (will cause delay in display - or update dynamically? Wrid/glitchy UX?), checking for duplicates and sorting on release time.
Timedate sorted torrent listAdd bootstrapAdd ORM for persistence layer (ROM, Sequel, ActiveRecord or Lotus::Model
User registration/sign up (self-coded, Warden or Omniauth Identity, CanCan, etc.Log inUser management of trackers
Implement fall-back RSS feedTime-sorted feed from URL = 'https://torrentz.eu/feedA?f='[BUG] Torrent results listing of MB, seeders and date/time is error-prone and shows "XX Y" (eg. "68 2") for some torrents with XX (68) seeders and Y (2) leechers.[BUG] NoMethodError on 'exists?' for nil:NilClass during signup.Develop user deletion procedure, including associations handling.Replaced Rails to_time gem to regular time gem.Module for daily querying of trackers
Search and update trackers; send email to relevant usersDynamically generate emails when new releases are foundUpdate timedate field for notification, to secure only new releases are searched
Generate email template
Switch to PostgreSQLAnalyze relevance of converting DB and app time stamps to ISO8601.Test Nokogiri replacements Ox and Oga [Partially done - updater module uses Oga]Replaced Rails gems with pure Ruby methods.Add Procfile and config.ruDeploy alpha version to production environmentSwitch to SSLImplement secure cookies
###Ideas for 2.0
- Port PushTorrent to Volt?
- When do instance variables 'die'? Trying to understand the memory usage of Ruby apps...
- Is it worth it to manually set an instance variable = nil, when no longer in use? Or will Ruby GC do it for me?
- Why is GC for symbols great? Should I use symbols more and thereby, as a consequence, optimize the memory usage of the app?
- Will performance and memory utilization improve by replacing Nokogiri with Ox, Oga or even Curb, in terms of installed gems alone? Not focucing on the performance of the individual gems (Nokogori vs Ox parsing, for instance), but the number, dependencies and size of installed gems.
- Is it necessary to implement something akin to referential integrity for foreign keys in Sequel? Have done check and delete on "zero associations" in Sequel for now.