[Friend Feed] Ability to create & choose lists of people / artists

I would really like to see some improvements on the mini feed. Maybe allow users to make "lists" to organize who's listening to what.  One list could be for bands, or could go even more specific - rock bands, indie bands, boy bands, singer/song writer, top 100 etc. Then there could be lists for personal friends - high school friends, college friends, co-workers, etc. I know I would like this type of organization, that way I can set which group of people I want to see the feed from that day. I find that my mini feed is always showing the same people even though I follow way more.

I agree! I am interested in activity from all of my followed friends, but some more so than others. It would be great to have a favourites list so I can make sure I don't miss activity from those particular friends. I would like to be able to switch between different lists too, so I could change between viewing activity from my favourites and viewing activity from any friends who were online most recently. When I click on Activity, I can only see four posts relating to one friend, and two posts from two artists. This is not very helpful; I am not really sure how to view more activity from other friends and artists without actually visiting each profile individually. I'm also really unclear about how to interact with people on Spotify. I have found the "sharing" music option, but is that the only way of interacting?

Similar Messages

  • [Desktop][Friend Feed] Ability to "Like" and comment on what others are listening too

    Whenever I am on Spotify, I always see what my friends are listening to on the feed in the right column. Sometimes I'm like "I just started listening to that band too!" or "You love that band? Me too! They're having a show soon and we should go!" I get excited that I can relate to what my friends are listening to and I want to let them know that I dig what they like.  In those situations I would love to be able to "Like" or thumbs their music quickly from the side column feed and even comment on it. It would also be cool to "like" people's playlists on their profiles.  I think a feature like this would be simple to include and offer a lot more connectivity in the way people listen to music on Spotify. After all, music insn't always an individual experience. It's meant to bring people together. A feature like this would make listening to music a communal experience that I believe would make music more pleasurable and exciting for everyone. If people are excited about the music they and their friends are listening too, they will want to listen to more of it, increasing Spotify subscribers. 

    Updated: 2015-07-02Hello and thanks for the feedback!
    Similar ideas have also been suggested here:
    https://community.spotify.com/t5/Live-Ideas/Like-friends-songs/idi-p/594410 and
    https://community.spotify.com/t5/Live-Ideas/Desktop-Friends-Feed-Comment-on-songs-being-listened-by-friends/idi-p/1076590
    Add your kudos and comments there please! ;)

  • How to create a list of people you haven't emailed in 6 months?

    Wondering if anyone can help me out or point me in the right direction to accomplish the following:
    +Generate a list of all Contacts in AddressBook who have not received an email from me in the last 6 months.+
    Is it possible to do a search across two programs like this? I guess I want to analyze the "sent" mail field in Apple Mail and return Contacts from AddressBook.
    Thanks.

    definitely possible with apple script. ask in the [Applescript forum|http://discussions.apple.com/forum.jspa?forumID=724]. Somebody there might be willing to put in the effort of writing the script for you.

  • Is it possible to create a list using the addresses in the "TO" list from a received email?

    I have a very large group I'd like to create an email list for. I don't want to have to search in my address book for every address that needs to go into it. Is there away that I can use an email that I've received which has been sent to every member I want in the list - all are listed in the "To" portion of the header - and create a list from those addresses? Thanks.

    I know how to do that. I don't want to have to take the time to search through the gazillion addresses in my address book to find each one and then drag or type them into the list. My question was is there away to have all the addresses in the "To" field used to create a list by - for instance - somehow selecting all of these addresses and saying create a list from them. Or clicking on an option that would give me the ability to create a list from all the addresses in the "To" field of a specific email. Thanks.

  • Create New List Item

    I am getting an error each time I try to run this code and get the error message "There was a problem submitting your answers. Please try again later."I have looked at this for so long now I am not sure if I am missing something or what. I have referenced SPServices and jquery and it is working correctlyI am trying to make a crossword using some code I found online and I followed it andstill get this error. // Create an object to associate each SharePoint column with the class name used for the input and the user's response for that column
    var responses = {
    "oneAcross": {
    "selector": "one-across",
    "column": "OneAcross",
    "answer": ""
    "oneDown": {
    "selector": "one-down",
    "column": "OneDown",
    "answer": ""
    "twoDown": {
    "selector": "two-down",
    "column": "TwoDown",
    "answer": ""
    "threeDown": {
    "selector": "three-down",
    "column": "ThreeDown",
    "answer": ""
    "fourAcross": {
    "selector": "four-across",
    "column": "FourAcross",
    "answer": ""
    // Create the batchCmd variable that will be used to create the new list item
    var batchCmd = '<Batch OnError="Continue"><Method ID="1" Cmd="New">';
    // Concatenate values of each response input by iterating over the object representing the responses
    $.each( responses, function() {
    // Cache the current item in the responses object.
    var $response = this;
    // For each input in the crossword associated with the current response object, get the values and save them in the answer property.
    $( '.' + $response.selector ).each( function() {
    $response.answer += $( this ).val().toLowerCase();
    // Add the response to the batchCmd
    batchCmd += '<Field Name="' + $response.column + '"><![CDATA[' + $response.answer + ']]></Field>';//Create a new list item on the destination list using the batchCmd variable
    $().SPServices({
    operation: "UpdateListItems",
    async: true,
    webURL: "http://operations.home.blah.com/sites/EIS/SEEIS/SSC/Lists/",
    listName: "Crossword",
    updates: batchCmd,
    completefunc: function( xData, Status ) {
    // If the AJAX call could not be completed, alert the user or include your own code to handle errors.
    if ( Status !== "success" ) {
    alert( "There was a problem submitting your answers. Please try again later." );
    else {
    // If there was an error creating the list item, alert the user or include your own code to handle errors.
    if ( $( xData.responseXML ).find( 'ErrorCode' ).text() !== "0x00000000" ) {
    alert( "There was a problem submitting your answers. Please try again later." );
    // if the list item was successfully created, alert the user and navigate to the Source parameter in the URL (or to a URL of your choosing).
    else {
    alert( "Your answers were submitted successfully! Click OK to continue." );
    if ( window.location.href.indexOf( "Source=" ) !== -1 ) {
    var url = window.location.href.split( "Source=" )[1].split( "&" )[0];
    window.location.href = url;
    else {
    window.location.href = "/";

    When I look at the demo on the page it fires the same response as that is part of the error handling because it is a standalone HTML and not on a sharepoint server so I am wondering if something I am missing on the submit.click function or batchcmd. 
    I included the entire code for it to see if maybe you can see something I am not.  My crossword is on a Sharepoint Server
    $( '#crossword-submit' ).click( function( event ) {
    // If you decide to use a hyperlink instead of a button input, this will prevent
    //the hyperlink from actually navigating away from the page or to an anchor.
    event.preventDefault();
    // Disable the button so the user can't click it again and submit the answers more than once.
    $( this ).prop( 'disabled', true );
    // Prevent submission if the crossword isn't completed.
    if ( $( '#crossword' ).find( 'input' ).filter( function() { return $( this ).val() === ""; }).length !== 0 ) {
    alert( "You have left some answers blank. Please complete all answers before submitting." );
    $( this ).removeProp( 'disabled' );
    return false;
    // Confirm that the user wants to submit their answers.
    var confirmResponse = confirm( "Are you sure you are ready to submit your answers? Once submitted they cannot be changed.\n\nClick OK to continue or Cancel to review your answers." );
    if ( confirmResponse === false ) {
    $( this ).removeProp( 'disabled' );
    return false;
    // Create an object to associate each SharePoint column with the class name used for the input and the user's response for that column
    var responses = {
    "oneAcross": {
    "selector": "one-across",
    "column": "OneAcross",
    "answer": ""
    "oneDown": {
    "selector": "one-down",
    "column": "OneDown",
    "answer": ""
    "twoDown": {
    "selector": "two-down",
    "column": "TwoDown",
    "answer": ""
    "threeDown": {
    "selector": "three-down",
    "column": "ThreeDown",
    "answer": ""
    "fiveDown": {
    "selector": "five-down",
    "column": "FiveDown",
    "answer": ""
    "sixDown": {
    "selector": "six-down",
    "column": "SixDown",
    "answer": ""
    "sevenDown": {
    "selector": "seven-down",
    "column": "SevenDown",
    "answer": ""
    "eightDown": {
    "selector": "eight-down",
    "column": "EightDown",
    "answer": ""
    "fourAcross": {
    "selector": "four-across",
    "column": "FourAcross",
    "answer": ""
    "nineAcross": {
    "selector": "nine-across",
    "column": "NineAcross",
    "answer": ""
    "tenAcross": {
    "selector": "ten-across",
    "column": "TenAcross",
    "answer": ""
    "elevenAcross": {
    "selector": "eleven-across",
    "column": "ElevenAcross",
    "answer": ""
    "twelveAcross": {
    "selector": "twelve-across",
    "column": "TwelveAcross",
    "answer": ""
    // Create the batchCmd variable that will be used to create the new list item
    var batchCmd = '<Batch OnError="Continue"><Method ID="1" Cmd="New">';
    // Concatenate values of each response input by iterating over the object representing the responses
    $.each( responses, function() {
    // Cache the current item in the responses object.
    var $response = this;
    // For each input in the crossword associated with the current response object
    //, get the values and save them in the answer property.
    $( '.' + $response.selector ).each( function() {
    $response.answer += $( this ).val().toLowerCase();
    // Add the response to the batchCmd
    batchCmd += '<Field Name="' + $response.column + '"><![CDATA[' + $response.answer + ']]></Field>';
    // Close the batchCmd variable
    batchCmd += '</Method></Batch>';
    // Create a new list item on the destination list using the batchCmd variable
    $().SPServices({
    operation: "UpdateListItems",
    async: true,
    webURL: "http://operations.homestead.abc.com/sites/EIS/SEEIS/SSC/Lists/",
    listName: "Crossword",
    updates: batchCmd,
    completefunc: function( xData, Status ) {
    // If the AJAX call could not be completed, alert the user or include your own code to handle errors.
    if ( Status !== "success" ) {
    alert( "There was a problem submitting your answers. Please try again later." );
    else {
    // If there was an error creating the list item, alert the user or include your own code to handle errors.
    if ( $( xData.responseXML ).find( 'ErrorCode' ).text() !== "0x00000000" ) {
    alert( "There was a problem submitting your answers. Please try again later." );
    // if the list item was successfully created, alert the user and navigate
    //to the Source parameter in the URL (or to a URL of your choosing).
    else {
    alert( "Your answers were submitted successfully! Click OK to continue." );
    if ( window.location.href.indexOf( "Source=" ) !== -1 ) {
    var url = window.location.href.split( "Source=" )[1].split( "&" )[0];
    window.location.href = url;
    else {
    window.location.href = "/";
    </script>

  • How to create a list of value using date?

    We need to create a list on a report. The list consists of date. I have tried several times, but no luck.

    Hi Charles,
    I guess you have a user-parameter in your report and you need to define the LoV for the user parameter, so that the user can select from the LoV. In such a case you get REP-0782 if the datatype of column does not match the LoV of the parameter. Eg, if you have a query like
    select * from employees where hire_date < :p_hire_date
    And you want to build an LoV for hire_date, do the following:
    1. Go to your user parameter > Property Inspector > Datatype > select "Date". If you select Character or Number, you will get REP-0782.
    2. Now double click List of Values, choose "Select Statement" and type something like
    select distinct hire_date from employees order by hire_date asc
    If you don't want to use a Select Statement to build the LoV, you can write a static list of values, and even in this case Step 2 above should avoid the error REP-0782.
    Navneet.

  • ITunes 11.1 and / or the Podcast app on iOS 7 will not allow me to create play lists in iTunes. Is there an app that will allow me to create podcast plays lists and play them on the iPhone running iOS7 ?

    iOS 7 will not alow podcasts lists in the music app so we have to use the podcast app
    but iTunes 11.1 and / or the Podcast app on iOS 7 will not show podcast play lists created in iTunes (well maybe it does but clicking on the podcasts app causes iTunes to freeze so can not select)
    sometime some folders created in iTunes have appeared with the Podcast app but others not.
    creating an on the go list in my iphone is agony - I have over 100 podcasts I have subscribed to and when creating a list you can not view by most recently downloadded podcast
    AND you can't search (no search bar) so I have to scroll through to find a podcast that might have been updated - but they are not in any logocal order that I can work out (not alphbetical or date added).
    Video podcasts are mixed with audio
    podcasts I delete (unsubscribe to) keep coming back
    its a disaster
    my question is there an alternative iPhone app that works with iTunes
    no I don't want an app where I have to download to the phone directly, thats 100 subscriptions I will have to make agaian

    Agree about the disaster part. I haven't found a fix within iTunes.
    I gave up and switched to downcast 2 days ago. Even though it was a hassle to re-subscribe to all my podcasts, im so much happier.
    To make switching easier, I found that in iTunes you can "get info" on the podcast and copy the RSS address to the clipboard. Put all of these in a message note. When iCloud syncs the note to your phone, you can copy and paste the urls into downcast one at a time to subscribe.
    Downcast has crashed on me occassionally when I'm subscribing to feeds, but so far it has recovered gracefully each time and no data was lost.

  • How do I create a list which compiles data from all lists on the sharepoint?

    I have many pages to my sharepoint which all have separate task lists. On my overview page I want to create a list so that all the tasks and data inputted into the other task lists on the site are compiled together in one list. This way I have a long list
    of tasks in one place, without going to each list. How would I do this?
    Thanks!

    Hi,
    Based on your description, my understanding is that you want to collect all the task items on a site to one task list.
    For accomplishing your request, you can create a Reusable Workflow.
    Open your site with SharePoint Designer 2013->create a Reusable Workflow named task, choose 2010 platform and Task content type->choose Copy List Item Action->Copy current item to you target task list.
    Then in every task list, create a workflow based on the new reusable workflow.
    Besides, you can use Project Summary web part or Content Search web part to accomplish collecting all task items.
    If there still exist some problems, Please feel free to let me know.
    Best Regards,
    Lisa Chen

  • How to create the list box in the selection screen.

    hai friends..
    i want to create the list box for the selection screen input boxes.
    thanks,
    velu.

    hi..
    1. There are two important things :
    a)PARAMETERS : a(10) TYPE c AS LISTBOX VISIBLE LENGTH 10.
    b) Fm VRM_SET_VALUES
    2. just copy paste
    3.
    REPORT abc.
    TYPE-POOLS : vrm.
    DATA : v TYPE vrm_values.
    DATA : vw LIKE LINE OF v.
    PARAMETERS : a(10) TYPE c AS LISTBOX VISIBLE LENGTH 10.
    INITIALIZATION.
    vw-key = '1'.
    vw-text = 'Jan'.
    APPEND vw TO v.
    vw-key = '2'.
    vw-text = 'Feb'.
    APPEND vw TO v.
    vw-key = '3'.
    vw-text = 'Mar'.
    APPEND vw TO v.
    CALL FUNCTION 'VRM_SET_VALUES'
    EXPORTING
    id = 'A'
    values = v
    EXCEPTIONS
    id_illegal_name = 1
    OTHERS = 2.
    regards,
    veeresh

  • How to create Vendor list in SRM

    Hi GURU's,
    I am new to SRM. I have worked on other modules but no idea qbout SRM.
    I have been a requirement to create vendor list in SRM - need to find BAPI for it.
    Can any one please help me.

    SAP Help can be a good friend:
    http://help.sap.com/saphelp_srm50/helpdata/en/d5/849b3cc34ca10ee10000000a11405a/content.htm
    Cheers,
    Claudia

  • Integration Builder - runtime data cache - Error when creating cache list

    All,
    When I go into the Integration Builder --> Administration --> Runtime tab --> Data Cache
    I get a message saying "Error when creating cache list".
    All cache areas look ok and I do not see any other error.
    Also, RFC INTEGRATION_DIRECTORY_HMI looks good.
    Please advise.
    Thanks a lot.

    Hi,
      Use transaction SXI_CACHE to update the Integration Directory cache. Alternatively, you can use the following URLs to update the CPA cache. Use XIDIRUSER to refresh the cache.
    For complete cache refresh u2013 http://<hostname>:<port>/CPACache/refresh?mode=full
    For delta cache refresh u2013 http://<hostname>:<port>/CPACache/refresh?mode=delta
    If this does not solve the issue, check transaction SLDCHECK to ensure that connection to SLD is available. If the connection fails, check the configuration in the transaction SLDAPICUST. Make sure that the password maintained is correct and the maintained service user is not locked.
    Now in the Integration Repository go to Environment u2192 Clear SLD Data Cache. Also go to Integration Directoy and clear the cache using menu Environment u2192 Clear SLD Data Cache.
    Open the XI Start Page and click on Administration. On the Repository tab, choose Cache Overview. Refresh the cache using the buttons/icons on the right. Use XIDIRUSER to refresh the cache. Carry out cache refresh in the same way on the Directory and Runtime tabs.
    regards,
    ganesh.

  • Creating Distribution List in CRM 2007

    Hiya
    Could somebody please help, is there a way to create Distribution List in CRM for a list of emails, contact from the contacts list.
    Thanks in anticipation.
    Regards
    Ranjeet

    Hello Ranjeet
    Transaction code SO23
    X Shared distribution lists
    Name : ZXXXX
    Title : XXXXX Mail Distribution
    Don't enter anything in the Folder field.
    Folder : Click the down arrow
    Next screen :
    Folder Name : ZXXXX
    Folder Title : Mailing address
    Folder Area : Shared
    Click Create Folder
    Next screen :
    Indexing : Tick
    Specify the 'Retention period of a document in this folder (days)'.
    Choose the 'Folder access authorization'.
    Finish, click the Enter button.
    Click the tabstrips 'Distri. list content' to type in your mailing list.
    Save your entries.
    Finally, test it by sending a mail via the distribution list ZXXXX.
    Regards
    Shikha

  • Create dynamic list (DHTML list) with parent child

    Hi,
    I am new to APEX.
    I have manually created DHTML list using lists in APEX. I want to create it dynamically using tables.
    I tried but not worked for me.
    i choose DHTML list because i want it in (+) sign when click on it all sub list entries should be displayed
    and also wanted to create something like when user click on one particular sub entry it should be saved in database
    with other fields of table.
    Was just wondering if any one came across this sort of query or design.
    Thanks in Advance
    Regards,
    Digisha

    >>
    plz help me to make this page work with ajax
    >>
    the form page you mean, right ? well, even if I could provide
    a solution
    (ajax respectively the CS3 spry stuff is rather new to me right
    now), this wouldn´t make sense to the form page anyway,
    because, after performing an insert/update/delete transaction, ADDT
    will always redirect to another page
    (your list probably) you specified when setting up the form.
    ADDT lists and forms are by default separated, and there is
    no mechanism provided to have both functionalities available on the
    same page -- it´s that what you meant ?

  • How to create Invoice list??

    Hi guyz,
    could you please tell me how to create invoice list, i have created sales order, done the delivery,created billing.
    appreciate immediate reply.
    Thanks.
    Mohammed.

    Hi Mohammed,
    To create an invoice list:
    Select the Billing screen.
    Depending on the number of billing documents that you want to include, you can choose one of two ways to create the invoice list. You can either
    · Select Invoice list Create and enter each billing document separately
    · Create a list for all billing documents that are relevant for the invoice list. You can then process the work list for invoice lists.
    This procedure shows you how to create the work list.
    Select Invoice list Edit work list.
    Enter your selection criteria and press ENTER.
    The system displays a list of billing documents that meet your selection criteria.
    Select the billing documents that you want to include in the invoice list and select Invoice list Save.
    You can also simulate creation of invoice lists via the work list for invoice lists. This is useful as a test option. The simulation also allows you to carry out a split analysis, which shows you why billing documents are written to different invoice lists (e.g. due to different payers).
    Prerequisites
    You can only process invoice lists if the following prerequisite data is defined by your system administrator in Customizing for Sales:
    Condition type RL00 (factoring discount) must be maintained and, if required, also the condition type MW15.
    An invoice list type must be assigned to each billing type that you want to process in invoice lists. The standard version of the SAP R/3 System includes two types of invoice lists: LR for invoices and debit memos, LG for credit memos.
    Copying requirements must be defined (for example, the payer, terms of payment and other fields that must be identical in the documents to be included in the invoice list)
    In addition, before you process an invoice list, you must maintain the following master data:
    A customer calendar must be defined, specifying the time intervals or dates on which invoice lists are to be processed.
    The customer calendar must be entered in the Billing Sales Area view of the customer master record.
    Pricing condition records for the condition type RL00 and, if necessary, (e.g. in Germany) the condition type MW15 must be maintained.
    Output condition records for condition types LR00 and RD01 must be created.
    Hope with this info you can do it. Pl. reward if it helps.
    Thanks & Regards
    Sadhu Kishore

  • How to create a list with my need?

    Hi,all
    I want create a list for my several reports,
    The list have all report's name
    when i click one of reports,page submited,
    And list always displayed in the page,no change,
    So if I want submit another report,i neednot return main tab,
    My english is poor ,Wish my expression is clear
    Anyone help me ,very thanks.
    saven

    Hi Saven,
    You can create a list in page 0 as suggested by Jari and choose the display point as you like. Items, regions and other attributes in page 0 works like a master page that can be accessed from any other page.
    Hope this make sense.
    Regards,
    Tajuddin
    web: http://aspblog.whitepagesbd.com

Maybe you are looking for