Friend Cloud: Identifying Networks and Connections Between Facebook Friends. Ben Fuja and Joey Rich. Programming Paradigms May 12, 2011

Size: px
Start display at page:

Download "Friend Cloud: Identifying Networks and Connections Between Facebook Friends. Ben Fuja and Joey Rich. Programming Paradigms May 12, 2011"

Transcription

1 Friend Cloud: Identifying Networks and Connections Between Facebook Friends Ben Fuja and Joey Rich Programming Paradigms May 12, Abstract Facebook has become a ubiquitous aspect of the social world, and the importance of one s personal life online is quickly catching up with the importance of real world interactions. With such a trend, it is important to have the online sphere mimic as closely as possible the dynamics that exist offline. Friends online can cover a wide range of relationships, but the manual formation of groups that Facebook provides is ineffective and not practical for individuals with hundreds or even thousands of friends. Family, coworkers, and acquaintances are all designated as friends through Facebook, but this umbrella does not address the unique characteristics that separate these networks. The idea for this project was formulated to address this discrepancy between the online and offline social experiences. Through information available through Facebook, the Friend Cloud application effectively identifies these separate networks that share the title of friend. Capabilities were also included to display and manage these networks, so multiple groups could be browsed in an interactive manner and even merged into a single network. The success of this project was evidenced by not only the separation of various friends, but also the accuracy with which these networks reflected real-world relationships and connections. 2 Key Words Facebook: Online social community that provides a forum for friends and associates to interact online. Friend: The term friend in this context is used as a connection between two people on Facebook. Family and coworkers fall under the abstract definition of friend that Facebook has established. Mutual Friend: A Facebook user who connects the social graph of two other Facebook users. Mutual friends are used in our algorithm to decide membership of separate networks.

2 Network: Group of friends that share a common link. Networks in this implementation are created through a common friend amongst all members of the network 3 Introduction The social experience in today s society has shifted to the online theatre. Social networking sites such as Facebook have defied the downfalls of a fad and are instead an established aspect of society that will evolve, as opposed to die out, over coming generations. The wealth of information that is stored on Facebook provides a platform for the development of data-intensive applications. With the permission of a Facebook user, programmers can be granted access to this information and use the groups, communications, and connections to better analyze and sort through the social graph that is at the core of Facebook. Although these connections between friends are readily available to the minds at Facebook, the formation of groups and privacy settings still relies mainly on manual sorting. If a system were implemented by which networks were automatically generated, news and settings could be applied differently in a more user-friendly manner. This project makes use of the huge amounts of data from Facebook to construct appropriate networks amongst your online friends. Over the course of our project, applications such as TouchGraph (touchgraph.com/facebook) and SocialGraph (apps.facebook.com/socgraph) were found to be current projects with the same initiative and purpose as our own. These programs, however, focused more on the connections, themselves, as opposed to the distinct groups that these connections create, which was the original intention of our application. Figure 1: TouchGraph s modeling of Facebook connections [1]

3 4 Usage examples When a user accesses friend-cloud.com, he/she will be greeted by the main screen along with a message prompting the user to log in to their Facebook account. Upon clicking the login button, a Facebook dialog will pop up for the user to enter their Facebook and password. After this dialog, the user will need to grant permission to allow Friend Cloud to access their Facebook profile and information. Figure 2: Dialog to sign in to Facebook account After the user is logged into their Facebook account and granted the proper permissions, Friend Cloud will begin to download the required data from the site. A status bar shows the current progress of the downloading process. It is at this time that the information on friendships is stored into the Google App Engine database. Figure 3: A status bar shows the progress of Friend Cloud s data retrieval and storage

4 Once the retrieval of Facebook data is complete, the user continues to follow the flow of steps outlined on the site. A link to Build my Friend Networks assigns the user s friends into networks, information that is subsequently stored in the database. These networks are then viewed in list format, with the name of the network being displayed alongside the number of friends who are belong to it. After this step, the user has the opportunity to View my Friend Networks by clicking a link provided. This is the final step that creates an interactive canvas for the browsing and merging of networks. The center of the network is a friend of the user with whom all other members of the network are mutual friends. This friend s profile picture is displayed in the top left of a frame that contains the profile pictures of all other friends in the network. Hovering the cursor over a friend s profile picture brings up the friend s name, profile picture, number of mutual friends, as well as a dropdown list of networks to which this friend can be reassigned. This tool is implemented with JavaScript without a page refresh, while the Merge Network feature deletes one network, adds its members to another, and refreshes the new network section of the page. Figure 4: The final screen allows the user to view his/her networks

