SlideShare a Scribd company logo
Table of contentTable of content
 Android overview
 Android sdk overview
 Android.widget package
 Intent
 Multimedia
 Activity life cycle
 Android services
 Android notifications
 Databases
Android overviewAndroid overview
 It is an open source Linux-
based OS for handheld devices.
 Main objective was for digital
camera.
 Andy Rubin & co-member
developed Android in 2004 as
Android Inc.
Andy Rubin
 July 2005-Google acquired Android Inc.
 Sep 2008-version, Android 1.0 was released.
 HTC Dream: first phone in which android was installed and used.
Android SDK overviewAndroid SDK overview
 For the development of app an IDE is given: Android Studio,
Eclipse(SDK).
 SDK consist of class library, android debug tool, emulator etc.
 Emulator: is a virtual device used for testing our app which is also
called AVD(Android virtual Device).
 testing .apk
IDE AVD
Devi
ce
 Android apps are developed usually in java language using SDK.
 And till now various versions of android was launched which works on
different API levels.
 API: is an integer value; uniquely identifies the framework api revision
offered by android platform.
Android versionsAndroid versions
Versions API level Name
Android 1.0 1 Base / α
Android 1.1 2 Base_1_1 / β
Android 1.5 3 Cupcake
Android 1.6 4 Donut
Android 2.0 5 Eclair
Android 2.0.1 – 2.2.x 6,7,8 Éclair_0_1 - Froyo
Android 2.3 – 2.3.7 9,10 Gingerbread (Stable)
Android 3.0 – 3.2 11,12,13 Honeycomb (Failed)
Android 4.0 – 4.0.2 14 Ice-cream sandwich
Android 4.0.3 – 4.3 15,16,17,18 Ice-cream – jellybean
Android 4.4 – 5.0 19,20,21 Kitkat – lollipop
Android.widget packageAndroid.widget package
 Added in API level 1
 Contains UI elements to use on our screen/ Activity.
 Contains the basics controls(textview,button,textfields).
 It is the child of view group which is the parent of all the layouts.
ViewGroup
View View
ViewView View
ViewGroup
Android ActivityAndroid Activity
Android Activity
Xml filesXml files Java files
R.java Activity.java
Basic controls(android.widget)Basic controls(android.widget)
 Text View
 Edit Text
 Buttons
 Spinner
 Seek Bar
 Radio Buttons
Intent (android.content)Intent (android.content)
 It is an abstract description of an operation to be performed.
 (starting a new activity, starting a service etc).
 Syntax:
Intent i=new Intent(source, destinationClass);
startActivity(i);
 (Intent)
Activity 1 Activity 2
MultimediaMultimedia
 All the tasks like playing music, video, audio recording etc comes
under the category of android multimedia.
 All the multimedia file are to be put in a folder named as “raw” &
image in drawable folder.
 There are lots of predefined classes are given in android to access
various media operations(MediaPlayer, VideoView, MediaController
etc).
 Eg. playing a song
Activity life cycleActivity life cycle
 There are certain call back methods which are responsible for handling
the whole life cycle of any activity.
 onCreate()
 onStart()
 onResume()
 onPause()
 onRestart()
 onStop()
 onDestroy()
Activity
Launched
onCreate()
onStart()
onResume()
onPause()
onStop()
onRestart()
onDestroy()
Any interruption occurred
Activity is not visible
User navigates to
activity
Activity is finished
Android Services(android.app.Service)Android Services(android.app.Service)
 A service is an component that can perform long-running process in
the background and it does not provide any UI.
 There are two types of services:
 1.Started service: a service is “stared” when an application component
starts it by calling startServices().
 Once it started, run in the background infinitely.
 2.Bound service: a service is “bound” by calling bindService().
 Used on the client server.
Activity
started
onCreate()
Service
class
startService()
called
Returned output
onDestroy() if
onStartCommand()
stopService()
called
Service
class
Returned output
AndroidAndroid
Notification(android.app.Notification)Notification(android.app.Notification)
 It is a message that we can
display to the user outside of the
application.
 User can navigate the
notification by opening
notification drawer.
 There are some predefined
classes for achieving
notification:
 1.NotificationManager
//manages all the notification in
the app
 2.Notification //helps in
building notification.
 Methods:
 1.setsmallIcon(“path”);
 2.setTicker(“new msg rcvd”);
 3.setContentTitle(“ab@gml”);
 4.setContextText(“hello”);
