DEV Community

Kurt Frey
Kurt Frey

Posted on • Updated on

Adding Spotify's missing features and learning about JS, (S)CSS, PHP, APIs, Skeuomorphic Design and Documentation

This is the TL;DR section of a much - much!! - longer article over on my dev-blog. Feel free to visit the original article.

When suddenly songs in my Spotify playlists were not available anymore but an alternative version (remastered album, best-of album) could still be found, I had to add a missing feature to Spotify.

My software would find "unavailable" tracks and search for alternatives. The user could then add one of the search results to a "revived" playlist.

In the process of writing the software, I learned a lot about writing software in a very general term but also about language-specific topics, benefits of IDEs and how to design user interfaces.

  1. I added a huge amount of comments to my code, documenting how things are done and what the code does. This does not only help myself when I review the code later on but also contributors who want to improve my software.

  2. Knowing how paralyzing it can be when there are no responses to your questions confirmed me in my thinking that communication with other developers is a crucial tool to make your software accessible to more users.

  3. During the process of making the application I learned about new aspects of languages familiar to me. Those aspects included type hinting in PHP, adding event listeners and dispatching events in JavaScript.

  4. Writing JavaScript code without frameworks proved to be simple. Of course frameworks like jQuery simplify some tasks but is it worth all the required bandwidth?

  5. Type hinting is a great tool to improve the readability of code.

  6. Sass enables a developer to easily prototype the design of a software because of variables.

  7. Skeuomorphic design is harder (but in my opinion more beautiful when done right) and requires you to think about your design more.

  8. Release early or you might not release at all.

Top comments (2)

Collapse
 
rafalpienkowski profile image
Rafal Pienkowski

Link to the orginal article is broken.

Collapse
 
nitricware profile image
Kurt Frey

Thanks for the heads up! I fixed it!