5 5 Approach and Methods This project was developed in Python and made extensive use of the Google App Engine. Google App Engine provides several useful mechanisms for the creation and maintenance of an online application. Our page made most use of the available database and distributed computational capabilities that Google App Engine offers. These different features can be accessed through the Google App Engine development site, appengine.google.com. Google enforces daily quotas of CPU time, database access, and many other metrics, which could pose limitations, were this initiative to be expanded. The database used in this case holds onto user data such as networks and friendships, so a user can access the site multiple times with no need to regenerate statistics for his/her Facebook profile. The website also relied heavily on the information made available through the Facebook Application Programming Interface (API). The Facebook API allows for programs to make use of the data that Facebook users volunteer for their personal profiles. By signing in through Facebook and password, users can allow these programs to access information such as friends, pictures, wall posts, and other parts of Facebook. The current version of the website only makes use of friendships and profile pictures, but there exists the capability for many more additions with the features of the Facebook API. The algorithm for organizing networks was designed to balance the strength of connections between members but also limit computational complexity, since a faster execution leads to a better user experience as well as less share of Google App Engine s daily quotas. The final version of this algorithm worked to establish which friend a user shared the most mutual friends with. This friend was then considered the head of a network that included all of the mutual friends shared with the main user. All members of this network are then removed from a list of friends unassigned to a network. This process is repeated with this list of unassigned friends, so the second network was built around the remaining friend who has shares the most common friends with the main user and members of that network are removed from the unassigned list. This process is repeated for all networks that have at least four members (including the friend around whom the network is centered). After this process is completed, all remaining friends are put into an Uncategorized network, but can still be moved to other networks at the will of the user.

6 6 Discussion and Future Work The current implementation of Friend Cloud does a reasonably good job of identifying subnetworks among a user s Facebook friends, but there are several ways that our group identification algorithm could be improved, and there is also room for improvement in the user interface for managing these groups. One possible improvement to the group identification algorithm would be to re-calculate the mutual friend tally after a group is identified and removed. This re-calculated mutual friend tally would exclude mutual friendships in which the mutual friend is a member of an existing group. This way, the algorithm would choose the person with the highest mutual friend tally of the remaining friends to be the leader of the next group. This algorithm would do a better job of covering the network with a minimal number of groups than the current algorithm, which only approximates this behavior. Recalculating the mutual friend tally can be implemented in two ways, both of which are computationally expensive. One way would be to do a nested for loop which would compare each of the remaining ungrouped friends to every other remaining ungrouped friend, after each group-selection iteration. This all-pairs operation is expensive, but not impossibly expensive since we have a local database record for every friendship, so at least we avoid any network latency which would be incurred if we were actively making API calls to Facebook. The other, slightly better method is to decrement mutual friend tallys as friends are removed from the active pool and are placed into their subnetworks. In this method, as we put user A into a group, we would loop through all friendships of user A and decrement the friend tally of any of user A s friends who were still in the active pool. Another heuristic for improving group selection would be refining group memberships after the basic network groupings have been completed. Currently, we have a simple refining step where groups which contain only 1 or 2 members are lumped together into an Uncategorized group. Since this Uncategorized group is small compared to the the size of all of the user s Facebook friends, we can spend extra computation on these members without adding much overall time to the group identification step. One technique that we could use would be to loop through all of the mutual friends of each of these uncategorized members and add this uncategorized member to the group which has the most hits. Similarly, mutual friend analysis by group could be carried out on people who are already members of existing groups, to see if their current membership is really the best choice. For example, it is possible that one of

7 my college friends has been drawn into my high school friends group because of a single mutual friendship with one of my high school friends, even though this person has a much greater number of mutual friends who are in my college friends group. These errors could be corrected in this refinement analysis stage. Besides these improvements to our grouping algorithm, we would also like to add more features to our group management interface. One obvious feature would be to allow people to be members of multiple different networks. For example, someone might be a member of my college friends network and also my high school friends network. Another important feature which we have not yet implemented is allowing users to create new groups. This could be useful for users who want a greater level of customization over their groups, instead of just using the groups which have been identified by our algorithm. 7 References [1] TouchGraph: Graph Connections. Provided by touchgraph.com

8 8 Authors Joey Rich is a Computer Science major at Notre Dame, originally from North Manchester Indiana. Joey enjoys playing sports and travelling the world, and is passionate about web development and internet entrepreneurship. Ben Fuja is a Computer Science major at Notre Dame. Ben has lived in the greater South Bend area since 1998 and has an older sister who graduated from Notre Dame in Not surprisingly, he is a fan of Notre Dame sports as well as the Chicago Cubs in baseball and Chicago Bulls in basketball. Ben hopes to use his programming knowledge in the future with a career in technical consulting.

Basic User. Walk Through Guide

Basic User. Walk Through Guide Basic User Walk Through Guide This quick tutorial will help you get started exploring the many features of our new church web-based online community. You will be able to interact with others, get details

More information

Facebook Tutorial. An Introduction to Today s Most Popular Online Community

Facebook Tutorial. An Introduction to Today s Most Popular Online Community Facebook Tutorial An Introduction to Today s Most Popular Online Community Introduction to Facebook Facebook is the most popular social network, in the U.S. and internationally. In October 2011, more than

More information

Pinterest. What is Pinterest?

Pinterest. What is Pinterest? Pinterest What is Pinterest? Pinterest is like an electronic bulletin board that allows users to save and share photos they find on the internet. Usually when a user pins a photo it is linked to a blog

