}w!"#$%&'()+,-./012345<ya

Size: px
Start display at page:

Download "}w!"#$%&'()+,-./012345<ya"

Transcription

1 Masaryk University Faculty of Informatics }w!"#$%&'()+,-./012345<ya Information System in Go Language Master Thesis Slavomír Polák Brno, Spring 2017

2 Declaration Hereby I declare, that this paper is my original authorial work, which I have worked out by my own. All sources, references and literature used or excerpted during elaboration of this work are properly cited and listed in complete reference to the due source. Slavomír Polák Advisor: doc. RNDr. Tomáš Pitner, Ph.D. ii

3 Acknowledgement I would like to thank to my supervisor doc. RNDr. Tomáš Pitner, Ph.D. for his professional guidance, methodical support, which he provided me during my work on this thesis. Also, I would like to thank to my family and friends for their support. iii

4 Abstract The aim of the master thesis, is creating of a design and implementation of information system in Go language. At first, frameworks that are used in this work are described. In the next steps we analyze customer s requirements and create design, that we implement. In implementation we use Revel framework for creating a web application and Gorp framework for database implementation. iv

5 Keywords golang, framework, Revel, Gorp, information system, design of information system, web application v

6 Contents 1 Introduction Web app with Revel How to work with Revel Routing Storing data in Revel How does Revel works Database in Go Competition Analysis Current situation facebook blablacar.cz Software lifecycle Requirements Non-functional requirements Functional requirements Design Use case Implementation Verification Maintenance Conclusion Appendix vi

7 1 Introduction In modern information world, every company, even the small ones have to work with data. They store data about their customers, employees, trades and others. Then we analyses the data for increasing of our profit. We need to know which product is best seller or which one is problem to sell. Also in these days, connection with the rest of the world is essential. We need to know our competition, what they can offer and their prices for similar goods to ours. Customers mostly find their goods on the Internet. So it s important to have web page, so we can be online. Every company has it s own business processes. It is not really hard to maintain business processes if we are in a small company. But if we are in a larger company, or if we are a part of bigger concern, it s easier for us to maintain processes and communication by computer. Solution for these three points is Information System (IS). Every one of us heard of it and even worked with some kind of IS. IS are often created for special user (certain company or enterprise). In this work, we create IS for certain customer. Our customer share his car with other people that have the same journey. Customer shares ride only with people that he knows, or the passenger who knows some of his friends. For creating IS, we use Golang (Go). Go was created by Google and it s strongly typed and has a garbage collector. Go has good support for use of concurrent porgramming, which we can use in our application (request processing). Due to the fact that we need to find customers (passengers) on the internet, even if we know them, we have to create web application. For this kind of web application is pure HTML 1 pages with a bit of styling with CSS 2 not enough and that s another reason for using Go. It is possible to create web application by using only Go, but if we already have invented wheel, why to try it invent again? So rather than making app form scratch, we use framework named Revel. Revel is framework for creating web app with Go, 1. HyperText Markup Languages 2. Cascading Style Sheets - changes presentation of data in markup languages 1

8 1. Introduction but it lacks support for database. We need to use another framework for creating and working with database, which is Gorp. With help of Gorp, we can build our application at the top of the SQLite 3 database. 3. open source, embeded relational database 2

9 2 Web app with Revel If we want to create a web based application in Go, we can do this on our own from scratch, or we can use framework. Revel[1] is framework for creating a web based application in Go. It is based on Model-View-Controller Software architecture, which splits application into three layers. Model that describes data, View that presents data from Model and Controller which processes requests and then makes changes in view or model. Its main advantages are steep learning curve (it s easy to learn) and hot code reaload. Every time, when you change something in your project in /app directory, Revel watchers will notice that changes have been made, and then Revel recompile your code and you can see changes immediately. Because of that, all views, controllers and models, needs to be stored under this directory. For a web developer, it is really time saving if you don t have to restart your server or recompile the whole source code. 2.1 How to work with Revel If you want to create application in Revel, you need three things[1]: Go version at least 1.4 Git or Mercurial, because you will need to get various dependencies for Revel Revel framework. For installing Revel, you just run go get github.com/revel/revel from command line in unix based Operation Systems. It clones Revel framework to your $GOPATH repository and get all of the dependencies and packages that s needed for running applications under Revel. Now you can create Revel application by revel new [name] in command line. Application will be created in your \$GOPATH/src directory. 3

10 2. Web app with Revel For running the application, you need to do revel run [name] and then go to in your web browser. With basic knowledge of common web based applications you can create your own application really fast. You need to follow these steps: Define Model[1] that can be used in your application. In case of Go and Revel, you need to create struct with attributes of Model[3]. If you look at the code below, we have struct User with string atribute Name. If we want, we can add there some validation control. In our example, we had parameter Name that is required and needs to have at least 3 characters and maximum count of characters is 6. Because of Validation function, we need to import github.com/revel/revel. Revel provides good validation facility. All functions used for Validation are native and each of them return ValidationResult, if one of them will fail, function Validate returns Error. We can also add our own error message as you can see in our example at line 12. package models import ( " github. com/ r e v e l / r e v e l " ) type User s t r u c t { Name s t r i n g } func ( user *User ) Validate ( v * r e v e l. Validation ) { v. Required ( user.name). Message ( "A User Name i s required! " ) v. MinSize ( user. Name, 4). Message ( " At l e a s t 4 c h a r a c t e r s i s needed " ) v. MaxSize ( user. Name, 6). Message ( ) } Native validation in Revel also supports Match case, where you can compare given parameter with regexp. All models need to be stored in /app directory, because of Revel hot code reaload. Now we Define controller[1][2]. Controller is any type, that embeds 4

