Part 3: Online Social Networks

Size: px
Start display at page:

Download "Part 3: Online Social Networks"

Transcription

1 1 Part 3: Online Social Networks

2 Today's plan Project 2 Questions? 2

3 Social networking services Social communities Bebo, MySpace, Facebook, etc. Content sharing YouTube, Flickr, MSN Soapbox, etc. Corporate LinkedIn, Plaxo, etc. Portals MSN, Yahoo 360, etc. Recommendation engines Last.fm, StumbleUpon, Digg, Me.dium, etc. Bookmarking/Tagging Del.icio.us, CiteUlike, Furl, etc. Discussion groups Blogs, forums, chat, messaging, Live QnA, etc. Mobile social networks Vipera, Nokia MOSH, etc. Virtual worlds Second life 3

4 Social Network Sites: History [Boyd et al., 2007] SixDegrees.com the first recognizable OSN Profiles and lists of friends Combined existing features! Failed - Nothing to do after accepting friend requests. OSN wave after 2001 Friendster: Technical and social difficulties with scale! Fakesters diluted the community MySpace: Capitalized on Friendster s problems Bands and fans Allowed personalization of profiles Facebook: Growth: Harvard-only => University-only => high schools & professionals => everyone Introduced applications (provided APIs) 4

5 Social networking services Shift in online communities OSNs are organized around people Egocentric networks WEB: world composed of groups OSNs: world composed of networks Source: Bebo, Social Media getting your message across 5

6 What do social networks enable? Leveraging the community in traditional applications Content/information sharing Search Information management Recommendations Advertisements 6

7 What is social media marketing anyway? Growing out of search marketing, and public relations before that Social media marketing is any way you can get attention for your message using people connected to the Internet People + message + Internet = social media marketing 7

8 Content-based social media marketing Focuses on the content to be posted and passed around: blogs, videos, photos, news stories, podcasts Or bookmarks to the content Feeds viral marketing Content sites Bookmarking sites 8

9 Personality-based social media marketing Consumer companies create character profiles, but may not be the best marketing for IT companies IT consultants create professional profiles 9

10 Interest-based social media marketing Communities form around topics of interest, such as message boards and specialty search engines IT marketers must get into these conversations Maybe social bookmarking sites fit into this category, too 10

11 Fantasy-based social media marketing Virtual worlds, inhabited by avatars, allow fantasy lives that marketers wish to be part of Apple, IBM, and other companies already play Kids have their worlds, too, but IT marketers can safely ignore them 11

12 Social media marketing can be planned Choose interesting topics for your stories just like good old public relations Use good titles and descriptions just like search marketing Make it easy to bookmark, unless you think that s cheesy <title> 12

13 Even virtual worlds get marketing plans IBM has over 4,000 employees who participate in over 30 Virtual Worlds Orientation Area and Map of part of IBM s presence in Second Life IBM has more than 30 virtual islands in Second Life for developer support, client meetings, and more 13

14 Plan for next two weeks Today: Facebook platform overview PHP language Next Tuesday (Lecture) PHP (continued), Ziran Chen leading Next Thursday (Lab session) Project 2 presentations Facebook API, "hello world" Assignment 4: First Facebook App 14

15 What is Facebook Social Network More than 1Billion users worldwide Gallery, Profile Management, Collaboration, Notes, Ratings, Discussion Boards, Video all in one place You don t need to pay anything to access it 15

16 Benefits of developing on FB Platform User management is done by FB Harvest social relationships Viral marketing Easy to develop, promote and monetize Bring an existing app and brand into FB Support for different languages 16

17 Seriously, what can I develop? Imagination is the limit Games Dumb entertaining apps Content sharing apps Business apps Social network aggregator and mash-ups 17

18 Lets Start! 18

19 How an app works 19

20 Facebook Platform Allows third parties to develop web or desktop applications that leverage user data and Facebook s social graph e.g. name, networks, photos, friends, marketplace, etc deeply integrate into the Facebook ecosystem e.g. profile real estate, mini-feed, look and feel, etc Frontend Integration (UI) Reusing Facebook s controls and styles Backend Integration (Data) Access to user data and settings as well as scalable data store 20

21 Frontend Platform Markup (FBML) extension of HTML Stands for Facebook Markup Language Improves usability by allowing third-party applications to leverage existing Facebook UI controls dashboard, invite users, comments, forms, type-ahead, etc Adheres to each user s privacy settings automatically Scripting (FBJS) Stands for Facebook JavaScript Facilitates Javascript functionality in a safe context Includes native support for Ajax and Animation libraries 21

22 Backend Platform Query (FQL) Stands for Facebook Query Language Offers SQL-like interface to get/set user data Interface (API) Offers REST-like interface to get/set user data Client (wrapper) libraries exist in 17+ programming languages PHP, Ruby, C#, Java, Perl, Python, Lisp, etc Encapsulate common, mundane and generally difficult to get right tasks such as authentication, encryption, transformation, etc Data Store Facebook offers applications free (though capped) data store that is highly scalable (i.e. optimized distributed tables) 22

