首页| 登录| 注册| 插件下载| 使用帮助| 意见反馈|
 
 我的首页
 我的资料
 我的列表
 我的标签
 我的好友
 我的粉丝
 网友留言
Web design 简约版
#0
Why Circle of Friends Works in Social Networking
标签: [social network] [Web design]
2007-05-01 07:46:12 摘自 bokardo.com 阅读原文
POST
April 12th, 2007
Why Circle of Friends Works in Social NetworkingThe most popular paradigm for social networking sites is the “circle of friends” paradigm. This is when you connect to people by adding them as a friend, and your connection means that they are prioritized differently than those who are not. There are other paradigms, too. Wikipediamentionsa couple others including “Old Boys Network” (classmates.com) and “Circle of Trust” (epinions).
Although organizing around friends seems like an obvious way to do things, it wasn’t obvious at first and in some cases is still not obvious. Though much of how we think about our own lives is in terms of friends, its still another step to build software that recognizes this and leverages it to make social interaction work. One of the first to do this wasPlanetAll, sold to Amazon in 1998, and was the foundation of the Friends feature there. Up until then many networking sites had tried to connect people who didn’t already know each other…instead of leveraging people who were already friends. Duh, right? Well…hindsight is 20/20…
A great example of this difference is explained in this article aboutFriendsterfounder Jonathan Abrams.What I Learned from Friendster. He explains that what makes his new startup,Socializer, different from other event sites likeeviteis that you can connect to people in a circle-of-friends fashion. In other words, your event information is prioritized differently according to who your friends are. Their events will show up on your calendar and vice-versa.
In some cases (like the professional arena) a circle-of-friends paradigm isn’t going to work. At that point a contacts-based paradigm will be more appropriate. It’s not hard to see how we can map our real life to software, but it does take a certain amount of suspension of disbelief. We have to believe that the system is modeling how things really are, and so using appropriate relationship words helps designers achieve that.
In terms of social networking, however, everyone, at all points in their life, can describe themselves in terms of their friends and organizing information in that way makes perfect sense. That’s why circle-of-friends systems are so prevalent. It works because it is the primary way that we view our social lives. Another reason why they say you can get a good sense of someone by looking at their friends.
If you enjoyed reading this, subscribe to my RSS Feed(you can always unsubscribe later)
详细...
评论(0) | 收藏 | 520位读者
#1
Comic: Content or Design?
标签: [Web design]
2007-05-01 07:31:14 摘自 bokardo.com 阅读原文
WHAT IS SOCIAL DESIGN?
Social designis a subset of design that focuses on the social lives of users. It deals with the activities, behaviors, and motivations of people who work and play together through software interfaces. In the early days of the Web, most sites were read-only, focused on providing information to a single person at a time. Then the Web became read/write, allowing people to save information but still mostly for them acting alone. Now, we're seeing a tremendous amount of social software that allows many people to collaborate and share what they're doing with others. Designing for this social world is
social design, and that's what we're talking about here at Bokardo.
详细...
评论(0) | 收藏 | 486位读者
#2
Web 2.0 Design Kit, Part 2 | Photoshop Lab
标签: [Web design]
2007-04-11 13:06:09 摘自 www.photoshoplab.com 阅读原文
I've found that if you don't put your cursor exactly on the intersection of pixels in photoshop (e.g. so that zoomed in you see 1.00 and 9.00 in the info palette) then you can run into issues with the edges of the rounded rectangles. That said, you absolutely can get perfectly smooth rounded corners using the rounded corners shape with the extra added benefit of it not taking 5 steps ;-)
详细...
评论(0) | 收藏 | 493位读者
#3
10 Good Deeds in Web Design (Alertbox Oct. 1999)
标签: [Web design]
2007-04-11 12:28:43 摘自 www.useit.com 阅读原文
Here's a list of ten additional design elements that will increase the usability of virtually all sites: Place your name and logo on every page and make the logo a link to the home page (except on the home page itself, where the logo should not be a link: never have a link that points right back to the current page). Provide search if the site has more than 100 pages. Write straightforward and simple headlines and page titles that clearly explain what the page is about and that will make sense when read out-of-context in a search engine results listing. Structure the page to facilitate scanning and help users ignore large chunks of the page in a single glance: for example, use grouping and subheadings to break a long list into several smaller units. Instead of cramming everything about a product or topic into a single, infinite page, use hypertext to structure the content space into a starting page that provides an overview and several secondary pages that each focus on a specific topic. The goal is to allow users to avoid wasting time on those subtopics that don't concern them. Use product photos, but avoid cluttered and bloated product family pages with lots of photos. Instead have a small photo on each of the individual product pages and link the photo to one or more bigger ones that show as much detail as users need. This varies depending on type of product. Some products may even need zoomable or rotatable photos, but reserve all such advanced features for the secondary pages. The primary product page must be fast and should be limited to a thumbnail shot. Use relevance-enhanced image reduction when preparing small photos and images: instead of simply resizing the original image to a tiny and unreadable thumbnail, zoom in on the most relevant detail and use a combination of cropping and resizing. Use link titles to provide users with a preview of where each link will take them, before they have clicked on it. Ensure that all important pages
详细...
评论(0) | 收藏 | 467位读者
#4
Web 3.0: When Web Sites Become Web Services
标签: [web] [web service]
2007-03-20 10:53:35 摘自 www.readwriteweb.com 阅读原文
Web Scraping is essentially reverse engineering of HTML pages. It can also be thought of as parsing out chunks of information from a page. Web pages are coded in HTML, which uses a tree-like structure to represent the information. The actual data is mingled with layout and rendering information and is not readily available to a computer. Scrapers are the programs that know how to get the data back from a given HTML page. They work by learning the details of the particular markup and figuring out where the actual data is. For example, in the illustration below the scraper extracts URLs from the del.icio.us page. By applying such a scraper, it is possible to discover what URLs are tagged with any given tag.
详细...
评论(0) | 收藏 | 556位读者
#5
PHP实现MVC开发得最简单的方法——视图及模版技术
标签: [PHP]
2007-03-14 12:09:32 摘自 www.phpobject.net 阅读原文
模版系统原理其实很简单,就是把标签替换成相应的数据。但每个模版系统的实现方式都不完全一样,比如说smarty是编译型的,它第一个是把模版文件编译成相应的php文件,然后以后每次就直接调用编译后的文件,而PHPLIB是解析性的,每次都调用模版使用正则来替换。所以除了第一次smarty相对来说更加快。但是我不觉得使用标签有什么特别得好处。所谓得标签实现美工和程序分类,我认为是扯蛋。对于美工人员来说 {$var}和 有什么区别呢?
详细...
评论(0) | 收藏 | 521位读者
#6
CSS Image Maps - Flickr-like Technique
标签: [css] [Image map]
2007-03-11 06:44:49 摘自 www.frankmanno.com 阅读原文
While this may not be the most ideal solution out there, it certainly expands upon the examples listed above. I absolutely loved Gina's idea, which is why I attempted to expand on it. Unfortunately, with the current limitations of CSS (as well as certain browsers), I wasn't able to fully replicate the exact functionality of Gina's example.
详细...
评论(0) | 收藏 | 528位读者
#7
CSS Creator Tools
标签: [Web design] [CSS. Tool]
2007-03-11 05:58:24 摘自 www.csscreator.com 阅读原文
A simple multi level drop down menu which uses only CSS for most browsers and minimalist JavaScript with CSS for browsers that require an extra hand. A menu color generator helps you style the menu for your site.
详细...
评论(0) | 收藏 | 582位读者
#8
25 Code Snippets for Web Designers (Part1)
标签: [Web design]
2007-03-11 05:50:50 摘自 www.tutorialblog.org 阅读原文
- Here’s a fairly typical vertical bar graph showing a hypothetical set of quarterly data for, say, invoice and collection totals. The difference here is that the whole thing is a simple set of nested lists and CSS. Really.
详细...
评论(0) | 收藏 | 592位读者
#9
Create a full Flash Web site tutorial using Macromedia Flash
标签: [Web design] [flash]
2007-03-11 05:48:47 摘自 www.free-webmaster-resource.com 阅读原文
This tutorial is written for the users that are new to Flash but aren't afraid to learn some new things. You will learn everything you will need to setup your first Full Macromedia Flash Web site, and not just some static looking HTML like page. I want to show all of you that you don't have to be some wizzard to get some nice things going in Flash.
手把手教你如何创建一个纯flash的网站 详细...
评论(0) | 收藏 | 917位读者
读者评论 隐藏

