What SOPA and PIPA are at face value and what they could end up enabling.
What SOPA and PIPA are at face value and what they could end up enabling.
I was a little disappointed at first when I learned that I could not have more than 1 mobile device playing songs via Spotify, just the way I can do with Netflix. There are instances where my son wants to listen at home while I want to do the same at work. He is too young to have his own account and it is not worth paying another $10/month for just having him play whenever he wants to, in my opinion.
Luckily, there is a way to work it around. Offline playlists. But you need to follow additional steps:
I have not tried it with 3 or 4 devices, but the process should be similar. Spotify Premium supports up to 3 devices in offline mode (and the PC or laptop being the fourth in “Online” mode).
I love Spotify. in fact I use it on a daily basis. My wife and son use it every now an then, mostly through an Android Smartphone.
Lately, I’ve been hit with a flaw that Spotify needs to address: deleted playlists. Granted, they happened maybe because my son inadvertently deleted them. The fact is, once you delete a playlist, all songs are gone.
There is a way to get it back if you use Spotify on more than 1 PC or laptop:
There are other ways to restore playlists but unfortunately didn’t apply to me as I have around 50 of them. Not easy to spot the file name of the missing playlist.
Lesson learned: I will always keep more than 1 device synchronized to Spotify.
Wanted to share a quick post. Since Thursday of this week, Spotify service has been acting up and is not able to stream on Onkyo receivers that support it.
I got a TX-NR609 which was working beautifully. I have been contacting @Spotify and @Onkyo_USA via twitter with no avail yet.
Let’s see how long they take before fixing it.
Update 09.21.2011:
Onkyo gave signs of being aware of the situation yesterday on their Facebook Page. Today I got a reply back from Spotify and they informed that they are looking at the issue currently. Spotify referred me to open a support ticket with Onkyo as they are the ones that developed the app.
Support ticket links:
Update 09.22.2011:
Onkyo posted on their Facebook Page. They are working with Spotify to resolve the issue.
Update 09.23.2011:
Service seems to be fixed. It is working correctly on my receiver.
Update 09.27.2011:
Got this email confirmation today:
Hi!
We have completed the investigation: due to a configuration error, ONKYO users were unable to stream music from the Spotify servers.
The problem has been fixed and everything is now back and running!
And to alleviate the problem temporarily we needed to bounce the instance and clear up the temp database files.
But luckily there is a patch.
More information provided in this article.
We also needed to disable the Read Committed Snapshot Isolation Level in order to keep the growth under control. More information about it this article.
Offending query:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | SELECT HOST.NAME AS HOST, VOLUME.HOST_ID AS HOST_ENTITY_ID, CASE VOLUME_TYPE.TYPE WHEN 'parallelScsi' THEN CAST(VOLUME_TYPE.HOST_ID AS VARCHAR(255)) + '-' + VOLUME.UUID WHEN 'block' THEN CAST(VOLUME_TYPE.HOST_ID AS VARCHAR(255)) + '-' + VOLUME.UUID ELSE VOLUME.UUID END AS ENTITY_ID, VOLUME.CANONICAL_NAME, VPX_PSA_PATH.LUN_NUMBER, VPX_HOST_BUS_ADAPTER.DEVICE_VAL + ':C' + CAST(VPX_PSA_PATH.CHANNEL_NUMBER AS VARCHAR(3))+ ':T' + CAST(VPX_PSA_PATH.TARGET_NUMBER AS VARCHAR(3)) + ':L' + CAST (VPX_PSA_PATH.LUN_NUMBER AS VARCHAR(3)) AS RUNTIME_NAME, VOLUME.DISPLAY_NAME AS NAME FROM VPX_SCSI_LUN VOLUME INNER JOIN VPX_ENTITY HOST ON VOLUME.HOST_ID = HOST.ID INNER JOIN VPX_PSA_DEVICE DEVICE ON VOLUME.KEY_VAL = DEVICE.LINK_KEY INNER JOIN VPX_PSA_PATH ON VPX_PSA_PATH.SCSI_LUN_ID = DEVICE.ID INNER JOIN (SELECT DISTINCT VPX_PSA_PATH.HOST_ID AS HOST_ID, SCSI_LUN.UUID AS UUID, CASE HOST_BUS_ADAPTER.VPX_TYPE WHEN N'vim.host.ParallelScsiHba' THEN 'parallelScsi' WHEN N'vim.host.FibreChannelHba' THEN 'fc' WHEN N'vim.host.InternetScsiHba' THEN 'iscsi' ELSE 'block' END AS TYPE FROM VPX_PSA_PATH, (SELECT VPX_SCSI_LUN.UUID AS UUID, VPX_PSA_DEVICE.KEY_VAL AS KEY_VAL FROM VPX_PSA_DEVICE, VPX_SCSI_LUN WHERE VPX_PSA_DEVICE.LINK_KEY = VPX_SCSI_LUN.KEY_VAL) SCSI_LUN, (SELECT VPX_HOST_BUS_ADAPTER.VPX_TYPE AS VPX_TYPE, VPX_PSA_ADAPTER.KEY_VAL AS KEY_VAL, VPX_PSA_ADAPTER.HOST_ID AS HOST_ID FROM VPX_PSA_ADAPTER, VPX_HOST_BUS_ADAPTER WHERE VPX_PSA_ADAPTER.HOST_ID = VPX_HOST_BUS_ADAPTER.HOST_ID AND VPX_PSA_ADAPTER.LINK_KEY = VPX_HOST_BUS_ADAPTER.KEY_VAL) HOST_BUS_ADAPTER WHERE VPX_PSA_PATH.LUN_LINK_KEY = SCSI_LUN.KEY_VAL AND VPX_PSA_PATH.ADAPTER_LINK_KEY = HOST_BUS_ADAPTER.KEY_VAL AND VPX_PSA_PATH.HOST_ID = HOST_BUS_ADAPTER.HOST_ID) VOLUME_TYPE ON HOST.ID = VOLUME_TYPE.HOST_ID AND VOLUME.UUID = VOLUME_TYPE.UUID, VPX_HOST_BUS_ADAPTER, VPX_PSA_ADAPTER WHERE (HOST.TYPE_ID = '1') AND (VPX_PSA_PATH.ADAPTER_LINK_KEY = VPX_PSA_ADAPTER.KEY_VAL AND VPX_PSA_PATH.HOST_ID = VPX_PSA_ADAPTER.HOST_ID AND VPX_PSA_ADAPTER.LINK_KEY = VPX_HOST_BUS_ADAPTER.KEY_VAL AND VPX_PSA_ADAPTER.HOST_ID = VPX_HOST_BUS_ADAPTER.HOST_ID) AND VOLUME.LUN_TYPE='disk' ORDER BY HOST_ENTITY_ID, ENTITY_ID, RUNTIME_NAME |