Cont…Cont…
1.setsmallIcon(
“path”);
3.setContentTi
tle(“ab@gml”)
;
4.setContextTe
xt(“hello”);
Database(android.database.SQLite)Database(android.database.SQLite)
 All the database query are done in hard coded in android.
 There are two types of query:
 1. Updation type (execSQL() )
 2. selection type (rawQuery() )
 Ex:
 db.execSQL(“create table student(name varchar(10),…..)”);
 db. rawQuery(“select * from student here name=“Rajeev” ”);
Database
Updation
Type
Selection
Type
Update
Insert
Delete
Create
table
Select
cpuk10745

More Related Content

What's hot

Android
AndroidAndroid
Android
Sai Kiran
 
Android OS & SDK - Getting Started
Android OS & SDK - Getting StartedAndroid OS & SDK - Getting Started
Android OS & SDK - Getting Started
Hemant Chhapoliya
 
Day 3: Getting Active Through Activities
Day 3: Getting Active Through ActivitiesDay 3: Getting Active Through Activities
Day 3: Getting Active Through ActivitiesAhsanul Karim
 
Android vs iOS
Android vs iOSAndroid vs iOS
Android vs iOS
Katsuya Goto
 
Android session 2
Android session 2Android session 2
Android session 2
Ahesanali Suthar
 
Android session 1
Android session 1Android session 1
Android session 1
Ahesanali Suthar
 
Multiple Activity and Navigation Primer
Multiple Activity and Navigation PrimerMultiple Activity and Navigation Primer
Multiple Activity and Navigation PrimerAhsanul Karim
 
Android session 3
Android session 3Android session 3
Android session 3
Ahesanali Suthar
 
Android Development: Build Android App from Scratch
Android Development: Build Android App from ScratchAndroid Development: Build Android App from Scratch
Android Development: Build Android App from Scratch
Taufan Erfiyanto
 
Marakana Android User Interface
Marakana Android User InterfaceMarakana Android User Interface
Marakana Android User Interface
Marko Gargenta
 
How to create android applications
How to create android applicationsHow to create android applications
How to create android applications
TOPS Technologies
 
Android App development III
Android App development IIIAndroid App development III
Android App development III
Thenraja Vettivelraj
 
Installing android sdk on net beans
Installing android sdk on net beansInstalling android sdk on net beans
Installing android sdk on net beans
Aravindharamanan S
 
Android studio installation
Android studio installationAndroid studio installation
Android studio installation
Faysal Hossain Shezan
 
Introduction to everything around Android
Introduction to everything around AndroidIntroduction to everything around Android
Introduction to everything around Android
Bipin Jethwani
 
Getting started with android dev and test perspective
Getting started with android   dev and test perspectiveGetting started with android   dev and test perspective
Getting started with android dev and test perspective
Gunjan Kumar
 
Create your First Watchkit App
Create your First Watchkit AppCreate your First Watchkit App
Create your First Watchkit App
Pawan Ramteke
 
Android Development Training
Android Development TrainingAndroid Development Training
Android Development Training
chandutata
 

What's hot (20)

Android
AndroidAndroid
Android
 
Android OS & SDK - Getting Started
Android OS & SDK - Getting StartedAndroid OS & SDK - Getting Started
Android OS & SDK - Getting Started
 
Day 3: Getting Active Through Activities
Day 3: Getting Active Through ActivitiesDay 3: Getting Active Through Activities
Day 3: Getting Active Through Activities
 
Android vs iOS
Android vs iOSAndroid vs iOS
Android vs iOS
 
Android session 2
Android session 2Android session 2
Android session 2
 
Android session 1
Android session 1Android session 1
Android session 1
 
Multiple Activity and Navigation Primer
Multiple Activity and Navigation PrimerMultiple Activity and Navigation Primer
Multiple Activity and Navigation Primer
 
Android session 3
Android session 3Android session 3
Android session 3
 
Android Development: Build Android App from Scratch
Android Development: Build Android App from ScratchAndroid Development: Build Android App from Scratch
Android Development: Build Android App from Scratch
 
Marakana Android User Interface
Marakana Android User InterfaceMarakana Android User Interface
Marakana Android User Interface
 
How to create android applications
How to create android applicationsHow to create android applications
How to create android applications
 
Android App development III
Android App development IIIAndroid App development III
Android App development III
 
Installing android sdk on net beans
Installing android sdk on net beansInstalling android sdk on net beans
Installing android sdk on net beans
 
Android tutorial1
Android tutorial1Android tutorial1
Android tutorial1
 
Android studio installation
Android studio installationAndroid studio installation
Android studio installation
 
