This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
# Server name being used (exact name, wildcards or regular expression) | |
server_name mysite.com; | |
client_max_body_size 20M; | |
# Document root, make sure this points to your Symfony2 /web directory | |
root /home/user/sites/mysite.com/web; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Import any playlist (within the script) to Google Music All Access playlist. | |
# | |
# Based on Tim Hutt's script: | |
# https://gist.github.com/Timmmm/6572592 | |
# | |
# Instructions: | |
# 1. Write the playlist down to the file | |
# 2. Install `gmusicapi` using `pip`: `pip install gmusicapi` |