More information

Learning and Development. UWE Staff Profiles (USP) User Guide

Learning and Development. UWE Staff Profiles (USP) User Guide Learning and Development UWE Staff Profiles (USP) User Guide About this training manual This manual is yours to keep and is intended as a guide to be used during the training course and as a reference

More information

DIGITAL IDENTITY MANAGEMENT

DIGITAL IDENTITY MANAGEMENT DIGITAL IDENTITY MANAGEMENT Temple Community Platform Digital identity is what uniquely describes a person and their relationships online. Most of us today are experts in social identity management (e.g.,

More information

SharePoint General Instructions

SharePoint General Instructions SharePoint General Instructions Table of Content What is GC Drive?... 2 Access GC Drive... 2 Navigate GC Drive... 2 View and Edit My Profile... 3 OneDrive for Business... 3 What is OneDrive for Business...

More information

Making Privacy a Fundamental Component of Web Resources

Making Privacy a Fundamental Component of Web Resources Making Privacy a Fundamental Component of Web Resources Thomas Duebendorfer (Google Switzerland GmbH), Christoph Renner (Google Switzerland GmbH/ETH Zurich), Tyrone Grandison (IBM), Michael Maximilien

More information

Zoom User Manual. developed. Gary P. Davis. and. David J. Ayersman. for. Students and Employees of New River Community and Technical College

Zoom User Manual. developed. Gary P. Davis. and. David J. Ayersman. for. Students and Employees of New River Community and Technical College Zoom User Manual developed by Gary P. Davis and David J. Ayersman for Students and Employees of Zoom manual.docx Page 1 of 35 Last Updated: August 13, 2018 PREFACE AND OVERVIEW For the fall 2018 term,

More information

DIGITAL IDENTITY MANAGEMENT Temple Community Platform

DIGITAL IDENTITY MANAGEMENT Temple Community Platform DIGITAL IDENTITY MANAGEMENT Temple Community Platform Digital identity is what uniquely describes a person and their relationships online. Most of us today are experts in social identity management (e.g.,

More information

The ICT4me Curriculum

The ICT4me Curriculum The ICT4me Curriculum About ICT4me ICT4me is an after school and summer curriculum for middle school youth to develop ICT fluency, interest in mathematics, and knowledge of information, communication,

More information

The ICT4me Curriculum

The ICT4me Curriculum The ICT4me Curriculum About ICT4me ICT4me is an after school and summer curriculum for middle school youth to develop ICT fluency, interest in mathematics, and knowledge of information, communication,

More information

Functionality, Challenges and Architecture of Social Networks

Functionality, Challenges and Architecture of Social Networks Functionality, Challenges and Architecture of Social Networks INF 5370 Outline Social Network Services Functionality Business Model Current Architecture and Scalability Challenges Conclusion 1 Social Network

More information

UCRChatline - ios Mobile Application

UCRChatline - ios Mobile Application Team 16 Milestone 1 Project Documentation: Page 1 UCRChatline - ios Mobile Application Milestone 1 Documentation November 2014 Computer Science 180, Fall 2014 Professor Iulian Neamtiu, Instructor Aiping

More information

Social Networking in Action

Social Networking in Action Social Networking In Action 1 Social Networking in Action I. Facebook Friends Friends are people on Facebook whom you know, which can run the range from your immediate family to that person from high school

More information

volley: automated data placement for geo-distributed cloud services

volley: automated data placement for geo-distributed cloud services volley: automated data placement for geo-distributed cloud services sharad agarwal, john dunagan, navendu jain, stefan saroiu, alec wolman, harbinder bhogan very rapid pace of datacenter rollout April

More information

CRM Insights. User s Guide

CRM Insights. User s Guide CRM Insights User s Guide Copyright This document is provided "as-is". Information and views expressed in this document, including URL and other Internet Web site references, may change without notice.

More information

METRO BUS TRACKING SYSTEM

METRO BUS TRACKING SYSTEM METRO BUS TRACKING SYSTEM Muthukumaravel M 1, Manoj Kumar M 2, Rohit Surya G R 3 1,2,3UG Scholar, Dept. Of CSE, Panimalar Engineering College, Tamil Nadu, India. 1muthukumaravel.muthuraman@gmail.com, 2

More information

Dugan's Travels. Agent Website. User Guide

Dugan's Travels. Agent Website. User Guide Dugan's Travels Agent Website User Guide Lundy Innovations Ken Lundy, Sr. v1.2 1 v1.6 Table of Content Website Overview.................................................................... 3 Home Page -

More information

Q&A for The Washington Times New Website

Q&A for The Washington Times New Website Q&A for The Washington Times New Website Q.) How do I log in and what are the benefits? A.) Registering for a Washington Times account opens up a whole new world of opportunity for you, from being able

More information

Privacy and Security Features. Kroll Windows

Privacy and Security Features. Kroll Windows Privacy and Security Features Kroll Windows January 2019 Table of Contents Privacy/Security Features in Kroll...2 User Groups...2 User Group Permissions...3 Associating/Disassociating a Pharmacist...4