11 Bibliography [1] Revel framework [online]. May [2] SAENZ JEREMY, Building Web Apps with Go. GitBook 2015 [3] ANONYMOUS, Build web application with Golang. GitBook 2017 [4] Gorp framework [online]. November [5] Revel, GORP, and MySQL Building a classic 3-tier web application controller in Golang. [online]. November

today what is this course about? what is this course about? Welcome to CSC309! Programming on the Web APRIL 05

today what is this course about? what is this course about? Welcome to CSC309! Programming on the Web APRIL 05 Welcome to CSC309! Programming on the Web Amir H. Chinaei, Spring 2017 ahchinaei@cs.toronto.edu http://www.cs.toronto.edu/~ahchinaei/ Office hours: M 3:45-5:45 BA4222 today course outline (bird s-eye view)

More information

HTML & CSS. Rupayan Neogy

HTML & CSS. Rupayan Neogy HTML & CSS Rupayan Neogy But first My Take on Web Development There is always some tool that makes your life easier. Hypertext Markup Language The language your web browser uses to describe the content

More information

Modules of Content Management Systems and their Reusability

Modules of Content Management Systems and their Reusability Modules of Content Management Systems and their Reusability Michal JAKUBÍK Slovak University of Technology Faculty of Informatics and Information Technologies Ilkovičova 3, 842 16 Bratislava, Slovak republic

More information

Enterprise Software Architecture & Design

Enterprise Software Architecture & Design Enterprise Software Architecture & Design Characteristics Servers application server, web server, proxy servers etc. Clients heterogeneous users, business partners (B2B) scale large number of clients distributed

More information

Requirements Specification

Requirements Specification Redesign of the Software Engineering Site (R.O.S.E.S.) Requested by: Dr. Timoth Lederman Professor Department of Computer Science Siena College Delivered By: Prepared By: Kurt Greiner Daniel Rotondo Ryan

More information

Human-Computer Interaction Design