23 FB Platform Architecture Facebook returns requested page to User User makes request for an application hosted page Facebook sends request to application Facebook renders (parses) response from application Application renders and returns response to Facebook Your code processes form request using PHP and generates FBML pages 23

24 PHP Syntax <?php /* code */?> Example ( ) <html> <body> <?php?> echo "Hello World"; </body> </html> 24

25 Intro to PHP PHP stands for PHP: Hypertext Preprocessor is a widely-used, open source scripting language scripts are executed on the server PHP files can contain text, HTML, JavaScript code, and PHP code code is executed on the server, and the result is returned to the browser as plain HTML PHP files have a default file extension of ".php" 25

26 What Can PHP Do? generate dynamic page content create, open, read, write, and close files on the server collect form data send and receive cookies add, delete, modify data in your database restrict users to access some pages on your website encrypt data 26

27 PHP Variables A variable is created the moment you first assign a value to it: $txt="hello world!"; <?php $x=5; $y=6; $z=$x+$y; echo $z;?> PHP automatically converts the variable to the correct data type, depending on its value

28 Scope Four variable scopes: local global static parameter <?php $x=5; // global scope function mytest() { echo $x; // local scope } mytest();?> 28

29 Global Scope A variable that is defined outside of any function, has a global scope. Global variables can be accessed from any part of the script, EXCEPT from within a function. To access a global variable from within a function, use the global keyword: <?php $x=5; // global scope $y=10; // global scope function mytest() { global $x,$y; $y=$x+$y; } mytest(); echo $y; // outputs 15?> 29

30 PHP Strings Very similar to JavaScript 30

31 Control Flow if statement - executes some code only if a specified condition is true if...else statement - executes some code if a condition is true and another code if the condition is false if...else if...else statement - selects one of several blocks of code to be executed switch statement - selects one of many blocks of code to be executed 31

32 PHP Arrays <?php $cars=array("volvo","bmw","toyota"); echo "I like ". $cars[0]. ", ". $cars[1]. " and ". $cars[2]. ".";?> 32 CS190: Web Science and Technology,

33 PHP Loops <?php $cars=array("volvo","bmw","toyota"); $arrlength=count($cars); for($x=0;$x<$arrlength;$x++) { echo $cars[$x]; echo "<br>"; }?> 33 CS190: Web Science and Technology,

34 Associative Arrays Associative arrays are arrays that use named keys that you assign to them. $age['peter']="35"; $age['ben']="37"; $age['joe']="43"; 34

35 Loop through Associative Arrays $age=array("peter"=>"35","ben"=>"37","joe"=>"43"); foreach($age as $x => $x_value) { echo "Key=". $x. ", Value=". $x_value; echo "<br>"; }?> 35

36 PHP Functions 36

37 PHP Forms <html> <body> Welcome <?php echo $_POST["fname"];?>!<br> You are <?php echo $_POST["age"];?> years old. </body> </html> 37

38 Exercise Re-implement the JavaScript calculator app in PHP 38

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

php Mr. Amit Patel Hypertext Preprocessor Dept. of I.T.

php Mr. Amit Patel Hypertext Preprocessor Dept. of I.T. php Hypertext Preprocessor Mr. Amit Patel Dept. of I.T..com.com PHP files can contain text, HTML, JavaScript code, and PHP code PHP code are executed on the server, and the result is returned to the browser

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

Lecture 2: Social Media

Lecture 2: Social Media Lecture 2: Social Media 2010 차세대웹기술과컨버전스 (KAIST 정보미디어경영대학원 ) Jaesun Han Founder and CEO of NexR Adjunct Professor of KAIST Business School @jaesun_han, jshan@nexrcorp.com http://www.web2hub.com/ del.icio.us

More information

What is PHP? [1] Figure 1 [1]

What is PHP? [1] Figure 1 [1] PHP What is PHP? [1] PHP is an acronym for "PHP: Hypertext Preprocessor" PHP is a widely-used, open source scripting language PHP scripts are executed on the server PHP is free to download and use Figure

More information

1/13/2011. Using the Four C s of Social Networking. QR Code Handout Slides

1/13/2011. Using the Four C s of Social Networking.   QR Code Handout Slides Using the Four C s of Social Networking to Help You and Your Program Housekeeping Session Materials: http://musicedmajor.net/fmea10/socialnetworking QR Code Handout Slides Embedded Presentation Audio Recording

More information

Marketing & Back Office Management

Marketing & Back Office Management Marketing & Back Office Management Menu Management Add, Edit, Delete Menu Gallery Management Add, Edit, Delete Images Banner Management Update the banner image/background image in web ordering Online Data

More information

ITP 342 Mobile App Development. APIs

ITP 342 Mobile App Development. APIs ITP 342 Mobile App Development APIs API Application Programming Interface (API) A specification intended to be used as an interface by software components to communicate with each other An API is usually