Introduction to everything around Android
Introduction to everything around AndroidIntroduction to everything around Android
Introduction to everything around Android
 
Getting started with android dev and test perspective
Getting started with android   dev and test perspectiveGetting started with android   dev and test perspective
Getting started with android dev and test perspective
 
Create your First Watchkit App
Create your First Watchkit AppCreate your First Watchkit App
Create your First Watchkit App
 
Android
AndroidAndroid
Android
 
Android Development Training
Android Development TrainingAndroid Development Training
Android Development Training
 

Viewers also liked

Task 7 survey responses pictures
Task 7 survey responses picturesTask 7 survey responses pictures
Task 7 survey responses pictures
harry pugh
 
Media task one
Media task oneMedia task one
Media task one
harry pugh
 
CLASSIC - 2016-8-23
CLASSIC - 2016-8-23CLASSIC - 2016-8-23
CLASSIC - 2016-8-23Kenneth Gee
 
정보디자인 Project2 final (너를 위한 작은 공간)
정보디자인 Project2 final (너를 위한 작은 공간)정보디자인 Project2 final (너를 위한 작은 공간)
정보디자인 Project2 final (너를 위한 작은 공간)
Kang Hyunsoo
 
Resum fisling siti diah ayu f. (081810201008)
Resum fisling siti diah ayu f. (081810201008)Resum fisling siti diah ayu f. (081810201008)
Resum fisling siti diah ayu f. (081810201008)
sitidiah ayufebriani
 
El cuerpo humano
El cuerpo humanoEl cuerpo humano
El cuerpo humano
Belicampos
 
Cupom fiscal eletrônico pb nfce
Cupom fiscal eletrônico pb nfceCupom fiscal eletrônico pb nfce
Cupom fiscal eletrônico pb nfce
Honeywell Silva Honey
 
Земля
ЗемляЗемля
APS Profile Company
APS Profile Company APS Profile Company
APS Profile Company
Behnam Sohrabi
 
Reglasde operacio 2016
Reglasde operacio 2016Reglasde operacio 2016
Reglasde operacio 2016
Elide010203
 

Viewers also liked (10)

Task 7 survey responses pictures
Task 7 survey responses picturesTask 7 survey responses pictures
Task 7 survey responses pictures
 
Media task one
Media task oneMedia task one
Media task one
 
CLASSIC - 2016-8-23
CLASSIC - 2016-8-23CLASSIC - 2016-8-23
CLASSIC - 2016-8-23
 
정보디자인 Project2 final (너를 위한 작은 공간)
정보디자인 Project2 final (너를 위한 작은 공간)정보디자인 Project2 final (너를 위한 작은 공간)
정보디자인 Project2 final (너를 위한 작은 공간)
 
Resum fisling siti diah ayu f. (081810201008)
Resum fisling siti diah ayu f. (081810201008)Resum fisling siti diah ayu f. (081810201008)
Resum fisling siti diah ayu f. (081810201008)
 
El cuerpo humano
El cuerpo humanoEl cuerpo humano
El cuerpo humano
 
Cupom fiscal eletrônico pb nfce
Cupom fiscal eletrônico pb nfceCupom fiscal eletrônico pb nfce
Cupom fiscal eletrônico pb nfce
 
Земля
ЗемляЗемля
Земля
 
APS Profile Company
APS Profile Company APS Profile Company
APS Profile Company
 
Reglasde operacio 2016
Reglasde operacio 2016Reglasde operacio 2016
Reglasde operacio 2016
 

Similar to cpuk10745

Android terminologies
Android terminologiesAndroid terminologies
Android terminologies
jerry vasoya
 
Aptech Apps
Aptech Apps Aptech Apps
Aptech Apps
RasikaShinde6
 
Android Tutorial For Beginners Part-1
Android Tutorial For Beginners Part-1Android Tutorial For Beginners Part-1
Android Tutorial For Beginners Part-1
Amit Saxena
 
Day: 2 Environment Setup for Android Application Development
Day: 2 Environment Setup for Android Application DevelopmentDay: 2 Environment Setup for Android Application Development
Day: 2 Environment Setup for Android Application DevelopmentAhsanul Karim
 
Android app development ppt
Android app development pptAndroid app development ppt
Android app development ppt
saitej15
 
Get an Android tutorial for beginners
Get an Android tutorial for beginnersGet an Android tutorial for beginners
Get an Android tutorial for beginners
JavaTpoint.Com
 
Android app development
Android app developmentAndroid app development
Android app development
PiyushBhambhani1
 