Human-Computer Interaction Design Human-Computer Interaction Design COGS120/CSE170 - Intro. HCI Instructor: Philip Guo Lab 1 - Version control and HTML (2018-10-03) by Michael Bernstein, Scott Klemmer, Philip Guo, and Sean Kross [Announce

More information

STANDARD REST API FOR

STANDARD REST API FOR STANDARD REST API FOR EMAIL Kalana Guniyangoda (118209x) Dissertation submitted in partial fulfillment of the requirements for the degree Master of Science Department of Computer Science & Engineering

More information

COMP4971C - Independent Work Final Report

COMP4971C - Independent Work Final Report COMP4971C - Independent Work Final Report Mobile social application with community-based content rating and sorting algorithm KU Chun KIt Advised by Dr. David Rossiter Department of Computer Science and

More information

Human-Computer Interaction Design

Human-Computer Interaction Design Human-Computer Interaction Design COGS120/CSE170 - Intro. HCI Instructor: Philip Guo, Lab TA: Sean Kross Lab 1 - Version control and HTML (2017-10-06) by Michael Bernstein, Scott Klemmer, Philip Guo, and

More information

BINUS INTERNATIONAL UNIVERSITAS BINA NUSANTARA. Computer Science Major. Multimedia Stream. Computer Science Thesis Bachelor

BINUS INTERNATIONAL UNIVERSITAS BINA NUSANTARA. Computer Science Major. Multimedia Stream. Computer Science Thesis Bachelor BINUS INTERNATIONAL UNIVERSITAS BINA NUSANTARA Computer Science Major Multimedia Stream Computer Science Thesis Bachelor Even Semester Year 2006/2007 School Support Integrated System An Approach to Improve

More information

The Structure of the Web. Jim and Matthew

The Structure of the Web. Jim and Matthew The Structure of the Web Jim and Matthew Workshop Structure 1. 2. 3. 4. 5. 6. 7. What is a browser? HTML CSS Javascript LUNCH Clients and Servers (creating a live website) Build your Own Website Workshop

More information

Introduction to web development and HTML MGMT 230 LAB

Introduction to web development and HTML MGMT 230 LAB Introduction to web development and HTML MGMT 230 LAB After this lab you will be able to... Understand the VIU network and web server environment and how to access it Save files to your web folder for

More information

Introduction to Git and GitHub for Writers Workbook February 23, 2019 Peter Gruenbaum

Introduction to Git and GitHub for Writers Workbook February 23, 2019 Peter Gruenbaum Introduction to Git and GitHub for Writers Workbook February 23, 2019 Peter Gruenbaum Table of Contents Preparation... 3 Exercise 1: Create a repository. Use the command line.... 4 Create a repository...

More information

205CDE: Developing the Modern Web. Assignment 1: Designing a Website. Scenario: D Bookshop

205CDE: Developing the Modern Web. Assignment 1: Designing a Website. Scenario: D Bookshop 205CDE: Developing the Modern Web Assignment 1: Designing a Website Scenario: D Bookshop Introduction I decided to make a second hand bookshop website. There are some reasons why I made this choice. Mainly

More information

Location Based Selling Platform for Mobile Buyers

Location Based Selling Platform for Mobile Buyers Location Based Selling Platform for Mobile Buyers M. M. Buddhika Mawella 149219M Faculty of Information Technology University of Moratuwa April 2017 Location Based Selling Platform for Mobile Buyers M.

More information

Modern and Responsive Mobile-enabled Web Applications

Modern and Responsive Mobile-enabled Web Applications Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 110 (2017) 410 415 The 12th International Conference on Future Networks and Communications (FNC-2017) Modern and Responsive

More information

Acceptance Test. Smart Scheduling. Empire Unlimited. Requested by:

Acceptance Test. Smart Scheduling. Empire Unlimited. Requested by: Smart Scheduling Requested by: Dr. Robert Yoder Computer Science Department Head Siena College Department of Computer Science Prepared by: Meghan Servello Thomas Mottola Jonathan Smith Jason Czajkowski

More information

WebApp development. Outline. Web app structure. HTML basics. 1. Fundamentals of a web app / website. Tiberiu Vilcu

WebApp development. Outline. Web app structure. HTML basics. 1. Fundamentals of a web app / website. Tiberiu Vilcu Outline WebApp development Tiberiu Vilcu Prepared for EECS 411 Sugih Jamin 20 September 2017 1 2 Web app structure HTML basics Back-end: Web server Database / data storage Front-end: HTML page CSS JavaScript

More information

Enterprise Web based Software Architecture & Design

Enterprise Web based Software Architecture & Design IMPORTANT NOTICE TO STUDENTS These slides are NOT to be used as a replacement for student notes. These slides are sometimes vague and incomplete on purpose to spark class discussions Enterprise Web based

More information

Blog site (cont.) theme, 202 view creations, 205 Browser tools, 196 Buytaert, Dries, 185

Blog site (cont.) theme, 202 view creations, 205 Browser tools, 196 Buytaert, Dries, 185 Index A Administration, 157 backups and restore (see Backups and restore website) file system, 161 log files, 162 tasks, 157 updates and security patches, 165 user accounts, 166 Aggregator module, 218

More information

How to use CSS text styles

How to use CSS text styles How to use CSS text styles Web typography is an important creative tool web designers use to express style and emotion that enhances the goal and overall message of a website. Image-based text gives you

More information

THE PRAGMATIC INTRO TO REACT. Clayton Anderson thebhwgroup.com WEB AND MOBILE APP DEVELOPMENT AUSTIN, TX

THE PRAGMATIC INTRO TO REACT. Clayton Anderson thebhwgroup.com WEB AND MOBILE APP DEVELOPMENT AUSTIN, TX THE PRAGMATIC INTRO TO REACT Clayton Anderson thebhwgroup.com WEB AND MOBILE APP DEVELOPMENT AUSTIN, TX REACT "A JavaScript library for building user interfaces" But first... HOW WE GOT HERE OR: A BRIEF

More information

Cascading Style Sheets - Designing for the Web

Cascading Style Sheets - Designing for the Web Cascading Style Sheets - Designing for the Web Page 1 of 11 Cascading Style Sheets DESIGNING FOR THE WEB Third Edition SAMPLE DOCUMENT Page 2 of 11 Page 3 of 11 Cascading Style Sheets DESIGNING FOR THE

More information

UNIT -II. Language-History and Versions Introduction JavaScript in Perspective-

UNIT -II. Language-History and Versions Introduction JavaScript in Perspective- UNIT -II Style Sheets: CSS-Introduction to Cascading Style Sheets-Features- Core Syntax-Style Sheets and HTML Style Rle Cascading and Inheritance-Text Properties-Box Model Normal Flow Box Layout- Beyond

More information

COST OPTIMIZATION AND WORK QUALITY IMPROVEMENT OF SMALL AND MEDIUM ENTERPRISES IN SERVICE ACTIVITIES BY USING A WEB APPLICATION

COST OPTIMIZATION AND WORK QUALITY IMPROVEMENT OF SMALL AND MEDIUM ENTERPRISES IN SERVICE ACTIVITIES BY USING A WEB APPLICATION ISSN 1846-6168 (Print), ISSN 1848-5588 (Online) ID: TG-20170328162304 Original scientific paper COST OPTIMIZATION AND WORK QUALITY IMPROVEMENT OF SMALL AND MEDIUM ENTERPRISES IN SERVICE ACTIVITIES BY USING

More information

Passwords. Twitter UN: IDANRV Twitter PW: idanrv1. Thank You

Passwords. Twitter UN: IDANRV Twitter PW: idanrv1. Thank You Passwords Twitter UN: IDANRV Twitter PW: idanrv1 Thank You USER'S MANUAL TABLE OF CONTENTS Page # 1.1 SYSTEM OVERVIEW... 4 1.2 DEFINITIONS & ACRONYMS... 4 1.3 REFERENCES... 4 2.0 INSTALLATION... 5 2.1

More information

Design and Implementation of File Sharing Server

Design and Implementation of File Sharing Server Design and Implementation of File Sharing Server Firas Abdullah Thweny Al-Saedi #1, Zaianb Dheya a Al-Taweel *2 # 1,2 Computer Engineering Department, Al-Nahrain University, Baghdad, Iraq Abstract this

More information

Human-Computer Interaction Design

Human-Computer Interaction Design Human-Computer Interaction Design COGS120/CSE170 - Intro. HCI Instructor: Philip Guo Lab 4 - Simulating a backend without needing a server (2017-11-03) made by Philip Guo, derived from labs by Michael

More information

Nextcloud 13: How to Get Started and Why You Should

Nextcloud 13: How to Get Started and Why You Should Nextcloud 13: How to Get Started and Why You Should Nextcloud could be the first step toward replacing proprietary services like Dropbox and Skype. By Marco Fioretti In its simplest form, the Nextcloud

More information

Diploma in Web Development Part I

Diploma in Web Development Part I Diploma in Web Development Part I Lesson 1 The Web Development Full Stack Presented by: Julian Quirke Web Development Educator Webinar Interaction Any questions? Our support team are here to help Chat

More information

COS 333: Advanced Programming Techniques. Copyright 2017 by Robert M. Dondero, Ph.D. Princeton University

COS 333: Advanced Programming Techniques. Copyright 2017 by Robert M. Dondero, Ph.D. Princeton University COS 333: Advanced Programming Techniques Copyright 2017 by Robert M. Dondero, Ph.D. Princeton University 1 Agenda Introductions Course Overview Resources Topics Assignments Project (briefly) Schedule (briefly)

More information

IOS 9 App Development Essentials: Learn To Develop IOS 9 Apps Using Xcode 7 And Swift 2 By Neil Smyth

IOS 9 App Development Essentials: Learn To Develop IOS 9 Apps Using Xcode 7 And Swift 2 By Neil Smyth IOS 9 App Development Essentials: Learn To Develop IOS 9 Apps Using Xcode 7 And Swift 2 By Neil Smyth Neil Smyth - ios 9 App Development Essentials: Learn to Develop ios 9 Apps Using Xcode 7 and Swift

More information

Full Stack boot camp

Full Stack boot camp Name Full Stack boot camp Duration (Hours) JavaScript Programming 56 Git 8 Front End Development Basics 24 Typescript 8 React Basics 40 E2E Testing 8 Build & Setup 8 Advanced JavaScript 48 NodeJS 24 Building

More information

Using AJAX to Easily Integrate Rich Media Elements

Using AJAX to Easily Integrate Rich Media Elements 505 Using AJAX to Easily Integrate Rich Media Elements James Monroe Course Developer, WWW.eLearningGuild.com The Problem: How to string together several rich media elements (images, Flash movies, video,

More information

Overview of Web Application Development

Overview of Web Application Development Overview of Web Application Development Web Technologies I. Zsolt Tóth University of Miskolc 2018 Zsolt Tóth (University of Miskolc) Web Apps 2018 1 / 34 Table of Contents Overview Architecture 1 Overview

More information

Modern Web Application Development. Sam Hogarth

Modern Web Application Development. Sam Hogarth Modern Web Application Development Sam Hogarth Some History Early Web Applications Server-side scripting only e.g. PHP/ASP Basic client-side scripts JavaScript/JScript/VBScript Major differences in browser

More information

CSC309 Winter Lecture 2. Larry Zhang

CSC309 Winter Lecture 2. Larry Zhang CSC309 Winter 2016 Lecture 2 Larry Zhang 1 Announcements Assignment 1 is out, due Jan 25, 10pm. Start Early! Work in groups of 2, make groups on MarkUs. Make sure you can login to MarkUs, if not let me

More information

CptS 360 (System Programming) Unit 3: Development Tools

CptS 360 (System Programming) Unit 3: Development Tools CptS 360 (System Programming) Unit 3: Development Tools Bob Lewis School of Engineering and Applied Sciences Washington State University Spring, 2018 Motivation Using UNIX-style development tools lets

More information

Cloud platforms T Mobile Systems Programming

Cloud platforms T Mobile Systems Programming Cloud platforms T-110.5130 Mobile Systems Programming Agenda 1. Motivation 2. Different types of cloud platforms 3. Popular cloud services 4. Open-source cloud 5. Cloud on this course 6. Some useful tools

More information

Automatic content migration from Kentico Draft to Kentico CMS

Automatic content migration from Kentico Draft to Kentico CMS Masaryk University Faculty of Informatics Automatic content migration from Kentico Draft to Kentico CMS Master s Thesis Tomáš Hrubý Brno, Spring 2016 Masaryk University Faculty of Informatics Automatic

More information

National College of Ireland BSc in Computing 2017/2018. Deividas Sevcenko X Multi-calendar.

National College of Ireland BSc in Computing 2017/2018. Deividas Sevcenko X Multi-calendar. National College of Ireland BSc in Computing 2017/2018 Deividas Sevcenko X13114654 X13114654@student.ncirl.ie Multi-calendar Technical Report Table of Contents Executive Summary...4 1 Introduction...5

More information

Web Information System Design. Tatsuya Hagino

Web Information System Design. Tatsuya Hagino Web Information System Design Tatsuya Hagino (hagino@sfc.keio.ac.jp) 1 Course Summary Understanding the current Web architecture Web components Web as document space Structure of Web documents Web principles

More information

LAUNDRY SERVICES. T V R Pavani, Mani Susarla, J Naveen Sai, Sushmanth Sai M Fathima (Assistant Professor)

LAUNDRY SERVICES. T V R Pavani, Mani Susarla, J Naveen Sai, Sushmanth Sai M Fathima (Assistant Professor) LAUNDRY SERVICES T V R Pavani, Mani Susarla, J Naveen Sai, Sushmanth Sai M Fathima (Assistant Professor) 1 2 3 4 ABSTRACT This project involves building an android application on laundry services using

More information

The following pages within this guide will explain to you stepby-step how to set up your sites.

The following pages within this guide will explain to you stepby-step how to set up your sites. Thank you for purchasing VORTEX 47. VORTEX 47 websites are loaded with some of the Highest Gravity, Most Popular items listed on Clickbank. These sites are optimized for Google Adsense Ads as well as Amazon

More information

1. I NEED TO HAVE MULTIPLE VERSIONS OF VISUAL STUDIO INSTALLED IF I M MAINTAINING APPLICATIONS THAT RUN ON MORE THAN ONE VERSION OF THE.

1. I NEED TO HAVE MULTIPLE VERSIONS OF VISUAL STUDIO INSTALLED IF I M MAINTAINING APPLICATIONS THAT RUN ON MORE THAN ONE VERSION OF THE. CUSTOMER PAIN POINTS 1. I NEED TO HAVE MULTIPLE VERSIONS OF VISUAL STUDIO INSTALLED IF I M MAINTAINING APPLICATIONS THAT RUN ON MORE THAN ONE VERSION OF THE.NET FRAMEORK. THAT S TAKING UP SPACE ON MY HARDDRIVE

More information

Timelog System on Android OS

Timelog System on Android OS Degree project Timelog System on Android OS I Author: Mohammad Ali Rezaei Date: 2012-12-15 Subject: Computer Science Level: Master Course code: 5DV00E Abstract Usage of smart phones has become more common

More information

Go Forth and Code. Jonathan Gertig. CSC 415: Programing Languages. Dr. Lyle

Go Forth and Code. Jonathan Gertig. CSC 415: Programing Languages. Dr. Lyle J o n a t h a n G e r t i g P a g e 1 Go Forth and Code Jonathan Gertig CSC 415: Programing Languages Dr. Lyle 2013 J o n a t h a n G e r t i g P a g e 2 Go dogs Go or A Brief History of Go 6 years ago

More information

Licensing Guide for Partners

Licensing Guide for Partners Microsoft PowerApps & Microsoft Flow Licensing Guide for Partners November 2016 The Microsoft PowerApps & Flow Licensing Guide November 2016 Contents Introduction to Microsoft PowerApps & Microsoft Flow...

More information

Introduction to HTML and CSS. Arts and Humanities in the Digital Age 2018 CHASE DTP Dr. Paul Gooding

Introduction to HTML and CSS. Arts and Humanities in the Digital Age 2018 CHASE DTP Dr. Paul Gooding Introduction to HTML and CSS Arts and Humanities in the Digital Age 2018 CHASE DTP Dr. Paul Gooding p.gooding@uea.ac.uk @pmgooding Session Outline Introduction How do the web, and web browsers work? Getting

More information

TOP DEVELOPERS MINDSET. All About the 5 Things You Don t Know.

TOP DEVELOPERS MINDSET. All About the 5 Things You Don t Know. MINDSET TOP DEVELOPERS All About the 5 Things You Don t Know 1 INTRODUCTION Coding and programming are becoming more and more popular as technology advances and computer-based devices become more widespread.

More information

Cascading Style Sheets: Designing For The Web By Bert Bos, Hakon Wium Lie READ ONLINE

Cascading Style Sheets: Designing For The Web By Bert Bos, Hakon Wium Lie READ ONLINE Cascading Style Sheets: Designing For The Web By Bert Bos, Hakon Wium Lie READ ONLINE Web browsers apply CSS rules to a document to affect how they are. the DOM helps you design, debug and maintain your

More information

Get Dynamic! How a Content Managment System (CMS) Improves Business Efficiencies. DMXReady + You = Powerful Web Solutions.

Get Dynamic! How a Content Managment System (CMS) Improves Business Efficiencies. DMXReady + You = Powerful Web Solutions. How a Content Managment System (CMS) Improves Business Efficiencies Table of Contents 2 IT For The Masses 3 Are You a Web Professional? Are You a Do-It-Yourselfer? 4 Migrate Your Current Site in Five Steps

More information

LEARN JAVA FOR WEB DEVELOPMENT

LEARN JAVA FOR WEB DEVELOPMENT LEARN JAVA FOR WEB DEVELOPMENT PDF File: Learn Java For Web Development 1 RELATED BOOK : Learn Java for Web Development Modern Java Web Web development is still one of today's most popular, active, and

More information

Oracle Adapter for Salesforce Lightning. Winter 18. New Feature Summary

Oracle Adapter for Salesforce Lightning. Winter 18. New Feature Summary Oracle Adapter for Salesforce Lightning Winter 18 New Feature Summary TABLE OF CONTENTS REVISION HISTORY... 3 OVERVIEW... 4 ORACLE ADAPTER FOR SALESFORCE LIGHTNING... 4 LIGHTNING TRANSACTION UI... 4 File

More information

Bookface.com: html - Java: 2017 Ultimate Beginners Guide to Learn Java Programming ( java for. Beginner's Box Set: Learn HTML, HTML5 & CSS3, Java,

Bookface.com: html - Java: 2017 Ultimate Beginners Guide to Learn Java Programming ( java for. Beginner's Box Set: Learn HTML, HTML5 & CSS3, Java, Programming For Beginner's Box Set: Learn HTML, HTML5 & CSS3, Java, PHP & MySQL, C# With The Ultimate Guides For Beginner's (Programming For Beginners In Under 8 Hours!) By T. J Wilson READ ONLINE Bookface.com:

More information

Front-End Web Developer Nanodegree Syllabus

Front-End Web Developer Nanodegree Syllabus Front-End Web Developer Nanodegree Syllabus Build Stunning User Experiences Before You Start You've taken the first step toward becoming a web developer by choosing the Front End Web Developer Nanodegree

More information

Grade 9 :The Internet and HTML Code Unit 1

Grade 9 :The Internet and HTML Code Unit 1 Internet Basic: The internet is a world-wide system of computer networks and computers. Each user makes use of an internet service provider (ISP). The ISP will set up a user account which will contain

More information

HTML version of slides:

HTML version of slides: HTML version of slides: http://people.mozilla.org/~bbirtles/pres/graphical-web-2014/ Animations can be used for more than just cat gifs. They can be used to tell stories too. Animation is essentially

More information

ISU Market. A website application for buying and selling various items in the ISU domain. ComS 309 Portfolio 2 Group 11: Chao Song & Neh Batwara

ISU Market. A website application for buying and selling various items in the ISU domain. ComS 309 Portfolio 2 Group 11: Chao Song & Neh Batwara ISU Market A website application for buying and selling various items in the ISU domain ComS 309 Portfolio 2 Group 11: Chao Song & Neh Batwara Contents 1 Overview 1 2 New Concepts and Complexity 2 3 Creation,

More information

}w!"#$%&'()+,-./012345<ya

}w!#$%&'()+,-./012345<ya MASARYK UNIVERSITY FACULTY OF INFORMATICS }w!"#$%&'()+,-./012345

More information

Google Docs. University Of Furtwangen, E-Business Technology. Prof. Dr. Eduard Heindl. By: Xia Cuihua

Google Docs. University Of Furtwangen, E-Business Technology. Prof. Dr. Eduard Heindl. By: Xia Cuihua Google Docs University Of Furtwangen, E-Business Technology Prof. Dr. Eduard Heindl By: Xia Cuihua May.2009 1 Declaration: I, Xia cuihua, hereby declare that this paper is my own work and all the related

More information

Build Your Own Web Site The Right Way Using HTML & CSS, 2nd Edition By Ian Lloyd READ ONLINE

Build Your Own Web Site The Right Way Using HTML & CSS, 2nd Edition By Ian Lloyd READ ONLINE Build Your Own Web Site The Right Way Using HTML & CSS, 2nd Edition By Ian Lloyd READ ONLINE If you are searched for a book by Ian Lloyd Build Your Own Web Site The Right Way Using HTML & CSS, 2nd Edition

More information

Software Platforms. Quiz with Explainations. Hans-Petter Halvorsen, M.Sc.

Software Platforms. Quiz with Explainations. Hans-Petter Halvorsen, M.Sc. Software Platforms Quiz with Explainations Hans-Petter Halvorsen, M.Sc. Questions 1. List 3 different software platforms with some examples for each 2. List 5 different Web Browsers and the name of the

More information

Using and Developing with Azure. Joshua Drew

Using and Developing with Azure. Joshua Drew Using and Developing with Azure Joshua Drew Visual Studio Microsoft Azure X-Plat ASP.NET Visual Studio - Every App Our vision Every App Every Developer .NET and mobile development Desktop apps - WPF Universal

More information

Diploma in Web Development Part I

Diploma in Web Development Part I Diploma in Web Development Part I Lesson 1 The Web Development Full Stack Presented by: Julian Quirke Web Development Educator Lesson 1 About us Course Agenda Member Area & Community Course Engagement

More information

Oracle Forms Modernization Through Automated Migration. A Technical Overview

Oracle Forms Modernization Through Automated Migration. A Technical Overview Oracle Forms Modernization Through Automated Migration A Technical Overview Table of Contents Document Overview... 3 Oracle Forms Modernization... 3 Benefits of Using an Automated Conversion Tool... 3

More information

COS 333: Advanced Programming Techniques

COS 333: Advanced Programming Techniques COS 333: Advanced Programming Techniques Robert M. Dondero, Ph.D. Princeton University Please pick up handouts at the back of the room 1 COS 333: Course Overview Copyright 2018 by Robert M. Dondero, Ph.D.

More information

GUIDELINES FOR CREATING AN ITT FRAMEWORK

GUIDELINES FOR CREATING AN ITT FRAMEWORK RESTRICTED CEFACT/ITPWG/97N005 24 October 1997 International Trade Procedures Working Group (ITPWG) GUIDELINES FOR CREATING AN ITT FRAMEWORK SOURCE: STATUS: ACTION: SITPRO Discussion Paper For discussion

More information

AGRICULTURE BASED ANDROID APPLICATION

AGRICULTURE BASED ANDROID APPLICATION AGRICULTURE BASED ANDROID APPLICATION Prof.Aradhana D 1, Shiva Prasad K S 2, Shrivaishnavi J K 3, P. Sowmya 4, Tina Agarwal 5 1 Department of Computer Science & Engineering Ballari Institute of Technology

More information

Designing the Home Page and Creating Additional Pages

Designing the Home Page and Creating Additional Pages Designing the Home Page and Creating Additional Pages Creating a Webpage Template In Notepad++, create a basic HTML webpage with html documentation, head, title, and body starting and ending tags. From

More information

Requirements Specification

Requirements Specification Requirements Specification Smart Scheduling Requested by: Dr. Robert Yoder Associate Professor of Computer Science Computer Science Department Head Siena College Tom Mottola Jason Czajkowski Brian Maxwell

More information

STUDY ON THE USE OF PUBLIC DATA CENTERS FOR IT INFRASTRUCTURE OUTSOURCING IN SRI LANKA

STUDY ON THE USE OF PUBLIC DATA CENTERS FOR IT INFRASTRUCTURE OUTSOURCING IN SRI LANKA 'LIBRARY SlIJVfcRSlTY Of MORATUWA. SRI IAMIU UORATUWA jlhl»o»{!9cko t l STUDY ON THE USE OF PUBLIC DATA CENTERS FOR IT INFRASTRUCTURE OUTSOURCING IN SRI LANKA THE CASE OFSUNTEL LTD By G.A.A.D. KARAUNARATNE

More information

Inf 202 Introduction to Data and Databases (Spring 2010)

Inf 202 Introduction to Data and Databases (Spring 2010) Inf 202 Introduction to Data and Databases (Spring 2010) Jagdish S. Gangolly Informatics CCI SUNY Albany April 22, 2010 Database Processing Applications Standard Database Processing Client/Server Environment

More information

DBNsim. Giorgio Giuffrè. 0 Abstract How to run it on your machine How to contribute... 2

DBNsim. Giorgio Giuffrè. 0 Abstract How to run it on your machine How to contribute... 2 DBNsim Giorgio Giuffrè Contents 0 Abstract 2 0.1 How to run it on your machine................... 2 0.2 How to contribute.......................... 2 1 Installing DBNsim 2 1.1 Requirements.............................

More information

The Website. Teaching Thoughts. Usability Report. By Jon Morris

The Website. Teaching Thoughts. Usability Report. By Jon Morris The Website Teaching Thoughts Usability Report By Jon Morris Original November 13 th, 2009 Modified on November 21 st 2009 Table of Contents 1. Introduction... 3 2. Executive Summary...3-4 3. Methodology...5-6

More information

CSS Development (with CSS3) By Mr. Zahchary Kingston

CSS Development (with CSS3) By Mr. Zahchary Kingston CSS Development (with CSS3) By Mr. Zahchary Kingston Cascading Stylesheets or CSS is the first technology you should start learning after HTML. While HTML is used to define the structure and semantics

More information

Unleashing Your Marketing Collateral and Tools

Unleashing Your Marketing Collateral and Tools Unleashing Your Marketing Collateral and Tools on Desktops, Tablets and Phones michael@webvanta.com 888.670.6793 www.webvanta.com 888.670.6793 About the Presenter, Michael Slater President & CEO of Webvanta

More information

elton Group 3. Michael Spetås, Lars Brekke, Sondre Wiersdalen and Richard Wangsvik System Requirements & Design (SRD)

elton Group 3. Michael Spetås, Lars Brekke, Sondre Wiersdalen and Richard Wangsvik System Requirements & Design (SRD) - System Requirements & Design (SRD) 1 Glossary ASP.net Framework by Microsoft for creating web forms C# Programming language based on the.net framework Microsoft SQL GUI VS T-SQL UML CSS HTML Microsoft

More information

Programming the World Wide Web by Robert W. Sebesta

Programming the World Wide Web by Robert W. Sebesta Programming the World Wide Web by Robert W. Sebesta Tired Of Rpg/400, Jcl And The Like? Heres A Ticket Out Programming the World Wide Web by Robert Sebesta provides students with a comprehensive introduction

More information

What s New in Laserfiche 10

What s New in Laserfiche 10 What s New in Laserfiche 10 Webinar Date 5 November 2015, 29 December 2015 and 10 February 2016 Presenters Justin Pava, Technical Product Manager Brandon Buccowich, Technical Marketing Engineer For copies

More information

Objective % Select and utilize tools to design and develop websites.

Objective % Select and utilize tools to design and develop websites. Objective 207.02 8% Select and utilize tools to design and develop websites. Hypertext Markup Language (HTML) Basic framework for all web design. Written using tags that a web browser uses to interpret

More information

ASP.net. Microsoft. Getting Started with. protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable();

ASP.net. Microsoft. Getting Started with. protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable(); Getting Started with protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable(); string connectionstring = System.Configuration.ConfigurationManager.ConnectionStrings ["default"].connectionstring;!

More information

VISUAL SUMMARY ACCESS INTERNET AND WEB. The Internet, the Web, and Electronic Commerce

VISUAL SUMMARY ACCESS INTERNET AND WEB. The Internet, the Web, and Electronic Commerce VISUAL SUMMARY The Internet, the Web, and Electronic Commerce INTERNET AND WEB Internet Launched in 1969 with ARPANET, the Internet consists of the actual physical network. Web Introduced in 1991 at CERN,

More information

Deltek Touch Expense for Ajera. Touch 1.0 Technical Installation Guide

Deltek Touch Expense for Ajera. Touch 1.0 Technical Installation Guide Deltek Touch Expense for Ajera Touch 1.0 Technical Installation Guide June 01, 2018 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

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

Introduction C H A P T E R1. Exercises

Introduction C H A P T E R1. Exercises C H A P T E R1 Introduction Chapter 1 provides a general overview of the nature and purpose of database systems. The most important concept in this chapter is that database systems allow data to be treated

More information

Version Control with Git ME 461 Fall 2018

Version Control with Git ME 461 Fall 2018 Version Control with Git ME 461 Fall 2018 0. Contents Introduction Definitions Repository Remote Repository Local Repository Clone Commit Branch Pushing Pulling Create a Repository Clone a Repository Commit

More information

Open XAL Project Architecture

Open XAL Project Architecture Thomas Pelaia II, Ph.D. Open XAL Meeting November 14, 2013 Motivation Common Core is too large Need support for Site Specific Extensions and Plugins Need mechanism for assembling and sharing a project

More information

PROJECT REPORT. TweetMine Twitter Sentiment Analysis Tool KRZYSZTOF OBLAK C

PROJECT REPORT. TweetMine Twitter Sentiment Analysis Tool KRZYSZTOF OBLAK C PROJECT REPORT TweetMine Twitter Sentiment Analysis Tool KRZYSZTOF OBLAK C00161361 Table of Contents 1. Introduction... 1 1.1. Purpose and Content... 1 1.2. Project Brief... 1 2. Description of Submitted

More information

Data Feeds Traffic Setup Instructions

Data Feeds Traffic Setup Instructions Data Feeds Traffic Setup Instructions In this document we ll first cover data feeds and traffic, then we ll cover actual setup. Data feeds are simple to find and simple to setup. They are also often less

More information

The Now Platform Reference Guide

The Now Platform Reference Guide The Now Platform Reference Guide A tour of key features and functionality START Introducing the Now Platform Digitize your business with intelligent apps The Now Platform is an application Platform-as-a-Service

More information

Creating and Building Websites

Creating and Building Websites Creating and Building Websites Stanford University Continuing Studies CS 21 Mark Branom branom@alumni.stanford.edu Course Web Site: http://web.stanford.edu/group/csp/cs21/ Week 1 Slide 1 of 28 Course Description

More information

205CDE Developing the Modern Web. Assignment 2 Server Side Scripting. Scenario D: Bookshop

205CDE Developing the Modern Web. Assignment 2 Server Side Scripting. Scenario D: Bookshop 205CDE Developing the Modern Web Assignment 2 Server Side Scripting Scenario D: Bookshop Introduction This assignment was written using PHP programming language for interactions with the website and the

More information

All Adobe Digital Design Vocabulary Absolute Div Tag Allows you to place any page element exactly where you want it Absolute Link Includes the

All Adobe Digital Design Vocabulary Absolute Div Tag Allows you to place any page element exactly where you want it Absolute Link Includes the All Adobe Digital Design Vocabulary Absolute Div Tag Allows you to place any page element exactly where you want it Absolute Link Includes the complete URL of the linked document, including the domain

More information

The Journal of Insect Science

The Journal of Insect Science The Journal of Insect Science http://www.insectscience.org Subject: Contact: Purpose: Publication Information / Workflow Adam Engelsgjerd 520.621.2502 engelsgjerda@u.library.arizona.edu This document is

More information

MRK260. Week Two. Graphic and Web Design

MRK260. Week Two. Graphic and Web Design MRK260 Week Two Graphic and Web Design This weeks topics BASIC HTML AND CSS MRK260 - Graphic & Web Design - Week Two 2 Lesson Summary What is HTML? Introduction to HTML Basics Introduction to CSS Introduction

More information

WebSphere Puts Business In Motion. Put People In Motion With Mobile Apps

WebSphere Puts Business In Motion. Put People In Motion With Mobile Apps WebSphere Puts Business In Motion Put People In Motion With Mobile Apps Use Mobile Apps To Create New Revenue Opportunities A clothing store increases sales through personalized offers Customers can scan

More information

Blogs, Feeds, Trackbacks and Pings

Blogs, Feeds, Trackbacks and Pings Blogs, Feeds, Trackbacks and Pings Part II: Terms and Feeds Steven Hupp Manager of Donor Research Chicago Botanic Garden 1 Learn about blogs and apply the knowledge I have three things I m going to do

More information

Advanced Migration of Schema and Data across Multiple Databases

Advanced Migration of Schema and Data across Multiple Databases Advanced Migration of Schema and Data across Multiple Databases D.M.W.E. Dissanayake 139163B Faculty of Information Technology University of Moratuwa May 2017 Advanced Migration of Schema and Data across

More information

Product Data Sheet: Ignition 8 Industrial Application Platform. A Whole New View

Product Data Sheet: Ignition 8 Industrial Application Platform. A Whole New View Product Data Sheet: Ignition 8 Industrial Application Platform A Whole New View With the powerful tools, web technologies, and next-generation visualization system we re building in Ignition 8, you ll

More information