More information

History and Backgound: Internet & Web 2.0

History and Backgound: Internet & Web 2.0 1 History and Backgound: Internet & Web 2.0 History of the Internet and World Wide Web 2 ARPANET Implemented in late 1960 s by ARPA (Advanced Research Projects Agency of DOD) Networked computer systems

More information

Terms and Conditions

Terms and Conditions - 1 - Terms and Conditions LEGAL NOTICE The Publisher has strived to be as accurate and complete as possible in the creation of this report, notwithstanding the fact that he does not warrant or represent

More information

Azureus Plugin for Facebook Integration

Azureus Plugin for Facebook Integration Azureus Plugin for Facebook Integration Mike House-Vording, 100300955 mhvordin@connect.carleton.ca 1. Introduction This project seeks to integrate two major trends currently taking place on the internet:

More information

Social Media Tools. March 13, 2010 Presented by: Noble Studios, Inc.

Social Media Tools. March 13, 2010 Presented by: Noble Studios, Inc. March 13, 2010 Presented by: Noble Studios, Inc. 1 Communication Timeline 2 Familiar Social Media Sites According to Facebook, more than 1.5 million local businesses have active pages on Facebook According

More information

Library 2.0 for Librarians

Library 2.0 for Librarians Library 2.0 for Librarians Ina Smith & Christelle Steyn 31 January & 11 February 2008 1 Contents Google Mail E-mail Facebook Social Networking Tea break YouTube Upload Videos Flickr Upload Photos Blogger

More information

Module 1: Internet Basics for Web Development (II)

Module 1: Internet Basics for Web Development (II) INTERNET & WEB APPLICATION DEVELOPMENT SWE 444 Fall Semester 2008-2009 (081) Module 1: Internet Basics for Web Development (II) Dr. El-Sayed El-Alfy Computer Science Department King Fahd University of

More information

The Web: Concepts and Technology. January 15: Course Overview

The Web: Concepts and Technology. January 15: Course Overview The Web: Concepts and Technology January 15: Course Overview 1 Today s Plan Who am I? What is this course about? Logistics Who are you? 2 Meet Your Instructor Instructor: Eugene Agichtein Web: http://www.mathcs.emory.edu/~eugene

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

Database Driven Web 2.0 for the Enterprise

Database Driven Web 2.0 for the Enterprise May 19, 2008 1:30 p.m. 2:30 p.m. Platform: Linux, UNIX, Windows Session: H03 Database Driven Web 2.0 for the Enterprise Rav Ahuja IBM Agenda What is Web 2.0 Web 2.0 in the Enterprise Web 2.0 Examples and

More information

Dive Into Web 2.0 (In Chapter 3) Part One

Dive Into Web 2.0 (In Chapter 3) Part One Internet & World Wide Web: How to Program by Deitel and Deitel Dive Into Web 2.0 (In Chapter 3) Part One 1 Some Interesting Quotes Network effects from user contributions are the key to market dominance

More information

20486-Developing ASP.NET MVC 4 Web Applications

20486-Developing ASP.NET MVC 4 Web Applications Course Outline 20486-Developing ASP.NET MVC 4 Web Applications Duration: 5 days (30 hours) Target Audience: This course is intended for professional web developers who use Microsoft Visual Studio in an

More information

Princess Nourah bint Abdulrahman University. Computer Sciences Department

Princess Nourah bint Abdulrahman University. Computer Sciences Department Princess Nourah bint Abdulrahman University Computer Sciences Department 1 And use http://www.w3schools.com/ PHP Part 1 Objectives Introduction to PHP Computer Sciences Department 4 Introduction HTML CSS

More information

SCU SEEDs Workshop Angela Musurlian

SCU SEEDs Workshop Angela Musurlian SCU SEEDs Workshop Angela Musurlian Lecturer Department of Computer Engineering Santa Clara University amusurlian@scu.edu 1 This Talk Part I Computing Part II Computing at SCU Part III Today s activity

More information

ITP 140 Mobile Technologies. Mobile Topics

ITP 140 Mobile Technologies. Mobile Topics ITP 140 Mobile Technologies Mobile Topics Topics Analytics APIs RESTful Facebook Twitter Google Cloud Web Hosting 2 Reach We need users! The number of users who try our apps Retention The number of users

More information

Programming: C ++ Programming : Programming Language For Beginners: LEARN IN A DAY! (Swift, Apps, Javascript, PHP, Python, Sql, HTML) By Os Swift

Programming: C ++ Programming : Programming Language For Beginners: LEARN IN A DAY! (Swift, Apps, Javascript, PHP, Python, Sql, HTML) By Os Swift Programming: C ++ Programming : Programming Language For Beginners: LEARN IN A DAY! (Swift, Apps, Javascript, PHP, Python, Sql, HTML) By Os Swift If searching for the book Programming: C ++ Programming

More information

Internet Basics. Basic Terms and Concepts. Connecting to the Internet

