Generate CSV of Google Music Playlist

I recently switched my music vendor from Google Music to Spotify. To avoid manually searching for each song, I semi-automized the transition as follows.

1. Generate a CSV (artist, title) from your Google Music Playlist. Zoom your window out all the way (querySelectorAll will only load a static list of currently active rows).

// Run in Chrome's Developer Tools Console: Crtl+Shift+I
var playlist = document.querySelectorAll('.song-table tr.song-row');
for(var i =0; i<playlist.length ; i++) { 
  var l = playlist[i]; 
  var title = l.querySelectorAll('td[data-col="title"] .content')[0].textContent;
  var artist = l.querySelectorAll('td[data-col="artist"] .content')[0].textContent;
  console.log(artist.replace(","," ") + ',' + title.replace(","," ")); //take out "," to clean up CSV
}

Scroll and rerun until you have all entries.

2. Open your CSV in vim to remove the VM290:8 at the end of each entry. For example:
Clamavi De Profundis,Far Over the Misty Mountains Cold VM290:8

:%s/.{8}//

Now you have a CSV file of arists, titles to do with what you wish.
To proceed with migrating this playlist to Spotify specifically, continue to steps 3 & 4.

3. Copy/paste into Ivy.

4. Paste Ivy results into desired playlist.

How to: Learn a New Discipline

tl;dr In order to build your knowledge base, start with a question you want answered and work back from it.

Competence in many skills > the mastery of only 1 skill.

Competency in a skill leads you to recognize beautiful executions of the skill; this gives you the power to appreciate the beauty hidden in the world around you.

Example: If you study the art of trombone playing, you are more likely to appreciate the talent of a street musician that is playing high notes with rich timbre.

Wide-spread knowledge in both art and STEM reveals connections between seemingly unrelated concepts; connections that others do not see. These connections often lead to valuable and creative solutions. Overspecialization is dangerous.

Fostering your competency in many fields
\(\rightarrow\) wide-spread aesthetic appreciation
\(\rightarrow\) being a connoisseur of life.

Complement mere competency by studying a few select topics in enough depth to appreciate their deeper beauty and underlying simplicity.

How, you might ask, do you achieve competency in many disciplines?
Would you like to learn [physics||maths||…], but have no idea where to start?

0. Start with a question that you want answered and work back from it.

This is an effective way to enjoyably learn any field!

Once you have an interesting question to motivate you and esoteric terms to guide your reverse-engineering, you have the motivation and a plan to build your knowledge base.

1. Get excited.

After your burning curiosity pushes you past the give-a-damn point, you give a damn about the basics of the fields that hold the answer to your question.

Having this excitement transforms the drudgery of simply-worded beginner books into a treasure hunt for the missing puzzle pieces you need to understand your interesting question!

2. Explain what you’ve learned.

Explain concepts to yourself &| to those willing to listen

Understanding of a concept and the ability to explain the concept well go hand in hand. Explaining what you’ve learned will reveal the holes in your knowledge base that might otherwise go undetected! Fill these holes.

Thank you, Matthew Lynn, for leading our interesting discussion to cover this topic!

Too Many Ideas: Avoiding “Ooh Shiny” Syndrome

It is often the affliction of creative people that we have too many ideas and think of time as our most precious resource.

The solution?

0. Mission-Based Motivation

Reframing your situation is the key to making work play. Convincing yourself that your current project is “shiny” can be done by finding the one answer to Why are you doing what you do? [Ryan Lelek].

This must be one answer: what’s yours?

{Some examples to get you started: To make an impact? To learn? To innovate? To solve an unsolved puzzle?}

1. Write It Down

Leaving half-finished unconnected ideas in your mental cache detracts from your usable RAM. The fear that your new idea will be lost will pollute your focus on completing your current project.

I personally keep 4 notebooks:

  1. Main composition book for brainstorming.
  2. Personal journal in a plain text document.
  3. Pocket sized Field Notes book for ideas that occur at inconvenient times.
  4. Todos in workflowy.com

Free yourself from fear, and add to cached ideas when you have improvements. It is an amazing feeling to search through an old notebook and find that you’ve already worked out the answer to a current problem!

2. Set False Deadlines

We feel the need to autograph our work with excellence, which leads us to waste our time on insignificant details and feeling like our work is never fully completed (even if it is by other’s standards).

As Donald Knuth says, “The root of all evil is premature optimization.”

For drawing, I set a time limit of 2.5 hours. I set a time limit of May 3rd to submit my nonprovisional patent on my latest wheelchair modules.

These artificial deadlines allow you to feel like you’ve “finished” a project to the best of your ability, and move on to fully devote yourself to the next project.

Worry not, my friends. These 3 large changes may take time to become integrated into the busy lifestyle of an active creative.

However, that hard work is worth it! I’ve found that implementing these 3 changes allows me to satisfy my obsessive drive to finish what I’ve started whilst laying the groundwork for my future projects.

Hopefully, they will also help you!