More information

DIGITAL IDENTITY MANAGEMENT Temple Community Platform

DIGITAL IDENTITY MANAGEMENT Temple Community Platform DIGITAL IDENTITY MANAGEMENT Temple Community Platform Digital identity is what uniquely describes a person and their relationships online. Most of us today are experts in social identity management (e.g.,

More information

Switched-On Schoolhouse 2014 User Guide Reports & Application Functions

Switched-On Schoolhouse 2014 User Guide Reports & Application Functions Switched-On Schoolhouse 2014 User Guide Reports & Application Functions MMVI Alpha Omega Publications, Inc. Switched-On Schoolhouse 2014, Switched-On Schoolhouse. Switched-On, and their logos are registered

More information

Website Designs Australia

Website Designs Australia Proudly Brought To You By: Website Designs Australia Contents Disclaimer... 4 Why Your Local Business Needs Google Plus... 5 1 How Google Plus Can Improve Your Search Engine Rankings... 6 1. Google Search

More information

Boundless Fundraising

Boundless Fundraising Boundless Fundraising FREQUENTLY ASKED QUESTIONS Desktop app The Boundless Fundraising Desktop App is a Facebook app that enables participants to make use of their online social networks to raise money

More information

Perfect Timing. Alejandra Pardo : Manager Andrew Emrazian : Testing Brant Nielsen : Design Eric Budd : Documentation

Perfect Timing. Alejandra Pardo : Manager Andrew Emrazian : Testing Brant Nielsen : Design Eric Budd : Documentation Perfect Timing Alejandra Pardo : Manager Andrew Emrazian : Testing Brant Nielsen : Design Eric Budd : Documentation Problem & Solution College students do their best to plan out their daily tasks, but

More information

EMS WEB APP Configuration Guide

EMS WEB APP Configuration Guide EMS WEB APP Configuration Guide V44.1 Last Updated: August 14, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: EMS Web App

More information

Quick Start: Use instant messaging and presence

Quick Start: Use instant messaging and presence Quick Start: Use instant messaging and presence This Quick Start describes the basics for communicating by using Microsoft Lync 2010 communications software. It explains how to use Lync 2010 to easily

More information

balancer high-fidelity prototype dian hartono, grace jang, chris rovillos, catriona scott, brian yin

balancer high-fidelity prototype dian hartono, grace jang, chris rovillos, catriona scott, brian yin balancer high-fidelity prototype dian hartono, grace jang, chris rovillos, catriona scott, brian yin Problem and Solution Overview A healthy work-life balance is vital for both employers and employees.

More information

Colligo Engage Console. User Guide

Colligo Engage Console. User Guide Colligo Engage Console User Guide Contents Introduction...3 Console Login for End Users... 3 Console Setup for Administrators... 3 Users...3 Groups...5 Sites... 6 Adding Locations to Sites... 7 Reporting...8

More information

NACCHO Virtual Communities Guide

NACCHO Virtual Communities Guide NACCHO Virtual Communities Guide NACCHO Membership Team What are NACCHO s Virtual Communities? NACCHO s Virtual Communities (VC) grows out of NACCHO s desire create a community based platform that helps

More information

A Quick and Easy Guide To Using Canva

A Quick and Easy Guide To Using Canva A Quick and Easy Guide To Using Canva Canva is easy to use and has great tools that allow you to design images that grab anyone s eye. These images can be used on your personal website, Pinterest, and

More information

DSS User Guide. End User Guide. - i -

DSS User Guide. End User Guide. - i - DSS User Guide End User Guide - i - DSS User Guide Table of Contents End User Guide... 1 Table of Contents... 2 Part 1: Getting Started... 1 How to Log in to the Web Portal... 1 How to Manage Account Settings...

More information

Hello everyone. My name is Kundan Singh and today I will describe a project we did at Avaya Labs.

Hello everyone. My name is Kundan Singh and today I will describe a project we did at Avaya Labs. Hello everyone. My name is Kundan Singh and today I will describe a project we did at Avaya Labs. 1 Let me start by saying that people often forget the importance of separating data from the application

More information

How to Guide. For Personal Users

How to Guide. For Personal Users How to Guide For Personal Users March 2016 Contents Introduction... 2 Features and Functions:... 2 Accessing UICollaboratory... 3 Home Page... 3 Homepage Key Features... 3 Collaboration Map... 4 Search

More information

7 The system should allow administrator to close a user profile. 8 The system shall make the old events invisible to avoid crowded geo scope.

7 The system should allow administrator to close a user profile. 8 The system shall make the old events invisible to avoid crowded geo scope. Requirement 1 2 3 4 5 6 Description The system shall upload pictures to a hashtag specified by the user, or to their current location The system shall allow a user to reserve a hashtag, allowing the user

More information

Getting Set-up with Salesforce

Getting Set-up with Salesforce Getting Set-up with Salesforce Reference Guide Use this document to setup your Salesforce account. Contents Complete Your User Preferences... 2 Outlook Contact Sync... 7 Manual Email Sync... 10 Sync Collaborative

More information

The Comprehensive User Guide

The Comprehensive User Guide The Comprehensive User Guide Version: 3.9 Table of Contents Chapter 1: Scanning and Assigning QR Codes... 4 1.1 Scanning QR Codes... 4 1.1.1 Scanning from Third Party QR Code Reader 4 1.2 Assigning Assets

More information

Zephyr Cloud for HipChat

Zephyr Cloud for HipChat June 25 Zephyr Cloud for HipChat Z e p h y r, 7 7 0 7 G a t e w a y B l v d S t e 1 0 0, N e w a r k, C A 9 4 5 6 0, U S A 1 - Overview How this guide will help Zephyr Cloud for HipChat guide will guide

More information

facebook a guide to social networking for massage therapists

facebook a guide to social networking for massage therapists facebook a guide to social networking for massage therapists table of contents 2 3 5 6 7 9 10 13 15 get the facts first the importance of social media, facebook and the difference between different facebook

More information

Website Tutorial for Wedding Clients

Website Tutorial for Wedding Clients Website Tutorial for Wedding Clients 1. Thank you for visiting this tutorial and we hope it assists you greatly as you view and enjoy your images. 2. Our website host is Zenfolio.com and there are a variety

More information

SERVANT KEEPER 7. Upgrade today! You will feel right at home

SERVANT KEEPER 7. Upgrade today! You will feel right at home SERVANT KEEPER 7 Upgrade today! You will feel right at home with the familiar look and feel which have been updated to provide more functionality and even faster access to your information. Expanded platforms

More information

Global Pages FAQ (updated 10.17)

Global Pages FAQ (updated 10.17) Global Pages FAQ (updated 10.17) Basics 1. What is Global Pages? 2. Why did Facebook build it? 3. Do brands have to transition to the new structure? 4. Who is eligible for Global Pages? Admins & Insights

More information

Sync User Guide. Powered by Axient Anchor

Sync User Guide. Powered by Axient Anchor Sync Powered by Axient Anchor TABLE OF CONTENTS End... Error! Bookmark not defined. Last Revised: Wednesday, October 10, 2018... Error! Bookmark not defined. Table of Contents... 2 Getting Started... 7

More information

Lecture 1: January 22

Lecture 1: January 22 CMPSCI 677 Distributed and Operating Systems Spring 2018 Lecture 1: January 22 Lecturer: Prashant Shenoy Scribe: Bin Wang 1.1 Introduction to the course The lecture started by outlining the administrative

More information

Lesson 2. Introducing Apps. In this lesson, you ll unlock the true power of your computer by learning to use apps!

Lesson 2. Introducing Apps. In this lesson, you ll unlock the true power of your computer by learning to use apps! Lesson 2 Introducing Apps In this lesson, you ll unlock the true power of your computer by learning to use apps! So What Is an App?...258 Did Someone Say Free?... 259 The Microsoft Solitaire Collection

More information

Edsel Ford High School

Edsel Ford High School First time on the Edsel Ford High School Class of 1969 Website? Here s what you need to do to start: Click on the Classmate Profiles link, find your name in the Classmates List and click it. You will be

More information

Getting Started Guide

Getting Started Guide Getting Started Guide for education accounts Setup Manual Edition 7 Last updated: September 15th, 2016 Note: Click on File and select Make a copy to save this to your Google Drive, or select Print, to

More information

SharePoint User Manual

SharePoint User Manual SharePoint User Manual Developed By The CCAP SharePoint Team Revision: 10/2009 TABLE OF CONTENTS SECTION 1... 5 ABOUT SHAREPOINT... 5 1. WHAT IS MICROSOFT OFFICE SHAREPOINT SERVER (MOSS OR SHAREPOINT)?...

More information

User Guide for the Backup & Sync Windows Store App

User Guide for the Backup & Sync Windows Store App User Guide for the Backup & Sync Windows Store App Copyright User Guide for the Backup & Sync Windows Store App January, 2013 2013 Webroot Software, Inc. All rights reserved. Webroot is a registered trademark

More information

Student Guide. By UNICAF University

Student Guide. By UNICAF University vnhgfj Student Guide By UNICAF University 1 2 Table of Contents 1) Introduction... 5 2) Student Panel (SIS)... 5 2.1) Student Panel (SIS) Login... 5 2.1.1) Definitions... 5 2.1.2) Registration Email...