Internet Basics. Basic Terms and Concepts. Connecting to the Internet Internet Basics In this Learning Unit, we are going to explore the fascinating and ever-changing world of the Internet. The Internet is the largest computer network in the world, connecting more than a

More information

Building Facebook & OpenSocial Applications with Java Technology

Building Facebook & OpenSocial Applications with Java Technology Building Facebook & OpenSocial Applications with Java Technology Richard Pack Chief Technology Officer Goal > Learn Why Java Technologies are Perfect for a Social Application > Learn How Use These Technologies

More information

HTML 5 and CSS 3, Illustrated Complete. Unit M: Integrating Social Media Tools

HTML 5 and CSS 3, Illustrated Complete. Unit M: Integrating Social Media Tools HTML 5 and CSS 3, Illustrated Complete Unit M: Integrating Social Media Tools Objectives Understand social networking Integrate a Facebook account with a Web site Integrate a Twitter account feed Add a

More information

The Ultimate Digital Marketing Glossary (A-Z) what does it all mean? A-Z of Digital Marketing Translation

The Ultimate Digital Marketing Glossary (A-Z) what does it all mean? A-Z of Digital Marketing Translation The Ultimate Digital Marketing Glossary (A-Z) what does it all mean? In our experience, we find we can get over-excited when talking to clients or family or friends and sometimes we forget that not everyone

More information

Digital Marketing Proposal

Digital Marketing Proposal Digital Marketing Proposal ---------------------------------------------------------------------------------------------------------------------------------------------- 1 P a g e We at Tronic Solutions

More information

CPET 581 E-Commerce & Business Technologies. Topics

CPET 581 E-Commerce & Business Technologies. Topics CPET 581 E-Commerce & Business Technologies Design and Build E-Commerce Web Sites, Mobile Sites, and Apps Lecture Note 1 of 2 References: *Chapter 4. Building an E-Commerce Presence: Web Sites, Mobile

More information

Chapter 7:- PHP. Compiled By:- Sanjay Patel Assistant Professor, SVBIT.

Chapter 7:- PHP. Compiled By:- Sanjay Patel Assistant Professor, SVBIT. Chapter 7:- PHP Compiled By:- Assistant Professor, SVBIT. Outline Starting to script on server side, Arrays, Function and forms, Advance PHP Databases:-Basic command with PHP examples, Connection to server,

More information

Web 2.0: Is it a Whole New Internet?

Web 2.0: Is it a Whole New Internet? Web 2.0: Is it a Whole New Internet? 1 It s Hard to Define, But I Know it When I See it Emerging Tech Apps You Know Some Apps You Don t know Web Services / API s Folksonomies / Content tagging AJAX RSS

More information

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Glossary A B C D E F G H I J K L M N O P Q R S T U V W X Y Z A App See Application Application An application (sometimes known as an app ) is a computer program which allows the user to perform a specific

More information

TITLE SOCIAL MEDIA AND COLLABORATION POLICY

TITLE SOCIAL MEDIA AND COLLABORATION POLICY DATE 9/20/2010 TITLE 408.01 SOCIAL MEDIA AND COLLABORATION POLICY ORG. AGENCY Department of Communications Approved AFT As more and more citizens in our community make the shift towards, or include the

More information

The Internet, the Web, and Electronic Commerce The McGraw-Hill Companies, Inc. All rights reserved.

The Internet, the Web, and Electronic Commerce The McGraw-Hill Companies, Inc. All rights reserved. Discuss the origins of the Internet and the Web. Describe how to access the Web using providers and browsers. Discuss Internet communications, including e- mail, instant messaging, social networking, blogs,

More information

Web 2.0. Agenda. What you will need to have handy for this class. Social Software Applications for Libraries. Day 1. Day 2

Web 2.0. Agenda. What you will need to have handy for this class. Social Software Applications for Libraries. Day 1. Day 2 Web 2.0 Social Software Applications for Libraries Day 1 Agenda Web 1.0 Web 2.0/Library 2.0 Blogs/RSS Wikis Podcasting/Videos Day 2 Docs/Spreadsheets Networking Photos Mapping Mashups Folksonomies Implications

More information

1 P a g e C o p y r i g h t S E O I n c. SEO Inc. Consulting Pinterest

1 P a g e C o p y r i g h t S E O I n c. SEO Inc. Consulting Pinterest 1 P a g e C o p y r i g h t 2 0 1 1 S E O I n c. SEO Inc. Consulting Pinterest Table of Contents WHAT IS PINTEREST... 3 HOW TO SET UP A PINTEREST ACCOUNT... 4 PLUGINS... 10 FOLLOW BUTTON... 10 PIN IT BUTTON...

More information

Introduction to Kony Fabric

Introduction to Kony Fabric Kony Fabric Introduction to Kony Fabric Release V8 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated on the Revision

More information

Firespring Analytics

Firespring Analytics Firespring Analytics What do my website statistics mean? To answer this question, let's first consider how a web page is loaded. You've just typed in the address of a web page and hit go. Depending on