teddy(guanggao2046) 收藏于 2009-01-06 02:37:54
时尚品牌库。包含了受消费者喜欢的阿迪达斯adidas、耐克nike、路易威登lv、古驰gucci(古琦)、香奈儿chanel、迪奥dior、李宁lining、彪马puma、范思哲versace、bench等品牌的打折促销、团购、店铺、品牌故事等信息。
http://brand.zoshow.com/index.html

想发表评论?请先 登录 或者 注册
 推荐给朋友
 您的名字
 您的邮箱 
 朋友的名字
 朋友的邮箱
HOLDEN新近更新的列表
MISC
Other stuffs
Web design
Flash Games
Good Flash Design
Ajax
IT New Products
Travel
Interview
HOLDEN的好友
巫女(beendaisy)
可乐(mm9252)
老黑(vanton)
yOlio(yolio2003)
播求(BOQIU)
我不是我(uzziah)
Sissy(sissy)
水长东(sdlylb)
抽屉(dadac123)
cyber(cyber)
拾荒者的春天(bienaole)
黄靖昀(huangjingyun)
伊伊(sylvia1980)
小没(w_sohu)
上帝之手(xking720)
enkysteady(enkysteady)
骨头网新近更新的列表
招商加盟
2011年考研大纲
社会
dian588xc.com
服装鞋帽
独角兽 摄影
奇异
服务器托管
旅游住宿
培训
 
Copyright © 2006 - 2010 gootou.com 版权所有 沪ICP备06050536   | 服务条款 | 隐私条例 |