More information

MicroStrategy reporting uses a browser-independent web interface that includes features like:

MicroStrategy reporting uses a browser-independent web interface that includes features like: INTRODUCTION TO BUSINESS INTELLIGENCE Business Intelligence (BI) uses methodologies, processes, architectures, and technologies that transform raw data into meaningful and useful information used to enable

More information

If you re a Facebook marketer, you re likely always looking for ways to

If you re a Facebook marketer, you re likely always looking for ways to Chapter 1: Custom Apps for Fan Page Timelines In This Chapter Using apps for Facebook marketing Extending the Facebook experience Discovering iframes, Application Pages, and Canvas Pages Finding out what

More information

How to Guide. For Personal Users

How to Guide. For Personal Users How to Guide For Personal Users February 2016 Contents Introduction... 2 Features and functions:... 2 Accessing UICollaboratory... 3 Home Page... 3 Homepage Key Features... 3 Collaboration Map... 4 Search

More information

Adobe Spark. Schools and Educators. A Guide for. spark.adobe.com

Adobe Spark. Schools and Educators. A Guide for. spark.adobe.com Adobe Spark A Guide for Schools and Educators spark.adobe.com CONTENTS 1: What Is Adobe Spark?... 3 2: How Much Does Adobe Spark Cost?... 4 3: Is Adobe Spark A Web Application Or An App?... 4 4: Three