More information

Online Communication. Chat Rooms Instant Messaging Blogging Social Media

Online Communication.  Chat Rooms Instant Messaging Blogging Social Media Online Communication E-mail Chat Rooms Instant Messaging Blogging Social Media { Advantages: { Reduces cost of postage Fast and convenient Need an email address to sign up for other online accounts. Eliminates

More information

Full Stack Developer with Java

Full Stack Developer with Java Full Stack Developer with Java Full Stack Developer (Java) MVC, Databases and ORMs, API Backend Frontend Fundamentals - HTML, CSS, JS Unit Testing Advanced Full Stack Developer (Java) UML, Distributed

More information

Overview. History of programming What are social network systems? Basic concepts of Social programming

Overview. History of programming What are social network systems? Basic concepts of Social programming Social programming Overview History of programming What are social network systems? Basic concepts of Social programming Brief History of programming A programmer s perspective! Charles Baggage England,

More information

Welcome to CS120 Fall 2012

Welcome to CS120 Fall 2012 Welcome to CS120 Fall 2012 John Magee (jmagee@clarku.edu) 1 Welcome to CS120 Computing is ubiquitous Daily life, news, ecommerce Sciences and engineering fields Social sciences, humanity, Arts, music,

More information

Scalable Web Programming. CS193S - Jan Jannink - 2/16/10

Scalable Web Programming. CS193S - Jan Jannink - 2/16/10 Scalable Web Programming CS193S - Jan Jannink - 2/16/10 Administrative Stuff Submit a running website on Thursday some functionality can still be simple some placeholders acceptable Some tests required

More information

Programming Fundamentals of Web Applications

Programming Fundamentals of Web Applications Programming Fundamentals of Web Applications Course 10958B; 5 days, Instructor-led Course Description This five-day instructor-led course provides the knowledge and skills to develop web applications by

More information

Build Meeting Room Management Website Using BaaS Framework : Usergrid

Build Meeting Room Management Website Using BaaS Framework : Usergrid Build Meeting Room Management Website Using BaaS Framework : Usergrid Alvin Junianto Lan 13514105 Informatics, School of Electrical Engineering and Informatics Bandung Institute of Technology Bandung,

More information

Syllabus INFO-GB Design and Development of Web and Mobile Applications (Especially for Start Ups)

Syllabus INFO-GB Design and Development of Web and Mobile Applications (Especially for Start Ups) Syllabus INFO-GB-3322 Design and Development of Web and Mobile Applications (Especially for Start Ups) Fall 2015 Stern School of Business Norman White, KMEC 8-88 Email: nwhite@stern.nyu.edu Phone: 212-998

More information

GRITS AJAX & GWT. Trey Roby. GRITS 5/14/09 Roby - 1

GRITS AJAX & GWT. Trey Roby. GRITS 5/14/09 Roby - 1 AJAX & GWT Trey Roby GRITS 5/14/09 Roby - 1 1 Change The Web is Changing Things we never imagined Central to people s lives Great Opportunity GRITS 5/14/09 Roby - 2 2 A Very Brief History of Computing

More information

Like It Or Not Web Applications and Mashups Will Be Hot

Like It Or Not Web Applications and Mashups Will Be Hot Like It Or Not Web Applications and Mashups Will Be Hot Tommi Mikkonen Tampere University of Technology tommi.mikkonen@tut.fi Antero Taivalsaari Sun Microsystems Laboratories antero.taivalsaari@sun.com

More information

welcome to BOILERCAMP HOW TO WEB DEV

welcome to BOILERCAMP HOW TO WEB DEV welcome to BOILERCAMP HOW TO WEB DEV Introduction / Project Overview The Plan Personal Website/Blog Schedule Introduction / Project Overview HTML / CSS Client-side JavaScript Lunch Node.js / Express.js

More information

Nick Terkay CSCI 7818 Web Services 11/16/2006

Nick Terkay CSCI 7818 Web Services 11/16/2006 Nick Terkay CSCI 7818 Web Services 11/16/2006 Ning? Start-up co-founded by Marc Andreeson, the co- founder of Netscape. October 2005 Ning is an online platform for painlessly creating web apps in a jiffy.

More information

Website Report for facebook.com

Website Report for facebook.com Website Report for facebook.com Fife Website Design 85 Urquhart Crescent 07821731179 hello@fifewebsitedesign.co.uk www.fifewebsitedesign.co.uk This report grades your website on the strength of a range

More information

Developing ASP.NET MVC 5 Web Applications

Developing ASP.NET MVC 5 Web Applications 20486C - Version: 1 23 February 2018 Developing ASP.NET MVC 5 Web Developing ASP.NET MVC 5 Web 20486C - Version: 1 5 days Course Description: In this course, students will learn to develop advanced ASP.NET

More information

CS Final Exam Review Suggestions - Spring 2018

CS Final Exam Review Suggestions - Spring 2018 CS 328 - Final Exam Review Suggestions p. 1 CS 328 - Final Exam Review Suggestions - Spring 2018 last modified: 2018-05-03 Based on suggestions from Prof. Deb Pires from UCLA: Because of the research-supported

More information

Facebook Fan Pages + Apps. And lots more Mike Richwalsky Allegheny College

Facebook Fan Pages + Apps. And lots more Mike Richwalsky Allegheny College Facebook Fan Pages + Apps And lots more Mike Richwalsky Allegheny College A li=le about me Assistant Director of Public Affairs, Allegheny College Technology Fellow, NaEonal InsEtute of Technology in Liberal

More information

Walk The Walk Social Media

Walk The Walk Social Media Walk The Walk Social Media The Social Media Quiz 1. How many Facebook accounts are there in the world? a) 1.2 billion b) 540 million c) 120 million d) 53 million e) 10 million 2. Which do you think is