Android interview questions and answers
Android interview questions and answersAndroid interview questions and answers
Android interview questions and answers
kavinilavuG
 
Questions About Android Application Development
Questions About Android Application DevelopmentQuestions About Android Application Development
Questions About Android Application Development
Adeel Rasheed
 
Android Development in a Nutshell
Android Development in a NutshellAndroid Development in a Nutshell
Android Development in a NutshellAleix Solé
 
Creating the first app with android studio
Creating the first app with android studioCreating the first app with android studio
Creating the first app with android studio
Parinita03
 
Android studio
Android studioAndroid studio
Android studio
Andri Yabu
 
Introduction to Android App Development
Introduction to Android App DevelopmentIntroduction to Android App Development
Introduction to Android App Development
Andri Yadi
 
Unit I- ANDROID OVERVIEW.ppt
Unit I- ANDROID OVERVIEW.pptUnit I- ANDROID OVERVIEW.ppt
Unit I- ANDROID OVERVIEW.ppt
dineshkumar periyasamy
 
Android Basic- CMC
Android Basic- CMCAndroid Basic- CMC
Android Basic- CMC
Pragati Singh
 
Day 3: Getting Active Through Activities
Day 3: Getting Active Through ActivitiesDay 3: Getting Active Through Activities
Day 3: Getting Active Through ActivitiesAhsanul Karim
 
Android application development
Android application developmentAndroid application development
Android application developmentslidesuren
 
Android app development
Android app developmentAndroid app development
Android app development
Vara Prasad Kanakam
 

Similar to cpuk10745 (20)

Android terminologies
Android terminologiesAndroid terminologies
Android terminologies
 
Aptech Apps
Aptech Apps Aptech Apps
Aptech Apps
 
Android Tutorial For Beginners Part-1
Android Tutorial For Beginners Part-1Android Tutorial For Beginners Part-1
Android Tutorial For Beginners Part-1
 
Day: 2 Environment Setup for Android Application Development
Day: 2 Environment Setup for Android Application DevelopmentDay: 2 Environment Setup for Android Application Development
Day: 2 Environment Setup for Android Application Development
 
Android app development ppt
Android app development pptAndroid app development ppt
Android app development ppt
 
Android dev o_auth
Android dev o_authAndroid dev o_auth
Android dev o_auth
 
Get an Android tutorial for beginners
Get an Android tutorial for beginnersGet an Android tutorial for beginners
Get an Android tutorial for beginners
 
Android app development
Android app developmentAndroid app development
Android app development
 
Android interview questions and answers
Android interview questions and answersAndroid interview questions and answers
Android interview questions and answers
 
Questions About Android Application Development
Questions About Android Application DevelopmentQuestions About Android Application Development
Questions About Android Application Development
 
Android Development in a Nutshell
Android Development in a NutshellAndroid Development in a Nutshell
Android Development in a Nutshell
 
Creating the first app with android studio
Creating the first app with android studioCreating the first app with android studio
Creating the first app with android studio
 
Android studio
Android studioAndroid studio
Android studio
 
Android overview
Android overviewAndroid overview
Android overview
 
Introduction to Android App Development
Introduction to Android App DevelopmentIntroduction to Android App Development
Introduction to Android App Development
 
Unit I- ANDROID OVERVIEW.ppt
Unit I- ANDROID OVERVIEW.pptUnit I- ANDROID OVERVIEW.ppt
Unit I- ANDROID OVERVIEW.ppt
 
Android Basic- CMC
Android Basic- CMCAndroid Basic- CMC
Android Basic- CMC
 
Day 3: Getting Active Through Activities
Day 3: Getting Active Through ActivitiesDay 3: Getting Active Through Activities
Day 3: Getting Active Through Activities
 
Android application development
Android application developmentAndroid application development
Android application development
 
Android app development
Android app developmentAndroid app development
Android app development
 

Recently uploaded

Into the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdfInto the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdf
Ortus Solutions, Corp
 
Graphic Design Crash Course for beginners
Graphic Design Crash Course for beginnersGraphic Design Crash Course for beginners
Graphic Design Crash Course for beginners
e20449
 
GlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote sessionGlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote session
Globus
 
Enterprise Resource Planning System in Telangana
Enterprise Resource Planning System in TelanganaEnterprise Resource Planning System in Telangana
Enterprise Resource Planning System in Telangana
NYGGS Automation Suite
 
Large Language Models and the End of Programming
Large Language Models and the End of ProgrammingLarge Language Models and the End of Programming
Large Language Models and the End of Programming
Matt Welsh
 
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.ILBeyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Natan Silnitsky
 
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, BetterWebinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
XfilesPro
 