More information

Server Manager User and Permissions Setup

Server Manager User and Permissions Setup Login and Security Once you successfully create your company databases, the next step is to define the groups and users that can access the TRAVERSE data and the functionality they will have within the

More information

LEARN IT 1. Digital Identity Management Community Platform

LEARN IT 1. Digital Identity Management Community Platform LEARN IT 1 Digital Identity Management Community Platform Note: This document is for Fox BBA in MIS majors (only). The instructions and software described below will not work for others. Please contact

More information

Facebook Basics (for individuals)

Facebook Basics (for individuals) P a g e 1 Facebook Basics (for individuals) ABOUT THIS CLASS This class is designed to give a basic introduction into Facebook Basics. Throughout the class, we will progress from learning how to create

More information

One of the fundamental kinds of websites that SharePoint 2010 allows

One of the fundamental kinds of websites that SharePoint 2010 allows Chapter 1 Getting to Know Your Team Site In This Chapter Requesting a new team site and opening it in the browser Participating in a team site Changing your team site s home page One of the fundamental

More information

Group Leader Quickstart Guide. Original photo by Trey Ratcliff

Group Leader Quickstart Guide. Original photo by Trey Ratcliff Group Leader Quickstart Guide Original photo by Trey Ratcliff In This Guide Group Setup Create a Group Profile Post Types and Restrictions Group Tags Ideal Group Size Group Nickname Default Invitation

More information

Welcome to the Investor Experience

Welcome to the Investor Experience Welcome to the Investor Experience Welcome to the Black Diamond Investor Experience, a platform that allows advisors to customize how they present information to their clients. This document provides important

More information

My Book is a website that will allow families and close groups of friends to

My Book is a website that will allow families and close groups of friends to OBJECTIVE My Book is a website that will allow families and close groups of friends to connect to each other through an integrated calendar, gallery, and organized place to pin notes. Currently people

More information

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras

Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Privacy and Security in Online Social Networks Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture 07 Tutorial 2 Part 1 Facebook API Hi everyone, welcome to the

More information

USER MANUAL. Calendar 365 TABLE OF CONTENTS. Version: 4.0

USER MANUAL. Calendar 365 TABLE OF CONTENTS. Version: 4.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Calendar 365... 1 Pre-requisites... 2 Installation... 2 Installation Steps... 2 Configuration Steps... 5 Calendar Management... 19 Calendar Activities...

More information

Guide to Completing Your Senior English and Government Portfolios

Guide to Completing Your Senior English and Government Portfolios Sheridan High School s Guide to Completing Your Senior English and Government Portfolios Written by: Dave Burkhart Updated: August 24, 2014 2 Clicking on a topic or a page number will automatically take

More information

Digital Life Analysis: Undergrad Single

Digital Life Analysis: Undergrad Single Nathan Goulding November 21, 2006 CS 489 Digital Forensics Digital Life Analysis: Undergrad Single Executive Summary This paper analyzes the impact that people make in today's digital world. The use of

More information

SharePoint AD Administration Tutorial for SharePoint 2007

SharePoint AD Administration Tutorial for SharePoint 2007 SharePoint AD Administration Tutorial for SharePoint 2007 1. General Note Please note that AD Administration has to be activated before it can be used. For further reference, please see our Product Installation

More information

Facebook Insights User guide

Facebook Insights User guide Facebook Insights User guide 2 Overview Facebook Insights brings the page administrators valuable perspective on the performance of the pages they manage. Analytics allows integration of Insights data

More information

Alfresco Content Services 5.2. Getting Started Guide

Alfresco Content Services 5.2. Getting Started Guide Alfresco Content Services 5.2 Getting Started Guide Contents Contents Getting started with Alfresco Share... 3 Signing in...3 Personalizing Alfresco Share... 4 Setting up your dashboard... 4 Updating your

More information

The secure remote support, remote access and online meeting software that the world relies on.

The secure remote support, remote access and online meeting software that the world relies on. The secure remote support, remote access and online meeting software that the world relies on. TeamViewer, the market leader activated by users on 1.3 billion devices worldwide. The Right Solution for

More information

UbiLive Home Edition 2.0 User Guide

UbiLive Home Edition 2.0 User Guide UbiLive Home Edition 2.0 User Guide 1 Table of contents 1. Product Overview... 3 1.1 Language Supports... 3 2. Installation... 3 2.1 System Requirements... 3 2.2 Installation Procedure... 3 2.3 Firewall