More information

Blogging using Wordpress

Blogging using Wordpress Blogging using Wordpress 5 th February 2014 ilqam By Mohd Ali Mohd Isa 2 Blogging with wordpress INTRODUCTION Wordpress is a free blogging platform that can be accessed from anywhere over the Internet.

More information

THOMAS LATOZA SWE 621 FALL 2018 DESIGN ECOSYSTEMS

THOMAS LATOZA SWE 621 FALL 2018 DESIGN ECOSYSTEMS THOMAS LATOZA SWE 621 FALL 2018 DESIGN ECOSYSTEMS LOGISTICS HW5 due today Project presentation on 12/6 Review for final on 12/6 2 EXAMPLE: NPM https://twitter.com/garybernhardt/status/1067111872225136640

More information

Progressive Web App (PWA) Features

Progressive Web App (PWA) Features Progressive Web App (PWA) Features A complete list of the features with PWA Development from dm@ MENU The Menu feature is essentially the same as the Info-3-Tier feature, but allows you to specify a price

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

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

COPYRIGHTED MATERIAL. Social Network Programming

COPYRIGHTED MATERIAL. Social Network Programming Social Network Programming The most recent explosive growth on the World Wide Web (WWW) is social networking. Social networking allows you to make and connect to friends in unique and fun ways, in what

More information

Getting Published in Apple News

Getting Published in Apple News Media #WWDC16 Getting Published in Apple News Session 502 Ryan Griggs Apple News 2016 Apple Inc. All rights reserved. Redistribution or public display not permitted without written permission from Apple.

More information

Social Media 101 Uses of Social Media to Promote Your Toastmasters Club

Social Media 101 Uses of Social Media to Promote Your Toastmasters Club Social Media 101 Uses of Social Media to Promote Your Toastmasters Club How to Gain New Members Without Really Trying Presented By Your District 50 Social Media Team Why Promote Your Club? Turnover DCP

More information

Make your application real-time with PubSubHubbub. Brett Slatkin May 19th, 2010

Make your application real-time with PubSubHubbub. Brett Slatkin May 19th, 2010 Make your application real-time with PubSubHubbub Brett Slatkin May 19th, 2010 View live notes and ask questions about this session on Google Wave http://tinyurl.com/push-io2010 Me http://onebigfluke.com

More information

Social Media and Web 2.0. The Social Media and Web 2.0 webinar will begin shortly.

Social Media and Web 2.0. The Social Media and Web 2.0 webinar will begin shortly. The Social Media and Web 2.0 webinar will begin shortly. If you need technical assistance with the webcast, contact us at hsmai@commpartners.com and we will assist you immediately. 1 Social Media and Web

More information

INTERNET PROGRAMMING. Software Engineering Branch / 4 th Class Computer Engineering Department University of Technology

INTERNET PROGRAMMING. Software Engineering Branch / 4 th Class Computer Engineering Department University of Technology INTERNET PROGRAMMING Software Engineering Branch / 4 th Class Computer Engineering Department University of Technology OUTLINES PHP Basic 2 ARCHITECTURE OF INTERNET database mysql server-side programming

More information

In this third unit about jobs in the Information Technology field we will speak about software development

In this third unit about jobs in the Information Technology field we will speak about software development In this third unit about jobs in the Information Technology field we will speak about software development 1 The IT professionals involved in the development of software applications can be generically

More information

How To Guide. ADENION GmbH Merkatorstraße Grevenbroich Germany Fon: Fax:

How To Guide. ADENION GmbH Merkatorstraße Grevenbroich Germany Fon: Fax: How To Guide ADENION GmbH Merkatorstraße 2 41515 Grevenbroich Germany Fon: +49 2181 7569-140 Fax: +49 2181 7569-199 The! Complete Guide to Social Media Sharing The following social media sharing guide

More information

P2_L12 Web Security Page 1

P2_L12 Web Security Page 1 P2_L12 Web Security Page 1 Reference: Computer Security by Stallings and Brown, Chapter (not specified) The web is an extension of our computing environment, because most of our daily tasks involve interaction