RISE with SAP and Journey to the Intelligent Enterprise
RISE with SAP and Journey to the Intelligent EnterpriseRISE with SAP and Journey to the Intelligent Enterprise
RISE with SAP and Journey to the Intelligent Enterprise
Srikant77
 
BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024
Ortus Solutions, Corp
 
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume MontevideoVitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke
 
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoamOpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
takuyayamamoto1800
 
Globus Compute Introduction - GlobusWorld 2024
Globus Compute Introduction - GlobusWorld 2024Globus Compute Introduction - GlobusWorld 2024
Globus Compute Introduction - GlobusWorld 2024
Globus
 
Cyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdfCyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdf
Cyanic lab
 
Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024
Paco van Beckhoven
 
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptx
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptxTop Features to Include in Your Winzo Clone App for Business Growth (4).pptx
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptx
rickgrimesss22
 
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data AnalysisProviding Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
Globus
 
Understanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSageUnderstanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSage
Globus
 
Enhancing Research Orchestration Capabilities at ORNL.pdf
Enhancing Research Orchestration Capabilities at ORNL.pdfEnhancing Research Orchestration Capabilities at ORNL.pdf
Enhancing Research Orchestration Capabilities at ORNL.pdf
Globus
 
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdfDominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
AMB-Review
 
How to Position Your Globus Data Portal for Success Ten Good Practices
How to Position Your Globus Data Portal for Success Ten Good PracticesHow to Position Your Globus Data Portal for Success Ten Good Practices
How to Position Your Globus Data Portal for Success Ten Good Practices
Globus
 

Recently uploaded (20)

Into the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdfInto the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdf
 
Graphic Design Crash Course for beginners
Graphic Design Crash Course for beginnersGraphic Design Crash Course for beginners
Graphic Design Crash Course for beginners
 
GlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote sessionGlobusWorld 2024 Opening Keynote session
GlobusWorld 2024 Opening Keynote session
 
Enterprise Resource Planning System in Telangana
Enterprise Resource Planning System in TelanganaEnterprise Resource Planning System in Telangana
Enterprise Resource Planning System in Telangana
 
Large Language Models and the End of Programming
Large Language Models and the End of ProgrammingLarge Language Models and the End of Programming
Large Language Models and the End of Programming
 
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.ILBeyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
Beyond Event Sourcing - Embracing CRUD for Wix Platform - Java.IL
 
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, BetterWebinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
Webinar: Salesforce Document Management 2.0 - Smarter, Faster, Better
 
RISE with SAP and Journey to the Intelligent Enterprise
RISE with SAP and Journey to the Intelligent EnterpriseRISE with SAP and Journey to the Intelligent Enterprise
RISE with SAP and Journey to the Intelligent Enterprise
 
BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024
 
Vitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume MontevideoVitthal Shirke Microservices Resume Montevideo
Vitthal Shirke Microservices Resume Montevideo
 
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoamOpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
OpenFOAM solver for Helmholtz equation, helmholtzFoam / helmholtzBubbleFoam
 
Globus Compute Introduction - GlobusWorld 2024
Globus Compute Introduction - GlobusWorld 2024Globus Compute Introduction - GlobusWorld 2024
Globus Compute Introduction - GlobusWorld 2024
 
Cyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdfCyaniclab : Software Development Agency Portfolio.pdf
Cyaniclab : Software Development Agency Portfolio.pdf
 
Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024
 
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptx
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptxTop Features to Include in Your Winzo Clone App for Business Growth (4).pptx
Top Features to Include in Your Winzo Clone App for Business Growth (4).pptx
 
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data AnalysisProviding Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
 
Understanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSageUnderstanding Globus Data Transfers with NetSage
Understanding Globus Data Transfers with NetSage
 
Enhancing Research Orchestration Capabilities at ORNL.pdf
Enhancing Research Orchestration Capabilities at ORNL.pdfEnhancing Research Orchestration Capabilities at ORNL.pdf
Enhancing Research Orchestration Capabilities at ORNL.pdf
 
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdfDominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
Dominate Social Media with TubeTrivia AI’s Addictive Quiz Videos.pdf
 
How to Position Your Globus Data Portal for Success Ten Good Practices
How to Position Your Globus Data Portal for Success Ten Good PracticesHow to Position Your Globus Data Portal for Success Ten Good Practices
How to Position Your Globus Data Portal for Success Ten Good Practices
 

cpuk10745