More information

Trip Planning Quick Start Guide. Coach-Net

Trip Planning Quick Start Guide. Coach-Net Trip Planning Quick Start Guide Coach-Net Coach-Net has partnered with Roadtrippers.com to bring you the best in trip planning services. Using the Roadtrippers mapping application, you can easily route

More information

Basic User Walkthrough

Basic User Walkthrough Basic User Walkthrough Basic User Walkthrough Table of Contents Accessing the Online Community 3 Your Personal Home Page 4 Viewing & Updating Your Profile 6 1. Contact Info 6 2. Profile Tabs 6 3. Actions

More information

What is Facebook? By

What is Facebook? By What is Facebook? By www.digitalunite.com Facebook is probably the best known of the social networking sites. Created in 2004 by Mark Zuckerberg and his friends, originally as a way for students at Harvard

More information

Users and roles. Contents

Users and roles. Contents Users and roles Help bits Contents Overview... 3 Users... 4 Operation... 5 Users tab... 6 Creating a new user... 9 Role tab... 10 Editing a role... 11 Creating a new role... 11 Role deletion... 12 Privacy

More information

The Software Administrator s Guide to Desktop Subscription. How to Set Up, Install, and Manage Your Software and Users

The Software Administrator s Guide to Desktop Subscription. How to Set Up, Install, and Manage Your Software and Users The Software Administrator s Guide to Desktop Subscription How to Set Up, Install, and Manage Your Software and Users DESKTOP SUBSCRIPTION OVERVIEW Overview Is this ebook for you? Table of Contents Visual

More information

Wimba Pronto. Version 2.0. User Guide

Wimba Pronto. Version 2.0. User Guide Wimba Pronto Version 2.0 User Guide Wimba Pronto 2.0 User Guide Welcome to Wimba Pronto 1 What's New in Wimba Pronto 2.0 2 Getting Started 3 Wimba Pronto System Requirements 3 Creating a New Wimba Pronto

More information

CLIENT ONBOARDING PLAN & SCRIPT

CLIENT ONBOARDING PLAN & SCRIPT CLIENT ONBOARDING PLAN & SCRIPT FIRST STEPS Receive Order form from Sales Representative. This may come in the form of a BPQ from client Ensure the client has an account in Reputation Management and in

More information

Getting Started with Social Media

Getting Started with Social Media Getting Started with Social Media Step 1: Go to www.facebook.com Step 2: Fill out the Sign Up form located on the homepage, including full name, e-mail address, a password and birthday, to start a free

More information

Student Guide INTRODUCTION TO ONLINE RESOURCES

Student Guide INTRODUCTION TO ONLINE RESOURCES Student Guide INTRODUCTION TO ONLINE RESOURCES Date: 08. June. 2017 By: Technical Support Team STUDENT GUIDE southwales.unicaf.org 1)Introduction...4 2)Student Panel (SIS)...4 2.1)Student Panel (SIS) Login...4

More information

Install the PowerApps application (icon below) to your smartphone from the Play Store on android phones or Apple Store on Iphones.