More information

Introduction to Web Development

Introduction to Web Development Introduction to Web Development Lecture 1 CGS 3066 Fall 2016 September 8, 2016 Why learn Web Development? Why learn Web Development? Reach Today, we have around 12.5 billion web enabled devices. Visual

More information

Computer Science Seminar. Whats the next big thing? Ruby? Python? Neither?

Computer Science Seminar. Whats the next big thing? Ruby? Python? Neither? Computer Science Seminar Whats the next big thing? Ruby? Python? Neither? Introduction Seminar Style course unlike many computer science courses discussion important, encouraged and part of your grade

More information

Go To Consulting LLC.

Go To Consulting LLC. Go To Consulting LLC. Creative Efficient Affordable http://gotoconsulting.com Info@GoToConsulting.com (215) 396-8577 Go To Consulting LLC. About the company & Portfolio Go To Consulting LLC. Go To Consulting

More information

Best of SharePoint Sites and Communities

Best of SharePoint Sites and Communities Best of SharePoint 2010 Sites and Communities Agenda Overview and SharePoint 2010 Basics SharePoint Foundation Sites Communities Business Needs IT Needs Microsoft SharePoint 2010 The business collaboration

More information

Web Engineering. Introduction. Husni

Web Engineering. Introduction. Husni Web Engineering Introduction Husni Husni@trunojoyo.ac.id Outline What is Web Engineering? Evolution of the Web Challenges of Web Engineering In the early days of the Web, we built systems using informality,

More information

PHP by Pearson Education, Inc. All Rights Reserved.

PHP by Pearson Education, Inc. All Rights Reserved. PHP 1992-2012 by Pearson Education, Inc. All Client-side Languages User-agent (web browser) requests a web page JavaScript is executed on PC http request Can affect the Browser and the page itself http

More information

Viewer 2.0. Shared Media one of the exciting improvements! 2010 Linden Lab 2

Viewer 2.0. Shared Media one of the exciting improvements! 2010 Linden Lab 2 Viewer 2.0 Shared Media one of the exciting improvements! 2010 Linden Lab 2 Shared Media Brings the Web Into Second Life Web Pages Yes, Including Flash! Yes, even Flash video! Yes, on any surface! Yes,

More information

Join. Sign in You may use a Google account, UMich account, or have profiles at both addresses.

Join. Sign in You may use a Google account, UMich account, or have profiles at both  addresses. Join Google+ is Google s new social networking site. Why should you join? Privacy - Google+ easily allows you to control who sees what content you add. Sharing - This site makes sharing content extremely

More information

Ning Frequently Asked Questions

Ning Frequently Asked Questions Ning Frequently Asked Questions Ning is a Web tool that allows anyone to create a customizable social network, allowing users to share pictures and videos, maintain blogs, communicate in chat and discussion

More information

TABLE OF CONTENTS 1. INTRODUCTION DEFINITIONS Error! Bookmark not defined REASON FOR ISSUE 2 3. RELATED DOCUMENTS 2 4.

TABLE OF CONTENTS 1. INTRODUCTION DEFINITIONS Error! Bookmark not defined REASON FOR ISSUE 2 3. RELATED DOCUMENTS 2 4. TABLE OF CONTENTS 1. INTRODUCTION 1 1.1 DEFINITIONS Error! Bookmark not defined. - 2 2. REASON FOR ISSUE 2 3. RELATED DOCUMENTS 2 4. OVERVIEW 2-3 5. HARDWARE ARCHITECTURE 3 6. SUPPORTED CONFIGURATIONS

More information

Socially Driven Web Sites for the Masses

Socially Driven Web Sites for the Masses Socially Driven Web Sites for the Masses Frank Uyeda Diwaker Gupta, Amin Vahdat, George Varghese University of California, San Diego Grass roots communides wish to have websites that allow them to submit

More information

Technology Brown Bag: Web 2.0

Technology Brown Bag: Web 2.0 Technology Brown Bag: Web 2.0 Schedule information Event Technology Brown Bag: Web 2.0 When Thursday, May 4, 2006 from 12:00pm to 1:30pm Where Harris 1300 Event details Details Access Contact What is Web

More information

AD406: What s New in Digital Experience Development with IBM Web Experience Factory

AD406: What s New in Digital Experience Development with IBM Web Experience Factory AD406: What s New in Digital Experience Development with IBM Web Experience Factory Jonathan Booth, Senior Architect, Digital Experience Tooling, IBM Adam Ginsburg, Product Manager, Digital Experience

More information

Feature: Online App Builder Studio

Feature: Online App Builder Studio Feature: Online App Builder Studio Beautiful Apps from Customizable Templates Deliver unique and visually stunning apps with unprecedented speed through our completely customizable templates. Start with

More information

Facebook mobile platform

Facebook mobile platform Facebook mobile platform Velocity China, Dec 7 th, 2011, Beijing Xiaoliang David Wei http://www.davidwei.org www.facebook.com/davidwei : 9 We are a platform company >7 million websites / applications connected

