SlideShare a Scribd company logo
Practicing AppDevKit
Anistar Sung
Engineering Manager
Kata Training -
git clone https://github.com/anistarsung/AppDevKitLearning.git
Download Learning Template
• Leverage AppDevKit in few steps
• Build Some Apps with AppDevKit
• Using Swift with AppDevKit
Agenda
Leverage AppDevKit
Build First App with AppDevKit
Source Code of AppDevKit
https://github.com/yahoo/AppDevKit
Get Source Code from Github
Set up AppDevKit
• Cloning code into your project directly
• Using CocoaPods to manage package
What’s CocoaPods
Using CocoaPods
Installing CocoaPods
$ sudo gem install cocoapods
Initializing CocoaPods
$ pod init
$ nano Podfile
Using CocoaPods
Editing Podfile
platform :ios, '8.0'
target 'MyApp' do
pod 'AppDevKit', '~> 1.0’
pod 'AFNetworking', '~> 2.6'
end
Using CocoaPods
Installing Package by CocoaPods
$ pod install
Updating Package by CocoaPods
$ pod update
Working with AppDevKit
Open iOS Project with Pods
$ open MyApp.xcworkspace
Working with AppDevKit
Importing Libraries from AppDevKit
#import <AppDevKit.h>
YES!
You Made It!
Demo
Start HelloWorld with AppDevKit
Using UIColor Hex presentation
Utilities made setting color easier
Hex Color Format from Designer
4C00A521B1E6FBDA18
But UIColor….
+(UIColor *)colorWithWhite:(CGFloat)white alpha:(CGFloat)alpha;
+(UIColor *)colorWithHue:(CGFloat)hue saturation:
(CGFloat)saturation brightness:(CGFloat)brightness alpha:
(CGFloat)alpha;
+(UIColor *)colorWithRed:(CGFloat)red green:(CGFloat)green blue:
(CGFloat)blue alpha:(CGFloat)alpha;
......
No hex presentation… :’(
AppDevKit Hex Color Utility
[UIColor ADKColorWithHexString:@"fbda18"]
[[UIColor ADKColorWithHexString:@"fbda18"]
ADKColorShiftByBrightness:0.7f];
Demo
Using UIColor+ADKHexPresentation
Applying UIImage Filters
Changing image color in one line
Color Replacement
Color Replacement
• One image could fulfill all states change
• Reducing App size
• Providing other filters and color replacement methods
Color Replacement
[UIImage ADKImage:originalImage
replaceColor:[UIColor redColor]];
Demo
Using UIImage+ADKImageFilter
Using Animation Marcos
Animation is a piece of cake
Animation Marcos
Animation Marcos
[button popUpAnimation];
Demo
Using UIView+ADKAnimationMacro
Using Modal Mask View
Making A Focused UX Flow
Modal Mask View
Modal Mask View
• Presenting custom modal view and dismiss automatically
• Below iOS 8, it don’t support
UIModalPresentationOverCurrentContext
Modal Mask View
[[ADKModalMaskView alloc] initWithView:UIView
modalColor:UIColor autoDismiss:YES];
[modalView showInView:UIView withAnimation:YES
completion:^(BOOL finished){…}];
Demo
Using ADKModalMaskView
Drawing Gradient Background
Without Bitmap Image Solution
ADKGradientView
ADKGradientView
• Don’t need bitmap image (Programmable solution)
• Reduce App size
• Support assigning color and orientation
ADKGradientView
view.beginColor = [UIColor redColor];
view.endColor = [UIColor greenColor];
view.blendsType = ADKBlendsTypeFromLeftTopToRightBottom;
ADKBlendsTypeFromTopToBottom
ADKBlendsTypeFromLeftToRight
ADKBlendsTypeFromLeftTopToRightBottom
ADKBlendsTypeFromRightTopToLeftBottom
Demo
Using ADKGradientView
Using AutoLayout Utility
Controlling AutoLayout easier
AutoLayout Utility
AutoLayout Utility
• Resolving elements aligning problem
Expected
Unexpected
Original
AutoLayout Utility
[view ADKHideViewWidth];
[view ADKHideTrailingConstraint];
Demo
Using UIView+AutoLayoutSupport
Using ADKNibSizeCalculator
Nice tool for Communication
ADKNibSizeCalculator
ADKNibSizeCalculator
Modify nib file without changing any code
Using ADKNibSizeCalculator
Use ADKNibSizeCalculator to calculate size
CGSize size = [[ADKNibSizeCalculator sharedInstance]
sizeForNibNamed:@“NibName” withStyle:ADKNibFixedHeightScaling];
Demo
Calculating Nib Size with AppDevKit
Pull To Refresh in List View
Solution for Pull To Refresh
UIScrollView+ADKPullToRefreshView
Implement a PullToRefresh View
Implement required method for this protocol
- (void) ADKPullToRefreshStopped:(UIScrollView *)scrollView
- (void) ADKPullToRefreshTriggered:(UIScrollView *)scrollView
- (void) ADKPullToRefreshLoading:(UIScrollView *)scrollView
Create a view which implemented protocol ADKPullToRefreshViewProtocol
#import <AppDevKit/UIScrollView+ADKPullToRefreshView.h>
@interface PullToRefreshView : UIView <ADKPullToRefreshViewProtocol>
And more optional method for this protocol
- (CGFloat) ADKPullToRefreshTriggerDistanceTimes:(UIScrollView *)scrollView
- (void) ADKPullToRefreshDragging:(UIScrollView *)scrollView
- (void) ADKPullToRefreshView:(UIScrollView *)scrollView
draggingWithProgress:(CGFloat)progress
Add PullToRefresh View on Scroll View
Don’t forget to stop animation after things done
[scrollView.pullToRefreshContentView stopAnimating];
Add PullToRefresh View on Scroll View
[scrollView ADKAddPullToRefreshWithHandleView:refreshView
actionHandler:^{
// do something here
}];
Demo
Implement Pull To Refresh with AppDevKit
Using AppDevKit in Swift project
AppDevKit Works Well with Swift
Add Bridge Header
Add Bridge Header
#import <AppDevKit.h>
Bridge Header Settings
Using Swift with AppDevKit
self.view.backgroundColor =
UIColor.ADKColorWithHexString("0x1DB2E8")
Q + A

More Related Content

What's hot

Aicc slides p8
Aicc slides p8Aicc slides p8
Aicc slides p8
Jerry Arnold
 
Drawing Tool
Drawing ToolDrawing Tool
Drawing Tool
Dinesh Pathak
 
CapEdge july 2015
CapEdge july 2015CapEdge july 2015
CapEdge july 2015
Kirsten Rourke
 
Listview and Adapter
Listview and AdapterListview and Adapter
Listview and Adapter
Arif Huda
 
Shiny in R
Shiny in RShiny in R
Shiny in R
heba_ahmad
 
Jetpack compose
Jetpack composeJetpack compose
Jetpack compose
LutasLin
 
An R shiny demo for IDA MOOC facilitation, Developing Data Products
An R shiny demo for IDA MOOC facilitation, Developing Data ProductsAn R shiny demo for IDA MOOC facilitation, Developing Data Products
An R shiny demo for IDA MOOC facilitation, Developing Data Products
Wei Zhong Toh
 
AndroPainter Image Editor for GIMP in android
AndroPainter Image Editor for GIMP in androidAndroPainter Image Editor for GIMP in android
AndroPainter Image Editor for GIMP in android
officeonlinesystems
 
AndroInk vector graphics editor with Inkscape for Android
AndroInk vector graphics editor with Inkscape for AndroidAndroInk vector graphics editor with Inkscape for Android
AndroInk vector graphics editor with Inkscape for Android
officeonlinesystems
 

What's hot (9)

Aicc slides p8
Aicc slides p8Aicc slides p8
Aicc slides p8
 
Drawing Tool
Drawing ToolDrawing Tool
Drawing Tool
 
CapEdge july 2015
CapEdge july 2015CapEdge july 2015
CapEdge july 2015
 
Listview and Adapter
Listview and AdapterListview and Adapter
Listview and Adapter
 
Shiny in R
Shiny in RShiny in R
Shiny in R
 
Jetpack compose
Jetpack composeJetpack compose
Jetpack compose
 
An R shiny demo for IDA MOOC facilitation, Developing Data Products
An R shiny demo for IDA MOOC facilitation, Developing Data ProductsAn R shiny demo for IDA MOOC facilitation, Developing Data Products
An R shiny demo for IDA MOOC facilitation, Developing Data Products
 
AndroPainter Image Editor for GIMP in android
AndroPainter Image Editor for GIMP in androidAndroPainter Image Editor for GIMP in android
AndroPainter Image Editor for GIMP in android
 
AndroInk vector graphics editor with Inkscape for Android
AndroInk vector graphics editor with Inkscape for AndroidAndroInk vector graphics editor with Inkscape for Android
AndroInk vector graphics editor with Inkscape for Android
 

Viewers also liked

Tics
TicsTics
I am a ruby magazine news
I am a ruby magazine newsI am a ruby magazine news
I am a ruby magazine news
Living In God's Love Ministries Inc.
 
Bluemix&OpenWhisk
Bluemix&OpenWhiskBluemix&OpenWhisk
Bluemix&OpenWhisk
Hsuan-Ju Lin
 
"Get to Know Agriforvalor"
"Get to Know Agriforvalor""Get to Know Agriforvalor"
"Get to Know Agriforvalor"
Agencia Andaluza del Conocimiento
 
用Bluemix DevOps 建立良好的團隊開發與版本控制
用Bluemix DevOps 建立良好的團隊開發與版本控制用Bluemix DevOps 建立良好的團隊開發與版本控制
用Bluemix DevOps 建立良好的團隊開發與版本控制
Hsuan-Ju Lin
 
"Investigación e innovación responsables para un futuro mejor", por Rosina Ma...
"Investigación e innovación responsables para un futuro mejor", por Rosina Ma..."Investigación e innovación responsables para un futuro mejor", por Rosina Ma...
"Investigación e innovación responsables para un futuro mejor", por Rosina Ma...
Agencia Andaluza del Conocimiento
 
Home Of The Platinum Eagles
Home Of The Platinum Eagles Home Of The Platinum Eagles
Home Of The Platinum Eagles
Living In God's Love Ministries Inc.
 
CLEAN AIR - Improvement of Indoor Air Quality
CLEAN AIR - Improvement of Indoor Air QualityCLEAN AIR - Improvement of Indoor Air Quality
CLEAN AIR - Improvement of Indoor Air QualitySameer Rupani
 
Solucion de-conflictos
Solucion de-conflictosSolucion de-conflictos
Solucion de-conflictos
Johnatan Arango
 
Hedis - GET HBase via Redis
Hedis - GET HBase via RedisHedis - GET HBase via Redis
Hedis - GET HBase via Redis
Mu Chun Wang
 
The Origin And Growth Of The English Bible
The Origin And Growth Of The English BibleThe Origin And Growth Of The English Bible
The Origin And Growth Of The English Bible
Living In God's Love Ministries Inc.
 
不只自動化而且更敏捷的Android開發工具 gradle
不只自動化而且更敏捷的Android開發工具 gradle不只自動化而且更敏捷的Android開發工具 gradle
不只自動化而且更敏捷的Android開發工具 gradle
sam chiu
 
UX STRAT USA, Phil Ohme, "TurboTax Mobile Experience Strategy"
UX STRAT USA, Phil Ohme, "TurboTax Mobile Experience Strategy"UX STRAT USA, Phil Ohme, "TurboTax Mobile Experience Strategy"
UX STRAT USA, Phil Ohme, "TurboTax Mobile Experience Strategy"
UX STRAT
 
Peng. apk
Peng. apkPeng. apk
Peng. apk
RIKA NURVIANA
 
UX STRAT USA, Mike Hubler and Tim Klauda, "Changing the Culture of Consumer a...
UX STRAT USA, Mike Hubler and Tim Klauda, "Changing the Culture of Consumer a...UX STRAT USA, Mike Hubler and Tim Klauda, "Changing the Culture of Consumer a...
UX STRAT USA, Mike Hubler and Tim Klauda, "Changing the Culture of Consumer a...
UX STRAT
 

Viewers also liked (17)

Tics
TicsTics
Tics
 
Open day
Open dayOpen day
Open day
 
I am a ruby magazine news
I am a ruby magazine newsI am a ruby magazine news
I am a ruby magazine news
 
Bluemix&OpenWhisk
Bluemix&OpenWhiskBluemix&OpenWhisk
Bluemix&OpenWhisk
 
"Get to Know Agriforvalor"
"Get to Know Agriforvalor""Get to Know Agriforvalor"
"Get to Know Agriforvalor"
 
用Bluemix DevOps 建立良好的團隊開發與版本控制
用Bluemix DevOps 建立良好的團隊開發與版本控制用Bluemix DevOps 建立良好的團隊開發與版本控制
用Bluemix DevOps 建立良好的團隊開發與版本控制
 
"Investigación e innovación responsables para un futuro mejor", por Rosina Ma...
"Investigación e innovación responsables para un futuro mejor", por Rosina Ma..."Investigación e innovación responsables para un futuro mejor", por Rosina Ma...
"Investigación e innovación responsables para un futuro mejor", por Rosina Ma...
 
Home Of The Platinum Eagles
Home Of The Platinum Eagles Home Of The Platinum Eagles
Home Of The Platinum Eagles
 
CLEAN AIR - Improvement of Indoor Air Quality
CLEAN AIR - Improvement of Indoor Air QualityCLEAN AIR - Improvement of Indoor Air Quality
CLEAN AIR - Improvement of Indoor Air Quality
 
Solucion de-conflictos
Solucion de-conflictosSolucion de-conflictos
Solucion de-conflictos
 
Hedis - GET HBase via Redis
Hedis - GET HBase via RedisHedis - GET HBase via Redis
Hedis - GET HBase via Redis
 
The Origin And Growth Of The English Bible
The Origin And Growth Of The English BibleThe Origin And Growth Of The English Bible
The Origin And Growth Of The English Bible
 
CV TEC. ELECT DELMER
CV TEC. ELECT  DELMERCV TEC. ELECT  DELMER
CV TEC. ELECT DELMER
 
不只自動化而且更敏捷的Android開發工具 gradle
不只自動化而且更敏捷的Android開發工具 gradle不只自動化而且更敏捷的Android開發工具 gradle
不只自動化而且更敏捷的Android開發工具 gradle
 
UX STRAT USA, Phil Ohme, "TurboTax Mobile Experience Strategy"
UX STRAT USA, Phil Ohme, "TurboTax Mobile Experience Strategy"UX STRAT USA, Phil Ohme, "TurboTax Mobile Experience Strategy"
UX STRAT USA, Phil Ohme, "TurboTax Mobile Experience Strategy"
 
Peng. apk
Peng. apkPeng. apk
Peng. apk
 
UX STRAT USA, Mike Hubler and Tim Klauda, "Changing the Culture of Consumer a...
UX STRAT USA, Mike Hubler and Tim Klauda, "Changing the Culture of Consumer a...UX STRAT USA, Mike Hubler and Tim Klauda, "Changing the Culture of Consumer a...
UX STRAT USA, Mike Hubler and Tim Klauda, "Changing the Culture of Consumer a...
 

Similar to Practicing AppDevKit in kata training

Build a lego app with CocoaPods
Build a lego app with CocoaPodsBuild a lego app with CocoaPods
Build a lego app with CocoaPods
CocoaHeads France
 
Kotlin Multiplatform in Action - Alexandr Pogrebnyak - IceRockDev
Kotlin Multiplatform in Action - Alexandr Pogrebnyak - IceRockDevKotlin Multiplatform in Action - Alexandr Pogrebnyak - IceRockDev
Kotlin Multiplatform in Action - Alexandr Pogrebnyak - IceRockDev
DroidConTLV
 
Telerik Kendo UI Overview
Telerik Kendo UI OverviewTelerik Kendo UI Overview
Telerik Kendo UI Overview
Ed Musters
 
Integrate Google Map SDK in iOS App
Integrate Google Map SDK in iOS AppIntegrate Google Map SDK in iOS App
Integrate Google Map SDK in iOS App
Hitesh Kumar Singh
 
Synapse india mobile apps update
Synapse india mobile apps updateSynapse india mobile apps update
Synapse india mobile apps update
Synapseindiappsdevelopment
 
Synapse india reviews on i phone and android os
Synapse india reviews on i phone and android osSynapse india reviews on i phone and android os
Synapse india reviews on i phone and android os
saritasingh19866
 
From React to React Native - Things I wish I knew when I started
From React to React Native - Things I wish I knew when I startedFrom React to React Native - Things I wish I knew when I started
From React to React Native - Things I wish I knew when I started
sparkfabrik
 
Google Map Implementation with offline feature.
Google Map Implementation with offline feature.Google Map Implementation with offline feature.
Google Map Implementation with offline feature.
Jayanta Sinhamahapatra
 
Visual Studio Tools for Cordova
Visual Studio Tools for CordovaVisual Studio Tools for Cordova
Visual Studio Tools for Cordova
Andrea Tino
 
Android OS & SDK - Getting Started
Android OS & SDK - Getting StartedAndroid OS & SDK - Getting Started
Android OS & SDK - Getting Started
Hemant Chhapoliya
 
React Native: Introduction
React Native: IntroductionReact Native: Introduction
React Native: Introduction
InnerFood
 
Leaving Interface Builder Behind
Leaving Interface Builder BehindLeaving Interface Builder Behind
Leaving Interface Builder Behind
John Wilker
 
Google GIN
Google GINGoogle GIN
Google GIN
Anh Quân
 
Guice tutorial
Guice tutorialGuice tutorial
Guice tutorialAnh Quân
 
Koin
KoinKoin
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
Hazem Saleh
 
Quick Start to iOS Development
Quick Start to iOS DevelopmentQuick Start to iOS Development
Quick Start to iOS DevelopmentJussi Pohjolainen
 
From Idea to App (or “How we roll at Small Town Heroes”)
From Idea to App (or “How we roll at Small Town Heroes”)From Idea to App (or “How we roll at Small Town Heroes”)
From Idea to App (or “How we roll at Small Town Heroes”)
Bramus Van Damme
 
iOS App Using cordova
iOS App Using cordovaiOS App Using cordova
iOS App Using cordova
Mitosis Technology
 

Similar to Practicing AppDevKit in kata training (20)

Build a lego app with CocoaPods
Build a lego app with CocoaPodsBuild a lego app with CocoaPods
Build a lego app with CocoaPods
 
Kotlin Multiplatform in Action - Alexandr Pogrebnyak - IceRockDev
Kotlin Multiplatform in Action - Alexandr Pogrebnyak - IceRockDevKotlin Multiplatform in Action - Alexandr Pogrebnyak - IceRockDev
Kotlin Multiplatform in Action - Alexandr Pogrebnyak - IceRockDev
 
Telerik Kendo UI Overview
Telerik Kendo UI OverviewTelerik Kendo UI Overview
Telerik Kendo UI Overview
 
Integrate Google Map SDK in iOS App
Integrate Google Map SDK in iOS AppIntegrate Google Map SDK in iOS App
Integrate Google Map SDK in iOS App
 
Synapse india mobile apps update
Synapse india mobile apps updateSynapse india mobile apps update
Synapse india mobile apps update
 
Integrating Google AdMob
Integrating Google AdMobIntegrating Google AdMob
Integrating Google AdMob
 
Synapse india reviews on i phone and android os
Synapse india reviews on i phone and android osSynapse india reviews on i phone and android os
Synapse india reviews on i phone and android os
 
From React to React Native - Things I wish I knew when I started
From React to React Native - Things I wish I knew when I startedFrom React to React Native - Things I wish I knew when I started
From React to React Native - Things I wish I knew when I started
 
Google Map Implementation with offline feature.
Google Map Implementation with offline feature.Google Map Implementation with offline feature.
Google Map Implementation with offline feature.
 
Visual Studio Tools for Cordova
Visual Studio Tools for CordovaVisual Studio Tools for Cordova
Visual Studio Tools for Cordova
 
Android OS & SDK - Getting Started
Android OS & SDK - Getting StartedAndroid OS & SDK - Getting Started
Android OS & SDK - Getting Started
 
React Native: Introduction
React Native: IntroductionReact Native: Introduction
React Native: Introduction
 
Leaving Interface Builder Behind
Leaving Interface Builder BehindLeaving Interface Builder Behind
Leaving Interface Builder Behind
 
Google GIN
Google GINGoogle GIN
Google GIN
 
Guice tutorial
Guice tutorialGuice tutorial
Guice tutorial
 
Koin
KoinKoin
Koin
 
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
[JMaghreb 2014] Developing JavaScript Mobile Apps Using Apache Cordova
 
Quick Start to iOS Development
Quick Start to iOS DevelopmentQuick Start to iOS Development
Quick Start to iOS Development
 
From Idea to App (or “How we roll at Small Town Heroes”)
From Idea to App (or “How we roll at Small Town Heroes”)From Idea to App (or “How we roll at Small Town Heroes”)
From Idea to App (or “How we roll at Small Town Heroes”)
 
iOS App Using cordova
iOS App Using cordovaiOS App Using cordova
iOS App Using cordova
 

More from anistar sung

Best Strategy for Developing App Architecture and High Quality App
Best Strategy for Developing App Architecture and High Quality AppBest Strategy for Developing App Architecture and High Quality App
Best Strategy for Developing App Architecture and High Quality App
anistar sung
 
MOPCON 2015 - Tips of Mobile Continuous Delivery
MOPCON 2015 - Tips of Mobile Continuous DeliveryMOPCON 2015 - Tips of Mobile Continuous Delivery
MOPCON 2015 - Tips of Mobile Continuous Delivery
anistar sung
 
MOPCON 2014 - Best software architecture in app development
MOPCON 2014 - Best software architecture in app developmentMOPCON 2014 - Best software architecture in app development
MOPCON 2014 - Best software architecture in app development
anistar sung
 
Yahoo2013 hackday - Frosted Glass Effect on iOS app
Yahoo2013 hackday - Frosted Glass Effect on iOS app Yahoo2013 hackday - Frosted Glass Effect on iOS app
Yahoo2013 hackday - Frosted Glass Effect on iOS app
anistar sung
 
MOPCON 2013 - APP急速視覺UX回饋應用
MOPCON 2013 - APP急速視覺UX回饋應用MOPCON 2013 - APP急速視覺UX回饋應用
MOPCON 2013 - APP急速視覺UX回饋應用
anistar sung
 
談笑揭秘CSS3
談笑揭秘CSS3談笑揭秘CSS3
談笑揭秘CSS3
anistar sung
 

More from anistar sung (6)

Best Strategy for Developing App Architecture and High Quality App
Best Strategy for Developing App Architecture and High Quality AppBest Strategy for Developing App Architecture and High Quality App
Best Strategy for Developing App Architecture and High Quality App
 
MOPCON 2015 - Tips of Mobile Continuous Delivery
MOPCON 2015 - Tips of Mobile Continuous DeliveryMOPCON 2015 - Tips of Mobile Continuous Delivery
MOPCON 2015 - Tips of Mobile Continuous Delivery
 
MOPCON 2014 - Best software architecture in app development
MOPCON 2014 - Best software architecture in app developmentMOPCON 2014 - Best software architecture in app development
MOPCON 2014 - Best software architecture in app development
 
Yahoo2013 hackday - Frosted Glass Effect on iOS app
Yahoo2013 hackday - Frosted Glass Effect on iOS app Yahoo2013 hackday - Frosted Glass Effect on iOS app
Yahoo2013 hackday - Frosted Glass Effect on iOS app
 
MOPCON 2013 - APP急速視覺UX回饋應用
MOPCON 2013 - APP急速視覺UX回饋應用MOPCON 2013 - APP急速視覺UX回饋應用
MOPCON 2013 - APP急速視覺UX回饋應用
 
談笑揭秘CSS3
談笑揭秘CSS3談笑揭秘CSS3
談笑揭秘CSS3
 

Recently uploaded

Forklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella PartsForklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella Parts
Intella Parts
 
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
ydteq
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation & Control
 
PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
anoopmanoharan2
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
JoytuBarua2
 
digital fundamental by Thomas L.floydl.pdf
digital fundamental by Thomas L.floydl.pdfdigital fundamental by Thomas L.floydl.pdf
digital fundamental by Thomas L.floydl.pdf
drwaing
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Dr.Costas Sachpazis
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理
一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理
一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理
dxobcob
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
Victor Morales
 
Unbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptxUnbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptx
ChristineTorrepenida1
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
AJAYKUMARPUND1
 
DESIGN AND ANALYSIS OF A CAR SHOWROOM USING E TABS
DESIGN AND ANALYSIS OF A CAR SHOWROOM USING E TABSDESIGN AND ANALYSIS OF A CAR SHOWROOM USING E TABS
DESIGN AND ANALYSIS OF A CAR SHOWROOM USING E TABS
itech2017
 
Building Electrical System Design & Installation
Building Electrical System Design & InstallationBuilding Electrical System Design & Installation
Building Electrical System Design & Installation
symbo111
 
14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application
SyedAbiiAzazi1
 
basic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdfbasic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdf
NidhalKahouli2
 
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
zwunae
 
Technical Drawings introduction to drawing of prisms
Technical Drawings introduction to drawing of prismsTechnical Drawings introduction to drawing of prisms
Technical Drawings introduction to drawing of prisms
heavyhaig
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
Amil Baba Dawood bangali
 

Recently uploaded (20)

Forklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella PartsForklift Classes Overview by Intella Parts
Forklift Classes Overview by Intella Parts
 
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
 
PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
 
digital fundamental by Thomas L.floydl.pdf
digital fundamental by Thomas L.floydl.pdfdigital fundamental by Thomas L.floydl.pdf
digital fundamental by Thomas L.floydl.pdf
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理
一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理
一比一原版(Otago毕业证)奥塔哥大学毕业证成绩单如何办理
 
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressionsKuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
KuberTENes Birthday Bash Guadalajara - K8sGPT first impressions
 
Unbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptxUnbalanced Three Phase Systems and circuits.pptx
Unbalanced Three Phase Systems and circuits.pptx
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
 
DESIGN AND ANALYSIS OF A CAR SHOWROOM USING E TABS
DESIGN AND ANALYSIS OF A CAR SHOWROOM USING E TABSDESIGN AND ANALYSIS OF A CAR SHOWROOM USING E TABS
DESIGN AND ANALYSIS OF A CAR SHOWROOM USING E TABS
 
Building Electrical System Design & Installation
Building Electrical System Design & InstallationBuilding Electrical System Design & Installation
Building Electrical System Design & Installation
 
14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application
 
basic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdfbasic-wireline-operations-course-mahmoud-f-radwan.pdf
basic-wireline-operations-course-mahmoud-f-radwan.pdf
 
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
一比一原版(UMich毕业证)密歇根大学|安娜堡分校毕业证成绩单专业办理
 
Technical Drawings introduction to drawing of prisms
Technical Drawings introduction to drawing of prismsTechnical Drawings introduction to drawing of prisms
Technical Drawings introduction to drawing of prisms
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
 

Practicing AppDevKit in kata training