Install the PowerApps application (icon below) to your smartphone from the Play Store on android phones or Apple Store on Iphones. How To Obtain Your Student Card To print your student card, the college requires a passport style photograph. (Please note that any photos submitted alongside applications are used during the application

More information

End User Manual. December 2014 V1.0

End User Manual. December 2014 V1.0 End User Manual December 2014 V1.0 Contents Getting Started... 4 How to Log into the Web Portal... 5 How to Manage Account Settings... 6 The Web Portal... 8 How to Upload Files in the Web Portal... 9 How

More information

KinX. Bringing families together. Brandon Development Jackie Design Tony User Testing / Documentation Shahab Manager

KinX. Bringing families together. Brandon Development Jackie Design Tony User Testing / Documentation Shahab Manager KinX Bringing families together Brandon Development Jackie Design Tony User Testing / Documentation Shahab Manager PROBLEM & SOLUTION OVERVIEW The family as a social group lacks a platform for sharing,

More information

Table of Contents. Adding Files Select File...20 Metadata...20 A to Z...21

Table of Contents. Adding Files Select File...20 Metadata...20 A to Z...21 ptools Manual Table of Contents Welcome to ptools... 1 To login:...1 Adding in Active X... 2 To Install XStandard:...2 Locations... 2 New Categories or Locations...2 A to Z...5 Primary Document...5 Documents...

More information

CLIENT ONBOARDING PLAN & SCRIPT

CLIENT ONBOARDING PLAN & SCRIPT CLIENT ONBOARDING PLAN & SCRIPT FIRST STEPS Receive Order form from Sales Representative. This may come in the form of a BPQ from client Ensure the client has an account in Reputation Management and in

More information

How-To Guide. Getting Started. Need Help?

How-To Guide. Getting Started. Need Help? Getting Started Table of Contents Click on the section you would like to jump to. Introduction Log On Setup your profile My Info Add Your Profile Photo My Organizations Settings Resources Support Contact

More information

1 Comodo One Home Edition - FAQ

1 Comodo One Home Edition - FAQ Comodo One One Home Home Edition Edition -- FAQ FAQ Comodo 1 What is Comodo One Home Edition? Comodo One Home Edition allows you to keep track of your family's mobile devices, laptops and desktop computers

More information

User Guide. 3CX Enhanced Billing Codes. Version

User Guide. 3CX Enhanced Billing Codes. Version User Guide 3CX Enhanced Billing Codes Version 15.5.54 "Copyright VoIPTools, LLC 2011-2018" Information in this document is subject to change without notice. No part of this document may be reproduced or

More information

WALK MS Fundraise with. Guide To Fundraising with Facebook Created by the Georgia Chapter

WALK MS Fundraise with. Guide To Fundraising with Facebook Created by the Georgia Chapter WALK MS Fundraise with Fundraise with Facebook Using CharityDynamics new boundlessfundraising TM Application for Facebook, you can extent your fundraising efforts beyond the National MS Society s Participant

More information

Oracle Responsys. Release 18B. New Feature Summary ORACLE

Oracle Responsys. Release 18B. New Feature Summary ORACLE Oracle Responsys Release 18B New Feature Summary ORACLE TABLE OF CONTENTS Revision History 4 Overview 4 APIs 4 New Throttling Limits for Web Services APIs 4 New Asynchronous Web Services APIs 5 New REST

More information

Qustodio. User Guide. Copyright Qustodio Technologies S.L. All rights reserved. Revised on June 2017.

Qustodio. User Guide. Copyright Qustodio Technologies S.L. All rights reserved. Revised on June 2017. Qustodio User Guide Copyright Qustodio Technologies S.L. All rights reserved. Revised on June 2017. Table of Contents 1. INTRODUCTION... 3 1.1. WHAT IS QUSTODIO?... 3 1.2. FEATURES AND BENEFITS... 4 2.

More information

Concur's mobile app iphone

Concur's mobile app iphone Introduction to... Concur's mobile app iphone Version 9.33 June 19 2016 Applies to these Concur solutions: Expense in Travel & Expense Travel Travel in Travel & Expense Invoice Request You can use Concur

More information

OneDrive for Business Getting Started

OneDrive for Business Getting Started Getting Started Contents Getting to Know OneDrive for Business...1 What is OneDrive for Business?... 1 History... 1 Who at Century has an OneDrive for Business account?... 1 What does OneDrive for Business

More information

NPS Apps - Google Docs Facilitated by Liza Zandonella Newtown High School May, 2013

NPS Apps - Google Docs Facilitated by Liza Zandonella Newtown High School May, 2013 NPS Apps - Google Docs Facilitated by Liza Zandonella Newtown High School May, 2013 Creating, Uploading and Sharing Documents To open Google Docs, select Drive on the menu bar of your Google Mail browser.

More information

Qualtrics Survey Software

Qualtrics Survey Software Qualtrics Survey Software GETTING STARTED WITH QUALTRICS Qualtrics Survey Software 0 Contents Qualtrics Survey Software... 2 Welcome to Qualtrics!... 2 Getting Started... 2 Creating a New Survey... 5 Homepage

More information

Oaks Calendars Guide

Oaks Calendars Guide Oaks Calendars Guide Read me first You can take advantage of our enhanced calendaring system in four different ways. If the Direct Route works for you, skip the rest of this guide until you need it. Take

More information

Accessing E-Books using OverDrive

Accessing E-Books using OverDrive Accessing E-Books using OverDrive There are really only four basic steps to using OverDrive: Creating an OverDrive account (which is optional, but useful) Finding and signing into your library or school's

More information

Information Sharing and User Privacy in the Third-party Identity Management Landscape

Information Sharing and User Privacy in the Third-party Identity Management Landscape Information Sharing and User Privacy in the Third-party Identity Management Landscape Anna Vapen¹, Niklas Carlsson¹, Anirban Mahanti², Nahid Shahmehri¹ ¹Linköping University, Sweden ²NICTA, Australia 2

More information

The social network that protects your personal data

The social network that protects your personal data The social network that protects your personal data Youzzers, the story of one young man s idea for a new and unique social network Behind Youzzers, we find Steven Hori. This young engineer, who arrived

More information

How to Start a Fundraiser. MyGreatestFan.com

How to Start a Fundraiser. MyGreatestFan.com How to Start a Fundraiser MyGreatestFan.com Create a Fundraiser for a Player or Team Successfully Funded Campaigns 2. Fill out the form to create your account and click on the Sign Up for Greatest Fan

More information

nevayacast. generate revenue through guest satisfaction. intuitive media-streaming for hospitality. powered by

nevayacast. generate revenue through guest satisfaction. intuitive media-streaming for hospitality. powered by nevayacast. generate revenue through guest satisfaction. intuitive media-streaming for hospitality. powered by the best in-room entertainment solution. Online media for the hospitality industry is fast

More information