More information

ibreathesports Inc. Apurva Alok Bernardo Silva

ibreathesports Inc. Apurva Alok Bernardo Silva ibreathesports Inc. Apurva Alok Bernardo Silva Mission Bring the best of web and mobile technologies to sports enthusiasts worldwide. Provide an unparalleled gaming experience through a socially interactive

More information

Messaging App Forensics with Autopsy

Messaging App Forensics with Autopsy Messaging App Forensics with Autopsy Brian Carrier Motivation Show users new features around messaging, email, and chats. Show developers how to use the new infrastructure. This work was all funded by

More information

PHP. MIT 6.470, IAP 2010 Yafim Landa

PHP. MIT 6.470, IAP 2010 Yafim Landa PHP MIT 6.470, IAP 2010 Yafim Landa (landa@mit.edu) LAMP We ll use Linux, Apache, MySQL, and PHP for this course There are alternatives Windows with IIS and ASP Java with Tomcat Other database systems

More information

What s a module? Some modules. it s so simple to make your page unique

What s a module? Some modules. it s so simple to make your page unique How to guide What s a module? To create a functioning network without knowing about code, you need to be fluent in drag and drop. Webjam is made up of scores of modules. Modules are the tools that Webjam

More information

Drupal 8 THE VIDER ITY APPR OACH

Drupal 8 THE VIDER ITY APPR OACH Drupal 8 THE VIDER ITY APPROACH Introduction DR UPAL 8: THE VIDER ITY APPROACH Viderity focuses on designing the Total User Experience for Drupal sites, using a user-centered design approach Traditionally,

More information

SOCIAL MEDIA. Charles Murphy

SOCIAL MEDIA. Charles Murphy SOCIAL MEDIA Charles Murphy Social Media Overview 1. Introduction 2. Social Media Areas Blogging Bookmarking Deals Location-based Music Photo sharing Video 3. The Fab Four FaceBook Google+ Linked In Twitter

More information

CSC 443: Web Programming

CSC 443: Web Programming 1 CSC 443: Web Programming Haidar Harmanani Department of Computer Science and Mathematics Lebanese American University Byblos, 1401 2010 Lebanon Today 2 Course information Course Objectives A Tiny assignment

More information

EPHP a tool for learning the basics of PHP development. Nick Whitelegg School of Media Arts and Technology Southampton Solent University

EPHP a tool for learning the basics of PHP development. Nick Whitelegg School of Media Arts and Technology Southampton Solent University EPHP a tool for learning the basics of PHP development Nick Whitelegg School of Media Arts and Technology Southampton Solent University My background Lecturer at Southampton Solent University since 2003

More information

How to Use Social Media Analytics

How to Use Social Media Analytics Echo & Co. Lecture Series How to Use Social Media Analytics Juan Gonzalez Partner & Managing Director Director of Client Services Echo & Co. March 2, 2015 Review: Digital Behavior The Digital Action Funnel

More information

AJAX Programming Overview. Introduction. Overview

AJAX Programming Overview. Introduction. Overview AJAX Programming Overview Introduction Overview In the world of Web programming, AJAX stands for Asynchronous JavaScript and XML, which is a technique for developing more efficient interactive Web applications.

More information

6 TIPS FOR IMPROVING YOUR WEB PRESENCE

6 TIPS FOR IMPROVING YOUR WEB PRESENCE 6 TIPS FOR IMPROVING YOUR WEB PRESENCE 6 TIPS FOR IMPROVING YOUR WEB PRESENCE We all want to get noticed on the web. If you are running a business you want to be on the first page in Google via organic

More information

Table of Contents Chapter 3. Creating Your Own Pages...

Table of Contents Chapter 3. Creating Your Own Pages... Table of Contents Chapter 3. Creating Your Own Pages... 1 Welcome to Facebook Pages... 1 Pages from a Marketing Perspective... 2 Viral Marketing with Pages... 0 Page Authenticity... 0 Finding Pages...

More information

Communications Workshop Notes

Communications Workshop Notes Webpage Information resource for your LMSC/club/team Answer questions 24/7/365 Your organization s public face to the world Worldwide distribution Scalability Flexibility Use of keywords o $0 2000+ Website

More information

BRAND BOOK. Best Practices

BRAND BOOK. Best Practices BRAND BOOK Best Practices BEST PRACTICES Social Media Social Media Join the Conversation The world of social media is constantly changing and so are the guidelines that govern it. If you have questions

More information

Website Report for test.com

Website Report for test.com NeatWidget contact@neatwidget.com.au neatwidget.com.au Website Report for test.com This report grades your website on the strength of a range of important factors such as on-page optimization, off-page

More information

A Virtual Smartphone

A Virtual Smartphone A Virtual Smartphone Android, WebBased (Chrome Browser) TM RapidValue Enabling Mobility Client Overview and Background Driven by the desire to bring positive change, pplconnect s objective is to transform

More information