diff --git a/app/controllers/aspects_controller.rb b/app/controllers/aspects_controller.rb
index 2cb295f2135cd2b853f2402499d40325ab24370e..d5962614bb57db8450d74a42ecf1dfc3b358ab7f 100644
--- a/app/controllers/aspects_controller.rb
+++ b/app/controllers/aspects_controller.rb
@@ -47,7 +47,7 @@ class AspectsController < ApplicationController
 
   def show
     @aspect = current_user.aspect_by_id params[:id]
-    @friends_not_in_aspect = current_user.friends_not_in_aspect(@aspect)
+    @friends_not_in_aspect = current_user.friends #current_user.friends_not_in_aspect(@aspect)
     unless @aspect
       render :file => "#{Rails.root}/public/404.html", :layout => false, :status => 404
     else
diff --git a/app/views/users/getting_started.html.haml b/app/views/users/getting_started.html.haml
index da1b6c40fb18add121d4027165ab0867026d7c34..5edb3e67a0c4aff5951ca7e40258218a8a526580 100644
--- a/app/views/users/getting_started.html.haml
+++ b/app/views/users/getting_started.html.haml
@@ -3,18 +3,29 @@
 -#   the COPYRIGHT file.
 
 
-- if current_user.getting_started == true
+- content_for :head do
   :javascript
-    $("#getting_started_skip").live("click", function(evt){
-      evt.preventDefault();
-      $.ajax({
-        type: "PUT",
-        url: "/users/#{current_user.id}",
-        data: {"user":{"getting_started":'false'}},
-        success: function() { window.location = "#{root_path}"}
-      })
+    $("#new_aspect").live("ajax:success", function(data,stat,xhr){
+      window.location.reload();
     });
 
+    $(".aspects li").find(".delete").live("click", function(){
+      var aspectElement = $(this).parent("li");
+      aspectElement.fadeOut(300, function(){aspectElement.remove();});
+    });
+    
+  - if current_user.getting_started == true
+    :javascript
+      $("#getting_started_skip").live("click", function(evt){
+        evt.preventDefault();
+        $.ajax({
+          type: "PUT",
+          url: "/users/#{current_user.id}",
+          data: {"user":{"getting_started":'false'}},
+          success: function() { window.location = "#{root_path}"}
+        })
+      });
+
 .span-8.append-1.last
   %h1{:style => "text-align:right;"}
     = "Welcome to Diaspora!"
diff --git a/app/views/users/getting_started/_step_2.html.haml b/app/views/users/getting_started/_step_2.html.haml
index 503ab8f5f2f9c1a4e5b3ce26ebcbf8d0b72cf0c8..3935cd76085a3e019738eb84014f32a108ebeac2 100644
--- a/app/views/users/getting_started/_step_2.html.haml
+++ b/app/views/users/getting_started/_step_2.html.haml
@@ -10,7 +10,7 @@
 
 %h4
   Aspect name
-  - form_for Aspect.new, :remote => true do |aspect|
+  - form_for Aspect.new, :remote => true, :format => :json do |aspect|
     = aspect.text_field :name, :style => "display:inline;"
     = aspect.submit "Add"
 
diff --git a/public/stylesheets/sass/application.sass b/public/stylesheets/sass/application.sass
index 61794ba0f103ed75cfd9b48b226b74c150958541..03cdcabf5a2a469e2e2a835167e57e3a9dd49af0 100644
--- a/public/stylesheets/sass/application.sass
+++ b/public/stylesheets/sass/application.sass
@@ -1355,3 +1355,9 @@ ul.aspects
   :position absolute
   :left 12px
   :bottom 12px
+
+#user_photo_uploader
+  .avatar
+    :border-radius 5px
+    :height 100px
+    :width 100px