Developing Offline Web Application
|
|
|
- Debra Hawkins
- 10 years ago
- Views:
Transcription
1 Developing Offline Web Application Kanda Runapongsa Saikaew Art Nanakorn Thana Pitisuwannarat Computer Engineering Khon Kaen University, Thailand 1
2 Agenda Motivation Offline web application samples and tools Web application implementation Experimental result Conclusion 2
3 Motivation Software is increasingly available in the form of web application Sometimes web application users are seriously affected by disconnected Internet connection Developing web application that can be accessed both online and offline is thus necessary 3
4 The Web Will Be Everywhere Mobile devices (iphone, PDA, Palm) Desktop and laptop Widgets TV The browser will be fast Google Chrome, Firefox, Internet Explorer 4
5 Why Offline? Reliability: sometimes we really need to get data at that moment Performance: local acceleration Convenience: Not having to remember where we store data (just search) Usually human beings are offline more than online! 5
6 Sample Web Applications with Gears YouTube: upload large size videos Wordpress: speed up every page load and enable users to blog faster Google Reader: allow users to access the RSS feeds when they are offline Gmail: enable users to read, reply, and search s when they are offline 6
7 YouTube Uploader Powered by Gears Upload each video up to 1 GB without installing a dedicated software 7
8 Speed up WordPress with Gears With Gears enabled, most of WordPress's iamges, scripts and CSS files will be stored locally on a user's computer 8
9 Read Feeds When You Aren t Online Click the green icon to download the most recent articles 1 2 9
10 Gmail with Offline Enabled Setting Install offline Synchronizing access 10
11 Offline Web Application Tools Microsoft silverlight Need to know.net programming Adobe Integrated Runtime (AIR) Must know Flash and AIR platform Gears Need to know only javascript 11
12 Gears Open source browser extension: enables more powerful web applications Let web applications interact naturally with your desktop Store data locally in a fully searchable database Run JavaScript in the background to improve performance 12
13 The Web with AJAX and Gears AJAX and Gears in the web environment and native environment 13
14 AJAX Architecture 14
15 Offline Architecture Read and write using local store Changes are queued for later synchronization Server communication is completely decoupled from UI actions, happens periodically whenever there is a connection 15
16 Main Modules in Gears API LocalServer Cache and serve application resources (HTML, JavaScript, Images, etc.) locally Database Store data locally in a fully searchable relational database WorkerPool Make your web applications more responsive by performing resource intensive operations asynchronously 16
17 Agenda Motivation Offline web application samples and tools Web application implementation Experimental result Conclusion 17
18 Web Application Architecture 18
19 Web Application Interface Registration form and registered users 19
20 Main Web Development Procedure Check whether Gears has been installed Store data in a local database Store data in a server database Synchronize data between server and local databases 20
21 Check whether Gears installed Download and use file gears_init.js <script src="gears_init.js"></script> <script> if (!window.google!google.gears) { location.href= " message=<your welcome message>" + "&return=<your website url>"; } </script> 21
22 try { Store Data in a Local Database (SQLite) db = google.gears.factory.create('beta.database'); if (db) { db.open('db'); db.execute('create table if not exists users' + ' (firstname varchar(255), } } catch (ex) { alert(ex.message); } 22
23 Store Data in a Server Database (MySQL) <?php // connect and select database mysql_select_db("registerdb") or die(mysql_error()); if ($method == "access") { // use SQL statements to retrieve data } else if ($method == "update") { // use SQL statements to insert data } 23
24 Copy Data from Server DB to Local DB var sync_script = ' var request = google.gears.factory.create('beta.httprequest'); request.open('post', sync_script); request.setrequestheader("content type","application/x wwwform urlencoded"); request.onreadystatechange = function() { if (request.readystate == 4) { // insert data received from server db to local db }; request.send(params); 24
25 Copy Data from Local DB to Server DB var request = google.gears.factory.create('beta.httprequest'); var params="method=update&f="+firstnames[index]; request.open('post', sync_script); request.setrequestheader("contenttype","application/x www form urlencoded"); request.send(params); 25
26 Experimental Result Check whether the web application can work offline User can access and fill out the form Check whether the application can synchronize data Multiple users view the same result 26
27 Check Offline Web App Ability (1/3) Select Work Offline at Browser Menu 27
28 Check Offline Web App Ability (2/3) Use the Web from the browser with offline mode 28
29 Check Offline Web App Ability (3/3) 29
30 Check Synchronization: User 1 30
31 Check Synchronization: User 2 31
32 Conclusion Web applications have been integrated into our daily life Need to make web application offline To access our data at any time To speed up the web application We have developed offline web application using Gears 32
33 References [1] Dion Almaer, How to take your Web Application Offline with Google Gears, of web apps google gears [2] Google System Blog, YouTube Uploader Powered by Gears, uploader powered by gea [3] Wordpress Security, How to enable Google Gears in WordPress 2.7, to enable google gears in wordpress 27 [4] Google, Google Reader Offline reading, [5] Orkut Sharing, New in Gmail Labs: Use Gmail Offline, in gmail labs use gmail offlin 33
Rich Internet Applications
Rich Internet Applications Prepared by: Husen Umer Supervisor: Kjell Osborn IT Department Uppsala University 8 Feb 2010 Agenda What is RIA? RIA vs traditional Internet applications. Why to use RIAs? Running
Chapter 12: Advanced topic Web 2.0
Chapter 12: Advanced topic Web 2.0 Contents Web 2.0 DOM AJAX RIA Web 2.0 "Web 2.0" refers to the second generation of web development and web design that facilities information sharing, interoperability,
Mobile App Framework For any Website
Mobile App Framework For any Website Presenting the most advanced and affordable way to create a native mobile app for any website The project of developing a Mobile App is structured and the scope of
Web Design Technology
Web Design Technology Terms Found in web design front end Found in web development back end Browsers Uses HTTP to communicate with Web Server Browser requests a html document Web Server sends a html document
Google Drive lets you store and share all your stuff, including documents, videos, images and other files that are important to
What are Docs & Drive? Docs Use Google Docs, Sheets and Slides for document editing anywhere, anytime. Google Docs is an online word processor that lets you create and format text documents and collaborate
PC CHECKING MINDTAP SYSTEM REQUIREMENTS
PC CHECKING MINDTAP SYSTEM REQUIREMENTS Contents Introduction 3 Hardware 4 Platforms 6 Screen Resolution 8 Windows 7 and 8 8 Windows 10 10 Using System Check 11 Browsers 12 Chrome 13 Firefox 14 Internet
HTML5 the new. standard for Interactive Web
WHITE PAPER HTML the new standard for Interactive Web by Gokul Seenivasan, Aspire Systems HTML is everywhere these days. Whether desktop or mobile, windows or Mac, or just about any other modern form factor
REST-based Offline e-mail System
Proceedings of the APAN Network Research Workshop 2012 REST-based Offline e-mail System Gihan Dias, Mithila Karunarathna, Madhuka Udantha, Ishara Gunathilake, Shalika Pathirathna and Tharidu Rathnayake
Table of contents. HTML5 Data Bindings SEO DMXzone
Table of contents Table of contents... 1 About HTML5 Data Bindings SEO... 2 Features in Detail... 3 The Basics: Insert HTML5 Data Bindings SEO on a Page and Test it... 7 Video: Insert HTML5 Data Bindings
ArcGIS Web Mapping. Sam Berg, esri [email protected]
ArcGIS Web Mapping Sam Berg, esri [email protected] Agenda ArcGIS and WebMaps The APIs ArcGIS for Flex Viewer ArcGIS for Silverlight Builder ArcGIS for Sharepoint ArcGIS Application Templates ArcGIS Runtime
Download Google Drive to windows 7
Download Google Drive to windows 7 Google Drive allows you to store and synchronize your files on the web, hard drive and mobile device. Prior to installing Google Drive, it is recommended that you organize
Learning Management System (LMS) Quick Tips. Contents LMS REFERENCE GUIDE
Learning Management System (LMS) Quick Tips Contents Process Overview... 2 Sign into the LMS... 3 Troubleshooting... 5 Required Software... 5 Mobile devices are not supported... 5 Using the Check System
Seavus Group 2013. All rights reserved www.seavusprojectviewer.com
Table of Contents: I Microsoft Office 2013 Style... 1 II Microsoft SharePoint Integration... 1 II.1 Connect to the EPM environment... 2 II.2 Import project plans... 2 II.3 Import Master project plans...
Upgrade to Microsoft Web Applications
Upgrade to Microsoft Web Applications Description Customers demand beautiful, elegant apps that are alive with activity. Demonstrate your expertise at designing and developing the fast and fluid Store
Design and Functional Specification
2010 Design and Functional Specification Corpus eready Solutions pvt. Ltd. 3/17/2010 1. Introduction 1.1 Purpose This document records functional specifications for Science Technology English Math (STEM)
How to Complete the Online Course Work for an Entry Level Clinic
How to Complete the Online Course Work for an Entry Level Clinic Start the Online Course Work After you ve selected and paid for an Entry Level clinic, a Online Lessons button will appear to the right
Rich Internet Applications
Rich Internet Applications [Image coming] Ryan Stewart Rich Internet Application Evangelist [email protected] Ryan Stewart Flex Developer for 3 years Rich Internet Application Blogger for 2 years http://blogs.zdnet.com/stewart/
An introduction to creating Web 2.0 applications in Rational Application Developer Version 8.0
An introduction to creating Web 2.0 applications in Rational Application Developer Version 8.0 September 2010 Copyright IBM Corporation 2010. 1 Overview Rational Application Developer, Version 8.0, contains
Web Development. How the Web Works 3/3/2015. Clients / Server
Web Development WWW part of the Internet (others: Email, FTP, Telnet) Loaded to a Server Viewed in a Browser (Client) Clients / Server Client: Request & Render Content Browsers, mobile devices, screen
LMS 365 Learning Module Builder Add-in Installation Guide VERSION 1.4.2.x
LMS 365 Learning Module Builder Add-in Installation Guide VERSION 1.4.2.x Contents 1. OVERVIEW AND SOFTWARE REQUIREMENTS... 3 1.1 AUDIENCE... 3 1.2 ABOUT THE ADD-IN... 3 1.3 SERVER SOFTWARE REQUIREMENTS:...
Dovico Timesheet v12 INSTALLATION GUIDE
v12 TABLE OF CONTENTS System Requirements... 1 NEW INSTALLATION... 2 UPGRADE from a previous version of Dovico Timesheet 5 System Requirements Deployment Options Either installed on your server or use
CA Productivity Accelerator v12.1.0.1:
CA Productivity Accelerator v12.1.0.1: Technical Specifications CA Productivity Accelerator is a single, synchronized content development platform which allows organizations deliver a broad range of user
Using the owncloud Android App
Using the owncloud Android App Accessing your files on your owncloud server via the Web interface is easy and convenient, as you can use any Web browser on any operating system without installing special
Best Practice Guide for constructing a study area in studentcentral which is designed for friendly viewing in Blackboard Mobile Learn
Best Practice Guide for constructing a study area in studentcentral which is designed for friendly viewing in Blackboard Mobile Learn Blackboard state that Blackboard Mobile Learn was designed to provide
Experimenting in the domain of RIA's and Web 2.0
Experimenting in the domain of RIA's and Web 2.0 Seenivasan Gunabalan IMIT IV Edition, Scuola Suoperiore Sant'Anna,Pisa, Italy E-mail: [email protected] ABSTRACT This paper provides an overview
Mobility with Eye-Fi Scanning Guide
Mobility with Eye-Fi Scanning Guide Scan and Transfer Images Wirelessly with Eye-Fi This document is to be used in addition to the scanner s user guide located on the installation disc. The instructions
Alerts. Some Alerts give you unique options for customizing the messages you receive. Calendar events, for instance, allow you to set how far in
Alerts, RSS and ical feeds Alerts and feeds are both methods of keeping current on site content that changes or updates frequently. The primary difference between them is that Alerts are active: whenever
Programming in HTML5 with JavaScript and CSS3
Course 20480B: Programming in HTML5 with JavaScript and CSS3 Course Details Course Outline Module 1: Overview of HTML and CSS This module provides an overview of HTML and CSS, and describes how to use
Firefox for Android. Reviewer s Guide. Contact us: [email protected]
Reviewer s Guide Contact us: [email protected] Table of Contents About Mozilla Firefox 1 Move at the Speed of the Web 2 Get Started 3 Mobile Browsing Upgrade 4 Get Up and Go 6 Customize On the Go 7 Privacy
Quick Reference / Install Guide v1.3
v1.3 Table of Contents License... 2 Supported Languages Disclaimer... 2 Roadmap... 2 Wordpress Support... 2 Twitter, Facebook / Social Media Support... 2 Installation... 3 Installation requirements...
Native v HTML5 An Event Planner s Primer
v HTML5 An Event Planner s Primer If you ve researched mobile apps for your conference, tradeshow or event, you ve probably come across the question or HTML5? Both provide an app experience designed for
How to use Google Drive
How to use Google Drive Google Drive is a free, web-based office suite and data storage service offered by Google. It enables users to create online documents and edit them collaboratively. As well as
LMS 365 Learning Module Builder Add-in User Guide VERSION 1.5.0.X
LMS 365 Learning Module Builder Add-in User Guide VERSION 1.5.0.X CONTENTS LMS 365 Learning Module Builder Add-in User Guide Version 1.5.0.x... 1 Contents... 2 1. The LMS365 Learning Module Builder Add-in...
INSTALLATION GUIDE ENTERPRISE DYNAMICS 9.0
INSTALLATION GUIDE ENTERPRISE DYNAMICS 9.0 PLEASE NOTE PRIOR TO INSTALLING On Windows 8, Windows 7 and Windows Vista you must have Administrator rights to install the software. Installing Enterprise Dynamics
Technical Specifications. Technical requirements for Eversheds E-Learning and Learning Management System (LMS)
Technical Specifications Technical requirements for Eversheds E-Learning and Learning Management System (LMS) 1 Learning Management System (LMS) Client Requirements... 3 Web browsers... 3 ActiveX security
Module 1. Internet Basics. Participant s Guide
Module 1 Internet Basics Participant s Guide Module 1: Internet Basics Objectives By the end of this training, you will be able to: Computer & Internet Basics Know the basic components of a computer and
PROJECT MANAGEMENT SYSTEM
Requirement Analysis Document v.2 14.12.2009 CENG-401 SOFTWARE ENGINEER PROJECT MANAGEMENT SYSTEM (Project Manager) Ahmet Edip SEÇKİN 07010555 (Developer) Erhan ŞEN 07010507 (Developer) Semih Serdar CENGİZOĞLU
Drive. Etobicoke-Mimico Watershed Coalition
Drive Etobicoke-Mimico Watershed Coalition (Adapted from Google Drive for Academics available at https://docs.google.com/document/d/1hvbqob26dkpeimv6srdgwvpupuo5ntvojqjxorq0n20/edit?pli=1) Table of Contents
DreamFactory & Modus Create Case Study
DreamFactory & Modus Create Case Study By Michael Schwartz Modus Create April 1, 2013 Introduction DreamFactory partnered with Modus Create to port and enhance an existing address book application created
AJAX: Highly Interactive Web Applications. Jason Giglio. [email protected]
AJAX 1 Running head: AJAX AJAX: Highly Interactive Web Applications Jason Giglio [email protected] AJAX 2 Abstract AJAX stands for Asynchronous JavaScript and XML. AJAX has recently been gaining attention
KonyOne Server Prerequisites _ MS SQL Server
KonyOne Server Prerequisites _ MS SQL Server KonyOne Platform Release 5.0 Copyright 2012-2013 Kony Solutions, Inc. All Rights Reserved. Page 1 of 13 Copyright 2012-2013 by Kony Solutions, Inc. All rights
How To Install the Virtual Learning App
Table of Contents Installation Instructions... 2 MAC: Using Firefox... 2 MAC: Using Chrome... 6 Disabling PepperFlash... 9 MAC: Using Safari Unsafe Mode We Can t Control So Use Firefox or Chrome... 11
Mobile Web Applications using HTML5. L. Cotfas 14 Dec. 2011
Mobile Web Applications using HTML5 L. Cotfas 14 Dec. 2011 Reasons for mobile web development Many different platforms: Android, IPhone, Symbian, Windows Phone/ Mobile, MeeGo (only a few of them) Reasons
Lesson One Creating the Website and the WordPress Process
Techedutainment Services Creating a Dynamic Website with WordPress Page 1 In the beginning and start up Welcome! I welcome to your WordPress class. This document provides a guideline to the lectures, exercises,
The Little Real-time Web Development Book
The Little Real-time Web Development Book Learn to apply real-time web development practices in your apps Roger Stringer This book is for sale at http://leanpub.com/real-time-web This version was published
Checking Browser Settings, and Basic System Requirements for QuestionPoint
Checking Browser Settings, and Basic System Requirements for QuestionPoint This document covers basic IE settings and system requirements necessary for QuestionPoint. These settings and requirements apply
SplendorNet. Pvt. Ltd. www. www. www. Riding The Future. Portfolio. You could say, we do it all... (and you'd be right.)
SplendorNet Pvt. Ltd. www www www Riding The Future Web Portfolio You could say, we do it all... (and you'd be right.) About Us SplendorNet Technologies Pvt. Ltd. is a fast growing company striving for
Create a Database Driven Application
Create a Database Driven Application Prerequisites: You will need a Bluemix account and an IBM DevOps Services account to complete this project. Please review the Registration sushi card for these steps.
Going Mobile-does your website work on mobile devices?
Going Mobile-does your website work on mobile devices? Going Mobile-does your website work on mobile devices? It is unlikely to have escaped your attention that people are now accessing the web from a
Welcome to Office 365!
This document includes: Welcome to Office 365! What is Office 365? How do I access Office 365? Create and Access Your Documents from Anywhere with SkyDrive Pro Connect and Collaborate through Office 365
Accessing Windows 7 in the Student Labs
Accessing Windows 7 in the Student Labs This document explains how to access and use Windows 7 and some of the software installed on Windows 7, such as Microsoft Office 2010, on the student lab computers.
Digital Storage Options MAKING ROOM IN THE CLOUD
Digital Storage Options MAKING ROOM IN THE CLOUD Today s Objectives Download and start using Microsoft 365 and more specifically, OneDrive Digital Storage: Personally Speaking Dropbox As many accounts
HTML5 & Digital Signage
HTML5 & Digital Signage An introduction to Content Development with the Modern Web standard. Presented by Jim Nista CEO / Creative Director at Insteo HTML5 - the Buzz HTML5 is an industry name for a collection
Using D2L Brightspace for the First Time
Using D2L Brightspace for the First Time Online courses at Saint Paul College require access to D2L Brightspace a learning management system designed for providing course information online. By utilizing
Cross Bulk Mailer 6.1 User Guide
http://dnnmodule.com/ Page 1 of 16 Cross Bulk Mailer 6.1 User Guide (The best email marketing module for DNN 7) http://dnnmodule.com 7/26/2015 Cross Software, China Skype: [email protected] QQ: 35206992
<Insert Picture Here> Oracle Application Express 4.0
Oracle Application Express 4.0 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any
RIA DEVELOPMENT OPTIONS - AIR VS. SILVERLIGHT
RIA DEVELOPMENT OPTIONS - AIR VS. SILVERLIGHT Oxagile 2010 www.oxagile.com TABLE OF CONTENTS 1 ATTRIBUTION... 3 2 ABOUT OXAGILE... 4 3 QUESTIONNAIRE... 5 3.1 DO YOU THINK AIR AND SILVERLIGHT ARE COMPARABLE
Open Source Content Management System for content development: a comparative study
Open Source Content Management System for content development: a comparative study D. P. Tripathi Assistant Librarian Biju Patnaik Central Library NIT Rourkela [email protected] Designing dynamic and
SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1
SUBJECT TITLE : WEB TECHNOLOGY SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1 16 02 2. CSS & JAVASCRIPT Test
Building Library Website using Drupal
Building Library Website using Drupal Building the Library Web Site "The Web is quickly becoming the world's fastest growing repository of data." [Tim Berners-Lee, W3C director and creator of the World
WordPress & RSS: What You Need to Know
Revised June-2011 Cooperative Extension Technology Services : What You Need to Know Many websites, including Coop s WordPress sites, use RSS technology to continuously feed announcements of their latest
Getting Started with Attunity CloudBeam for Azure SQL Data Warehouse BYOL
Getting Started with Attunity CloudBeam for Azure SQL Data Warehouse BYOL Overview This short guide explains how to use Attunity CloudBeam to replicate data from your on premises database to Microsoft
Why HTML5 Tests the Limits of Automated Testing Solutions
Why HTML5 Tests the Limits of Automated Testing Solutions Why HTML5 Tests the Limits of Automated Testing Solutions Contents Chapter 1 Chapter 2 Chapter 3 Chapter 4 As Testing Complexity Increases, So
MEGA Web Application Architecture Overview MEGA 2009 SP4
Revised: September 2, 2010 Created: March 31, 2010 Author: Jérôme Horber CONTENTS Summary This document describes the system requirements and possible deployment architectures for MEGA Web Application.
1 (11) Paperiton DMS Document Management System System Requirements Release: 2012/04 2012-04-16
1 (11) Paperiton DMS Document Management System System Requirements Release: 2012/04 2012-04-16 2 (11) 1. This document describes the technical system requirements for Paperiton DMS Document Management
User Guide. CIIT Faculty/Staff Portal. For using. Version 1.0. Prepared by: CIIT Web Team. COMSATS Institute of Information Technology, Islamabad
User Guide For using CIIT Faculty/Staff Portal Version 1.0 Prepared by: CIIT Web Team COMSATS Institute of Information Technology, Islamabad 17 th October, 2012 Page 1 1. Introduction 1.1 Purpose This
Introduction to Cloud Storage GOOGLE DRIVE
Introduction to Cloud Storage What is Cloud Storage? Cloud computing is one method to store and access data over the internet instead of using a physical hard drive (e.g. computer s hard drive, flash drive,
How To Develop A Mobile App With Phonegap
Introduction to Mobile Development with PhoneGap Yeah it s pretty awesome. Who is this guy? Andrew Trice Technical Evangelist, Adobe [email protected] http://tricedesigns.com @andytrice http://github.com/triceam
Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory. 2012 IBM Corporation 1
Developing Exceptional Mobile and Multi-Channel Applications using IBM Web Experience Factory 1 Agenda Mobile web applications and Web Experience Factory High-level tour of Web Experience Factory automation
cbox YOUR FILES GO MOBILE! FOR ANDROID SMARTPHONES AND TABLETS USER MANUAL
cbox YOUR FILES GO MOBILE! FOR ANDROID SMARTPHONES AND TABLETS USER MANUAL Introduction cbox is a software that you can easily install on your computer. Once done, an online storage drive cbox appears
Worksheet - Document management and Cloud Services on the ipad
Worksheet - Document management and Cloud Services on the ipad This worksheet requires installation of the following ipad apps: Adobe Reader, Google Drive, Chrome, Windows Skydrive, Dropbox and Goodreader.
The Commerce Trust Company
The Commerce Trust Company WEALTH MANAGER Overview Guide New Page Layout The pages within Wealth Manager have been designed to provide a consistent experience throughout a vast array of features. Each
How to Setup, Install & Run a Website on your Local Computer. For WordPress - on an Offline Server - WAMP
How to Setup, Install & Run a Website on your Local Computer For WordPress - on an Offline Server - WAMP Index: Determine Operating System Status Download WAMP Server Download Latest WordPress Installing
Best Free Magento Extensions for Social Network By : M Connect Media
Best Free Magento Extensions for Social Network By : M Connect Media About Social Shopping Social shopping and reference are one of the most excellent features added in ecommerce from last few years. Magento
How To Create A Website In Drupal 2.3.3
www.webprophets.com.au PO Box 2007 St Kilda West Victoria Australia 3182 Phone +61 3 9534 1800 Fax +61 3 9534 1100 Email [email protected] Web www.webprophets.com.au Welcome to the Drupal How to
IIT MOBILEPRINT. Mobileprint Workflow
IIT MOBILEPRINT Mobileprint integrates with existing OTS printing system to enable user to print documents, images and email messages using email client or a web capable devices. This include smartphones,
Lesson 7 - Website Administration
Lesson 7 - Website Administration If you are hired as a web designer, your client will most likely expect you do more than just create their website. They will expect you to also know how to get their
OXFORD PREMIUM REGISTRATION. IMPORTANT Please ensure you have registered with Oxford Premium before using our digital resources.
OXFORD PREMIUM REGISTRATION IMPORTANT Please ensure you have registered with Oxford Premium before using our digital resources. Visit www.oxfordpremium.es If you are not an existing user, please click
Take Your Rocket U2 Apps Mobile with Rocket LegaSuite. Greg Mummah, Product Manager Rocket Software
Take Your Rocket U2 Apps Mobile with Rocket LegaSuite Greg Mummah, Product Manager Rocket Software Greg Mummah Product Manager Managed application modernization team at municipal government software vendor
Resco CRM Guide. Get to know Resco CRM
Resco CRM Guide Get to know Resco CRM Table of Contents Introducing Resco CRM... 3 1.1. What is Resco CRM...3 1.2. Capabilities of Resco CRM... 4 1.3. Who should use Resco CRM...5 1.4. What are the main
Accessing vlabs using the VMware Horizon View Client for OSX
Accessing vlabs using the VMware Horizon View Client for OSX This document will demonstrate how to download, install, and connect to a virtual lab desktop from a personal Mac OSX computer using the VMware
Mobile Learning Application Based On Hybrid Mobile Application Technology Running On Android Smartphone and Blackberry
Mobile Learning Application Based On Hybrid Mobile Application Technology Running On Android Smartphone and Blackberry Djoni Haryadi Setiabudi, Lady Joanne Tjahyana,Winsen Informatics Department Petra
Zimbra to Gmail Migration
Zimbra to Gmail Migration There are two steps that you need to complete prior to having us migrate your email from Zimbra to Gmail. These steps must be completed by November 9, 2012. If you experience
Switching to Gmail from Microsoft Outlook
Welcome to Gmail What's different, at a glance... Now that you've switched from Microsoft Outlook to Google Apps, here are some tips on beginning to use Gmail as your new mail program. In Microsoft Outlook,
RDM+ Desktop for Windows Getting Started Guide
RDM+ Remote Desktop for Mobiles RDM+ Desktop for Windows Getting Started Guide Introduction... 3 1. Installing RDM+ Desktop on a computer... 3 2. Preparing for remote connection... 4 3. RDM+ Desktop window...
Reading an email sent with Voltage SecureMail. Using the Voltage SecureMail Zero Download Messenger (ZDM)
Reading an email sent with Voltage SecureMail Using the Voltage SecureMail Zero Download Messenger (ZDM) SecureMail is an email protection service developed by Voltage Security, Inc. that provides email
Visualizing an OrientDB Graph Database with KeyLines
Visualizing an OrientDB Graph Database with KeyLines Visualizing an OrientDB Graph Database with KeyLines 1! Introduction 2! What is a graph database? 2! What is OrientDB? 2! Why visualize OrientDB? 3!
Transitioning Your School Email Account
Transitioning Your School Email Account This tutorial will walk you through transferring the email and other data from your School account to a personal email account. Establish a New Email Address (or
Deepak Patil (Technical Director) [email protected] iasys Technologies Pvt. Ltd.
Deepak Patil (Technical Director) [email protected] iasys Technologies Pvt. Ltd. The term rich Internet application (RIA) combines the flexibility, responsiveness, and ease of use of desktop applications
Developing Cross-platform Mobile and Web Apps
1 Developing Cross-platform Mobile and Web Apps Xiang Mao 1 and Jiannong Xin * 2 1 Department of Electrical and Computer Engineering, University of Florida 2 Institute of Food and Agricultural Sciences
Adobe Connect Support Guidelines
THINK TANK Online Services Adobe Connect Support Guidelines Page 1 Contents Introduction... 4 What is Adobe Connect?... 4 Adobe Connect Usage Quick Guide... 4 Items Required for Accessing Think Tank Online
Remote Desktop Web Access. Using Remote Desktop Web Access
Remote Desktop Web Access What is RD Web Access? RD Web Access is a Computer Science service that allows you to access department software and machines from your Windows or OS X computer, both on and off
Credits: Some of the slides are based on material adapted from www.telerik.com/documents/telerik_and_ajax.pdf
1 The Web, revisited WEB 2.0 [email protected] Credits: Some of the slides are based on material adapted from www.telerik.com/documents/telerik_and_ajax.pdf 2 The old web: 1994 HTML pages (hyperlinks)
