SlideShare a Scribd company logo
Tools and practices for rapid application development
Tools and practices for
rapid application
development
@iamzoltanvaradi
Tools and practices for
rapid application
development
@iamzoltanvaradi
Xcode
3rd party
libs
Snippets
Where to
look
ServicesApps
Apps Xcode
3rd party
libs
Snippets
Where to
look
Services
Apps
Balsamiq
mockups
Balsamiq mockups
• Wireframes and navigation
flows
• UX + imagination
• Native iOS UI element
templates
• Fast- and easy wire-framing
Apps
Balsamiq
mockups
Sketch 3
Sketch3
• Made for iOS designs
• Native iOS UI element
templates
• Complete toolset for mobile
design
• Similar parameters to
Interface Builder’s
• Screen-, app icon-, splash,
app store image design
• Export support for every
scale
photo: softpedia
Apps
Balsamiq
mockups
Sketch 3
Paintcode 2
Paintcode 2
• Drawing to code
• Solves complex & custom
drawing issues
• implements UI in DrawRect
photo: engadget
Apps
Balsamiq
mockups
Sketch 3
Paintcode 2 Appcode
Appcode
• Alternative IDE
• Code analysis
• Unit tests
Apps Xcode
3rd party
libs
Snippets
Where to
look
Services
Xcode
Plugins
KSImageNamed
RRConstraintsPlugin
Plugins
KSImageNamed
RRConstraintsPlugin
FuzzyAutocomplete
Plugins
XAlign
Plugins
XAlign
SCXCodeSwitchExpander
Plugins
XAlign
SCXCodeSwitchExpander
IconMaker
Apps
3rd party
libs
Xcode Snippets
Where to
look
Services
Danger
• Can’t understand
• Lots of issues
• Not actively maintained
• You could write it better
• Overkill
• Fails at 90% completion
• Leaks
• Retain cycles
• Conflicts with other libs
3rd party libraries
SDWebImage
3rd party libraries
SDWebImage
DZNEmptyDataSet
3rd party libraries
SDWebImage
DZNEmptyDataSet
JSONModel
3rd party libraries
MGSwipeTableCell
3rd party libraries
MGSwipeTableCell
Reactive cocoa
3rd party libraries
MGSwipeTableCell
Reactive cocoa
AFNetworking
3rd party libraries
Pop
3rd party libraries
Pop
MWPhotoBrowser
3rd party libraries
Pop
MWPhotoBrowser
MBProgressHUD
Apps ServicesXcode Snippets
Where to
look
3rd party
libs
Services
Fabric
(Crashlytics)
Fabric (Crashlytics)
• App analytics tool
• Easy to integrate from code
• Easy to join as tester
• Per version crash reports
• Plugins
• Twitter Kit, MoPub, Digits
• Free (for basic usage)
Services
Fabric
(Crashlytics)
Parse
Parse
• Simple remote data store
service
• Easy remote logging
• Flexible table content
• Statistics and analytics
• Push notification services
• Free (for basic usage)
Services
Fabric
(Crashlytics)
Parse
Drupal
Drupal
• PHP based community
driven CMS
• Easy to install
• “Click monkey” solution
• Out of the box REST with
session handling and OAuth
• Plugin support
• Free
• drupalgardens.com,
simplytest.me
Services
Fabric
(Crashlytics)
Parse
Drupal Launchkit
Launchkit
• Before launch services
• Screenshot Builder
• App landing page
• Review monitor
• Sales reports
Apps SnippetsXcode Services
Where to
look
3rd party
libs
Deep mutable dictionary
NSMutableDictionary *responseMutable = (NSMutableDictionary
*)CFBridgingRelease(CFPropertyListCreateDeepCopy(kCFAllocatorDefault,
(CFDictionaryRef)nonMutableDictionary, kCFPropertyListMutableContainers));
Trigger screen rotation
manually
[[UIDevice currentDevice]setValue:@(UIInterfaceOrientationPortrait)
forKey:@"orientation"];
Calling self from a block
__weak typeof(self) weakSelf = self;
[self.doSomething completion:^(id result, BOOL success)
{
__strong typeof(weakSelf)strongSelf = weakSelf;
if (strongSelf)
{
[strongSelf processResult:result];
}
}];
Trigger button actions in a
cell
// Create the tap action handler block
typedef void (^buttonTapActionBlock) (UITableViewCell*, BOOL);
@interface CustomUITableViewCell : UITableViewCell
// Create a property copied in your cell's class
@property (nonatomic, copy) buttonTapActionBlock firstButtonTapActionBlock;
@end
// Implement the tap action in cellForRowAtIndexPath
__weak typeof(self) weakSelf = self;
commentStickerCell.firstButtonTapActionBlock = ^(UITableViewCell* cell, BOOL isSelected)
{
__strong typeof(weakSelf) strongSelf = weakSelf;
if (strongSelf)
{
[strongSelf firstButtonTappedOnCell:cell withButtonSelection:isSelected];
}
};
- (void)firstButtonTappedOnCell:(UITableViewCell*)cell withButtonSelection:(BOOL)isSelected
{
NSIndexPath* cellIndexPath = [self.tableView indexPathForCell:cell];
Model* triggeredModel = self.modelArray[cellIndexPath.row];
[triggeredModel doSomething];
}
Multiple storyboards
connected in IB@implementation AOLinkedStoryboardSegue
+ (UIViewController *)sceneNamed:(NSString *)identifier
{
NSArray *info = [identifier componentsSeparatedByString:@"@"];
NSString *storyboard_name = info[1];
NSString *scene_name = info[0];
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:storyboard_name
bundle:nil];
UIViewController *scene = nil;
if (scene_name.length == 0) {
scene = [storyboard instantiateInitialViewController];
}
else {
scene = [storyboard instantiateViewControllerWithIdentifier:scene_name];
}
return scene;
}
- (id)initWithIdentifier:(NSString *)identifier
source:(UIViewController *)source
destination:(UIViewController *)destination
{
return [super initWithIdentifier:identifier
source:source
destination:[AOLinkedStoryboardSegue sceneNamed:identifier]];
}
- (void)perform
{
UIViewController *source = (UIViewController *)self.sourceViewController;
[source.navigationController pushViewController:self.destinationViewController
animated:YES];
}
@end
Multiple storyboards
connected in IB@implementation AOLinkedStoryboardSegue
+ (UIViewController *)sceneNamed:(NSString *)identifier
{
NSArray *info = [identifier componentsSeparatedByString:@"@"];
NSString *storyboard_name = info[1];
NSString *scene_name = info[0];
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:storyboard_name
bundle:nil];
UIViewController *scene = nil;
if (scene_name.length == 0) {
scene = [storyboard instantiateInitialViewController];
}
else {
scene = [storyboard instantiateViewControllerWithIdentifier:scene_name];
}
return scene;
}
- (id)initWithIdentifier:(NSString *)identifier
source:(UIViewController *)source
destination:(UIViewController *)destination
{
return [super initWithIdentifier:identifier
source:source
destination:[AOLinkedStoryboardSegue sceneNamed:identifier]];
}
- (void)perform
{
UIViewController *source = (UIViewController *)self.sourceViewController;
[source.navigationController pushViewController:self.destinationViewController
animated:YES];
}
@end
http://spin.atomicobject.com/2014/03/06/multiple-ios-storyboards/
DetailViewController@NotTheSameStoryBoard
Apps
Where to
look
Xcode Services Snippets
3rd party
libs
Where to look
Github
Where to look
Cocoacontro
ls
Github
NSHipster
Where to look
Cocoacontro
ls
Github
NSHipster
Where to look
Cocoacontro
ls
raywenderlic
h.com
Github
NSHipster
Where to look
Cocoacontro
ls
Dave Verwer
raywenderlic
h.com
Github
NSHipster
Where to look
Cocoacontro
ls
Dave Verwer
raywenderlic
h.com
Flipboard
Github
NSHipster
Where to look
Cocoacontro
ls
Dave Verwer
Facebook
raywenderlic
h.com
Flipboard
Github
What’s your favourite?
iamzoltanvaradi@gmail.com

More Related Content

What's hot (20)

Design pattern builder 20131115
Design pattern   builder 20131115Design pattern   builder 20131115
Design pattern builder 20131115
LearningTech
 
AngularJs Workshop SDP December 28th 2014
AngularJs Workshop SDP December 28th 2014AngularJs Workshop SDP December 28th 2014
AngularJs Workshop SDP December 28th 2014
Ran Wahle
 
Angular js
Angular jsAngular js
Angular js
Silver Touch Technologies Ltd
 
Automated Xcode 7 UI Testing
Automated Xcode 7 UI TestingAutomated Xcode 7 UI Testing
Automated Xcode 7 UI Testing
Jouni Miettunen
 
Xcode 7 UI Testing - Xcake Dublin, October 2015
Xcode 7 UI Testing - Xcake Dublin, October 2015Xcode 7 UI Testing - Xcake Dublin, October 2015
Xcode 7 UI Testing - Xcake Dublin, October 2015
roland99
 
angularJs Workshop
angularJs WorkshopangularJs Workshop
angularJs Workshop
Ran Wahle
 
Tech Talk #5 : KIF-iOS Integration Testing Framework - Nguyễn Hiệp
Tech Talk #5 : KIF-iOS Integration Testing Framework - Nguyễn HiệpTech Talk #5 : KIF-iOS Integration Testing Framework - Nguyễn Hiệp
Tech Talk #5 : KIF-iOS Integration Testing Framework - Nguyễn Hiệp
Nexus FrontierTech
 
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
 
Silverlight 2 for Developers - TechEd New Zealand 2008
Silverlight 2 for Developers - TechEd New Zealand 2008Silverlight 2 for Developers - TechEd New Zealand 2008
Silverlight 2 for Developers - TechEd New Zealand 2008
Jonas Follesø
 
iOS UI Testing in Xcode
iOS UI Testing in XcodeiOS UI Testing in Xcode
iOS UI Testing in Xcode
Jz Chang
 
Building a custom Oracle ADF Component
Building a custom Oracle ADF ComponentBuilding a custom Oracle ADF Component
Building a custom Oracle ADF Component
Wilfred van der Deijl
 
React Native for ReactJS Devs
React Native for ReactJS DevsReact Native for ReactJS Devs
React Native for ReactJS Devs
Barak Cohen
 
Angular2 and TypeScript
Angular2 and TypeScriptAngular2 and TypeScript
Angular2 and TypeScript
David Giard
 
 xctest
 xctest xctest
 xctest
Максим Сергеев
 
IOS Storyboards
IOS StoryboardsIOS Storyboards
IOS Storyboards
Muhammad Nabeel Arif
 
Angular genericforms2
Angular genericforms2Angular genericforms2
Angular genericforms2
Eliran Eliassy
 
React Native
React NativeReact Native
React Native
Heber Silva
 
The Gist of React Native
The Gist of React NativeThe Gist of React Native
The Gist of React Native
Darren Cruse
 
Builder design pattern
Builder design patternBuilder design pattern
Builder design pattern
Salim Shadman Ankur
 
Introduction to Angular JS
Introduction to Angular JSIntroduction to Angular JS
Introduction to Angular JS
Santhosh Kumar Srinivasan
 
Design pattern builder 20131115
Design pattern   builder 20131115Design pattern   builder 20131115
Design pattern builder 20131115
LearningTech
 
AngularJs Workshop SDP December 28th 2014
AngularJs Workshop SDP December 28th 2014AngularJs Workshop SDP December 28th 2014
AngularJs Workshop SDP December 28th 2014
Ran Wahle
 
Automated Xcode 7 UI Testing
Automated Xcode 7 UI TestingAutomated Xcode 7 UI Testing
Automated Xcode 7 UI Testing
Jouni Miettunen
 
Xcode 7 UI Testing - Xcake Dublin, October 2015
Xcode 7 UI Testing - Xcake Dublin, October 2015Xcode 7 UI Testing - Xcake Dublin, October 2015
Xcode 7 UI Testing - Xcake Dublin, October 2015
roland99
 
angularJs Workshop
angularJs WorkshopangularJs Workshop
angularJs Workshop
Ran Wahle
 
Tech Talk #5 : KIF-iOS Integration Testing Framework - Nguyễn Hiệp
Tech Talk #5 : KIF-iOS Integration Testing Framework - Nguyễn HiệpTech Talk #5 : KIF-iOS Integration Testing Framework - Nguyễn Hiệp
Tech Talk #5 : KIF-iOS Integration Testing Framework - Nguyễn Hiệp
Nexus FrontierTech
 
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
 
Silverlight 2 for Developers - TechEd New Zealand 2008
Silverlight 2 for Developers - TechEd New Zealand 2008Silverlight 2 for Developers - TechEd New Zealand 2008
Silverlight 2 for Developers - TechEd New Zealand 2008
Jonas Follesø
 
iOS UI Testing in Xcode
iOS UI Testing in XcodeiOS UI Testing in Xcode
iOS UI Testing in Xcode
Jz Chang
 
Building a custom Oracle ADF Component
Building a custom Oracle ADF ComponentBuilding a custom Oracle ADF Component
Building a custom Oracle ADF Component
Wilfred van der Deijl
 
React Native for ReactJS Devs
React Native for ReactJS DevsReact Native for ReactJS Devs
React Native for ReactJS Devs
Barak Cohen
 
Angular2 and TypeScript
Angular2 and TypeScriptAngular2 and TypeScript
Angular2 and TypeScript
David Giard
 
The Gist of React Native
The Gist of React NativeThe Gist of React Native
The Gist of React Native
Darren Cruse
 

Viewers also liked (20)

ส.3 การใช้งานอินเทอร์เน็ต
ส.3 การใช้งานอินเทอร์เน็ตส.3 การใช้งานอินเทอร์เน็ต
ส.3 การใช้งานอินเทอร์เน็ต
Khemjira_P
 
数控平板切割机
数控平板切割机数控平板切割机
数控平板切割机
Trinity Hu
 
C.v WEB OF SCIENCE : Madkour LH
C.v WEB OF SCIENCE    : Madkour LH  C.v WEB OF SCIENCE    : Madkour LH
C.v WEB OF SCIENCE : Madkour LH
Al Baha University
 
Music video treatment
Music video treatmentMusic video treatment
Music video treatment
Danpalacefan
 
Photo essay
Photo essayPhoto essay
Photo essay
Phuong Nguyen
 
Managerial Economics (Break Even Point)
Managerial Economics (Break Even Point)Managerial Economics (Break Even Point)
Managerial Economics (Break Even Point)
Sandeep Patel
 
Background
BackgroundBackground
Background
Frances Anne Pasiliao
 
Geïntegreerd Security Management
Geïntegreerd Security ManagementGeïntegreerd Security Management
Geïntegreerd Security Management
Bieke Van Baelen
 
Farewell Sermon
Farewell SermonFarewell Sermon
Farewell Sermon
ssclasstorremar
 
Invexpert e L' Assistente Patrimoniale
Invexpert e L' Assistente Patrimoniale Invexpert e L' Assistente Patrimoniale
Invexpert e L' Assistente Patrimoniale
Mauro Vanzini
 
Social media in 7 questions
Social media in 7 questionsSocial media in 7 questions
Social media in 7 questions
The Post Institute: Center for Life-Long Learning
 
Twitter pp
Twitter ppTwitter pp
Twitter pp
Sean Bradley
 
Sexting Guest Lecture
Sexting Guest LectureSexting Guest Lecture
Sexting Guest Lecture
renabivens
 
المؤمن..والجبال (الجزء الثاني) سمير فؤاد
المؤمن..والجبال (الجزء الثاني)        سمير فؤادالمؤمن..والجبال (الجزء الثاني)        سمير فؤاد
المؤمن..والجبال (الجزء الثاني) سمير فؤاد
Ibrahimia Church Ftriends
 
شرح اصول الايمان عشاء الرب
شرح اصول الايمان   عشاء الربشرح اصول الايمان   عشاء الرب
شرح اصول الايمان عشاء الرب
Ibrahimia Church Ftriends
 
Умный ребенок
Умный ребенокУмный ребенок
Умный ребенок
Alexander Borisov
 
Financial management
Financial managementFinancial management
Financial management
Sarfraz Khalil
 
Kaedah Menghias Akuarium
Kaedah Menghias AkuariumKaedah Menghias Akuarium
Kaedah Menghias Akuarium
Alyssa Camilia
 
Scott Pechstein: No Thanks, I'm just looking
Scott Pechstein: No Thanks, I'm just looking Scott Pechstein: No Thanks, I'm just looking
Scott Pechstein: No Thanks, I'm just looking
Sean Bradley
 
Inhibition Effect of Hydantoin Compounds on the Corrosion of Iron in Nitric a...
Inhibition Effect of Hydantoin Compounds on the Corrosion of Iron in Nitric a...Inhibition Effect of Hydantoin Compounds on the Corrosion of Iron in Nitric a...
Inhibition Effect of Hydantoin Compounds on the Corrosion of Iron in Nitric a...
Al Baha University
 
ส.3 การใช้งานอินเทอร์เน็ต
ส.3 การใช้งานอินเทอร์เน็ตส.3 การใช้งานอินเทอร์เน็ต
ส.3 การใช้งานอินเทอร์เน็ต
Khemjira_P
 
数控平板切割机
数控平板切割机数控平板切割机
数控平板切割机
Trinity Hu
 
C.v WEB OF SCIENCE : Madkour LH
C.v WEB OF SCIENCE    : Madkour LH  C.v WEB OF SCIENCE    : Madkour LH
C.v WEB OF SCIENCE : Madkour LH
Al Baha University
 
Music video treatment
Music video treatmentMusic video treatment
Music video treatment
Danpalacefan
 
Managerial Economics (Break Even Point)
Managerial Economics (Break Even Point)Managerial Economics (Break Even Point)
Managerial Economics (Break Even Point)
Sandeep Patel
 
Geïntegreerd Security Management
Geïntegreerd Security ManagementGeïntegreerd Security Management
Geïntegreerd Security Management
Bieke Van Baelen
 
Invexpert e L' Assistente Patrimoniale
Invexpert e L' Assistente Patrimoniale Invexpert e L' Assistente Patrimoniale
Invexpert e L' Assistente Patrimoniale
Mauro Vanzini
 
Sexting Guest Lecture
Sexting Guest LectureSexting Guest Lecture
Sexting Guest Lecture
renabivens
 
المؤمن..والجبال (الجزء الثاني) سمير فؤاد
المؤمن..والجبال (الجزء الثاني)        سمير فؤادالمؤمن..والجبال (الجزء الثاني)        سمير فؤاد
المؤمن..والجبال (الجزء الثاني) سمير فؤاد
Ibrahimia Church Ftriends
 
شرح اصول الايمان عشاء الرب
شرح اصول الايمان   عشاء الربشرح اصول الايمان   عشاء الرب
شرح اصول الايمان عشاء الرب
Ibrahimia Church Ftriends
 
Kaedah Menghias Akuarium
Kaedah Menghias AkuariumKaedah Menghias Akuarium
Kaedah Menghias Akuarium
Alyssa Camilia
 
Scott Pechstein: No Thanks, I'm just looking
Scott Pechstein: No Thanks, I'm just looking Scott Pechstein: No Thanks, I'm just looking
Scott Pechstein: No Thanks, I'm just looking
Sean Bradley
 
Inhibition Effect of Hydantoin Compounds on the Corrosion of Iron in Nitric a...
Inhibition Effect of Hydantoin Compounds on the Corrosion of Iron in Nitric a...Inhibition Effect of Hydantoin Compounds on the Corrosion of Iron in Nitric a...
Inhibition Effect of Hydantoin Compounds on the Corrosion of Iron in Nitric a...
Al Baha University
 

Similar to Tools and practices for rapid application development (20)

Medium TechTalk — iOS
Medium TechTalk — iOSMedium TechTalk — iOS
Medium TechTalk — iOS
jimmyatmedium
 
20180518 QNAP Seminar - Introduction to React Native
20180518 QNAP Seminar - Introduction to React Native20180518 QNAP Seminar - Introduction to React Native
20180518 QNAP Seminar - Introduction to React Native
Eric Deng
 
How to create an Angular builder
How to create an Angular builderHow to create an Angular builder
How to create an Angular builder
Maurizio Vitale
 
Code camp 2011 Getting Started with IOS, Una Daly
Code camp 2011 Getting Started with IOS, Una DalyCode camp 2011 Getting Started with IOS, Una Daly
Code camp 2011 Getting Started with IOS, Una Daly
Una Daly
 
From Backbone to Ember and Back(bone) Again
From Backbone to Ember and Back(bone) AgainFrom Backbone to Ember and Back(bone) Again
From Backbone to Ember and Back(bone) Again
jonknapp
 
Tell Me Quando - Implementing Feature Flags
Tell Me Quando - Implementing Feature FlagsTell Me Quando - Implementing Feature Flags
Tell Me Quando - Implementing Feature Flags
Jorge Ortiz
 
Developing maintainable Cordova applications
Developing maintainable Cordova applicationsDeveloping maintainable Cordova applications
Developing maintainable Cordova applications
Ivano Malavolta
 
MongoDB.local Atlanta: Introduction to Serverless MongoDB
MongoDB.local Atlanta: Introduction to Serverless MongoDBMongoDB.local Atlanta: Introduction to Serverless MongoDB
MongoDB.local Atlanta: Introduction to Serverless MongoDB
MongoDB
 
Drupal 7 ci and testing
Drupal 7 ci and testingDrupal 7 ci and testing
Drupal 7 ci and testing
Claudio Beatrice
 
The fundamental problems of GUI applications and why people choose React
The fundamental problems of GUI applications and why people choose ReactThe fundamental problems of GUI applications and why people choose React
The fundamental problems of GUI applications and why people choose React
Oliver N
 
What's new in android: jetpack compose 2024
What's new in android: jetpack compose 2024What's new in android: jetpack compose 2024
What's new in android: jetpack compose 2024
Toru Wonyoung Choi
 
Introduction to Visual Basic 6.0
Introduction to Visual Basic 6.0Introduction to Visual Basic 6.0
Introduction to Visual Basic 6.0
DivyaR219113
 
Philip Shurpik "Architecting React Native app"
Philip Shurpik "Architecting React Native app"Philip Shurpik "Architecting React Native app"
Philip Shurpik "Architecting React Native app"
Fwdays
 
Telerik AppBuilder Presentation for TelerikNEXT Conference
Telerik AppBuilder Presentation for TelerikNEXT ConferenceTelerik AppBuilder Presentation for TelerikNEXT Conference
Telerik AppBuilder Presentation for TelerikNEXT Conference
Jen Looper
 
Red Hat JBoss BRMS and BPMS Workbench and Rich Client Technology
Red Hat JBoss BRMS and BPMS Workbench and Rich Client TechnologyRed Hat JBoss BRMS and BPMS Workbench and Rich Client Technology
Red Hat JBoss BRMS and BPMS Workbench and Rich Client Technology
Mark Proctor
 
Codemotion 2013 - Designing complex applications using html5 and knockoutjs
Codemotion 2013 - Designing complex applications using html5 and knockoutjsCodemotion 2013 - Designing complex applications using html5 and knockoutjs
Codemotion 2013 - Designing complex applications using html5 and knockoutjs
Fabio Franzini
 
04 objective-c session 4
04  objective-c session 404  objective-c session 4
04 objective-c session 4
Amr Elghadban (AmrAngry)
 
Implementing Data Visualization Apps on iOS Devices
Implementing Data Visualization Apps on iOS DevicesImplementing Data Visualization Apps on iOS Devices
Implementing Data Visualization Apps on iOS Devices
Douglass Turner
 
Building Rich User Experiences Without JavaScript Spaghetti
Building Rich User Experiences Without JavaScript SpaghettiBuilding Rich User Experiences Without JavaScript Spaghetti
Building Rich User Experiences Without JavaScript Spaghetti
Jared Faris
 
RobotStudiopp.ppt
RobotStudiopp.pptRobotStudiopp.ppt
RobotStudiopp.ppt
NhaTruongThanh
 
Medium TechTalk — iOS
Medium TechTalk — iOSMedium TechTalk — iOS
Medium TechTalk — iOS
jimmyatmedium
 
20180518 QNAP Seminar - Introduction to React Native
20180518 QNAP Seminar - Introduction to React Native20180518 QNAP Seminar - Introduction to React Native
20180518 QNAP Seminar - Introduction to React Native
Eric Deng
 
How to create an Angular builder
How to create an Angular builderHow to create an Angular builder
How to create an Angular builder
Maurizio Vitale
 
Code camp 2011 Getting Started with IOS, Una Daly
Code camp 2011 Getting Started with IOS, Una DalyCode camp 2011 Getting Started with IOS, Una Daly
Code camp 2011 Getting Started with IOS, Una Daly
Una Daly
 
From Backbone to Ember and Back(bone) Again
From Backbone to Ember and Back(bone) AgainFrom Backbone to Ember and Back(bone) Again
From Backbone to Ember and Back(bone) Again
jonknapp
 
Tell Me Quando - Implementing Feature Flags
Tell Me Quando - Implementing Feature FlagsTell Me Quando - Implementing Feature Flags
Tell Me Quando - Implementing Feature Flags
Jorge Ortiz
 
Developing maintainable Cordova applications
Developing maintainable Cordova applicationsDeveloping maintainable Cordova applications
Developing maintainable Cordova applications
Ivano Malavolta
 
MongoDB.local Atlanta: Introduction to Serverless MongoDB
MongoDB.local Atlanta: Introduction to Serverless MongoDBMongoDB.local Atlanta: Introduction to Serverless MongoDB
MongoDB.local Atlanta: Introduction to Serverless MongoDB
MongoDB
 
The fundamental problems of GUI applications and why people choose React
The fundamental problems of GUI applications and why people choose ReactThe fundamental problems of GUI applications and why people choose React
The fundamental problems of GUI applications and why people choose React
Oliver N
 
What's new in android: jetpack compose 2024
What's new in android: jetpack compose 2024What's new in android: jetpack compose 2024
What's new in android: jetpack compose 2024
Toru Wonyoung Choi
 
Introduction to Visual Basic 6.0
Introduction to Visual Basic 6.0Introduction to Visual Basic 6.0
Introduction to Visual Basic 6.0
DivyaR219113
 
Philip Shurpik "Architecting React Native app"
Philip Shurpik "Architecting React Native app"Philip Shurpik "Architecting React Native app"
Philip Shurpik "Architecting React Native app"
Fwdays
 
Telerik AppBuilder Presentation for TelerikNEXT Conference
Telerik AppBuilder Presentation for TelerikNEXT ConferenceTelerik AppBuilder Presentation for TelerikNEXT Conference
Telerik AppBuilder Presentation for TelerikNEXT Conference
Jen Looper
 
Red Hat JBoss BRMS and BPMS Workbench and Rich Client Technology
Red Hat JBoss BRMS and BPMS Workbench and Rich Client TechnologyRed Hat JBoss BRMS and BPMS Workbench and Rich Client Technology
Red Hat JBoss BRMS and BPMS Workbench and Rich Client Technology
Mark Proctor
 
Codemotion 2013 - Designing complex applications using html5 and knockoutjs
Codemotion 2013 - Designing complex applications using html5 and knockoutjsCodemotion 2013 - Designing complex applications using html5 and knockoutjs
Codemotion 2013 - Designing complex applications using html5 and knockoutjs
Fabio Franzini
 
Implementing Data Visualization Apps on iOS Devices
Implementing Data Visualization Apps on iOS DevicesImplementing Data Visualization Apps on iOS Devices
Implementing Data Visualization Apps on iOS Devices
Douglass Turner
 
Building Rich User Experiences Without JavaScript Spaghetti
Building Rich User Experiences Without JavaScript SpaghettiBuilding Rich User Experiences Without JavaScript Spaghetti
Building Rich User Experiences Without JavaScript Spaghetti
Jared Faris
 

Recently uploaded (20)

Adobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage Dashboards
Adobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage DashboardsAdobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage Dashboards
Adobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage Dashboards
BradBedford3
 
Why Orangescrum Is a Game Changer for Construction Companies in 2025
Why Orangescrum Is a Game Changer for Construction Companies in 2025Why Orangescrum Is a Game Changer for Construction Companies in 2025
Why Orangescrum Is a Game Changer for Construction Companies in 2025
Orangescrum
 
Societal challenges of AI: biases, multilinguism and sustainability
Societal challenges of AI: biases, multilinguism and sustainabilitySocietal challenges of AI: biases, multilinguism and sustainability
Societal challenges of AI: biases, multilinguism and sustainability
Jordi Cabot
 
Full Cracked Resolume Arena Latest Version
Full Cracked Resolume Arena Latest VersionFull Cracked Resolume Arena Latest Version
Full Cracked Resolume Arena Latest Version
jonesmichealj2
 
Automation Techniques in RPA - UiPath Certificate
Automation Techniques in RPA - UiPath CertificateAutomation Techniques in RPA - UiPath Certificate
Automation Techniques in RPA - UiPath Certificate
VICTOR MAESTRE RAMIREZ
 
Foundation Models for Time Series : A Survey
Foundation Models for Time Series : A SurveyFoundation Models for Time Series : A Survey
Foundation Models for Time Series : A Survey
jayanthkalyanam1
 
Revolutionizing Residential Wi-Fi PPT.pptx
Revolutionizing Residential Wi-Fi PPT.pptxRevolutionizing Residential Wi-Fi PPT.pptx
Revolutionizing Residential Wi-Fi PPT.pptx
nidhisingh691197
 
PRTG Network Monitor Crack Latest Version & Serial Key 2025 [100% Working]
PRTG Network Monitor Crack Latest Version & Serial Key 2025 [100% Working]PRTG Network Monitor Crack Latest Version & Serial Key 2025 [100% Working]
PRTG Network Monitor Crack Latest Version & Serial Key 2025 [100% Working]
saimabibi60507
 
Apple Logic Pro X Crack FRESH Version 2025
Apple Logic Pro X Crack FRESH Version 2025Apple Logic Pro X Crack FRESH Version 2025
Apple Logic Pro X Crack FRESH Version 2025
fs4635986
 
Interactive odoo dashboards for sales, CRM , Inventory, Invoice, Purchase, Pr...
Interactive odoo dashboards for sales, CRM , Inventory, Invoice, Purchase, Pr...Interactive odoo dashboards for sales, CRM , Inventory, Invoice, Purchase, Pr...
Interactive odoo dashboards for sales, CRM , Inventory, Invoice, Purchase, Pr...
AxisTechnolabs
 
Not So Common Memory Leaks in Java Webinar
Not So Common Memory Leaks in Java WebinarNot So Common Memory Leaks in Java Webinar
Not So Common Memory Leaks in Java Webinar
Tier1 app
 
F-Secure Freedome VPN 2025 Crack Plus Activation New Version
F-Secure Freedome VPN 2025 Crack Plus Activation  New VersionF-Secure Freedome VPN 2025 Crack Plus Activation  New Version
F-Secure Freedome VPN 2025 Crack Plus Activation New Version
saimabibi60507
 
Landscape of Requirements Engineering for/by AI through Literature Review
Landscape of Requirements Engineering for/by AI through Literature ReviewLandscape of Requirements Engineering for/by AI through Literature Review
Landscape of Requirements Engineering for/by AI through Literature Review
Hironori Washizaki
 
PDF Reader Pro Crack Latest Version FREE Download 2025
PDF Reader Pro Crack Latest Version FREE Download 2025PDF Reader Pro Crack Latest Version FREE Download 2025
PDF Reader Pro Crack Latest Version FREE Download 2025
mu394968
 
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Andre Hora
 
FlakyFix: Using Large Language Models for Predicting Flaky Test Fix Categorie...
FlakyFix: Using Large Language Models for Predicting Flaky Test Fix Categorie...FlakyFix: Using Large Language Models for Predicting Flaky Test Fix Categorie...
FlakyFix: Using Large Language Models for Predicting Flaky Test Fix Categorie...
Lionel Briand
 
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
Andre Hora
 
Top 10 Data Cleansing Tools for 2025.pdf
Top 10 Data Cleansing Tools for 2025.pdfTop 10 Data Cleansing Tools for 2025.pdf
Top 10 Data Cleansing Tools for 2025.pdf
AffinityCore
 
Secure Test Infrastructure: The Backbone of Trustworthy Software Development
Secure Test Infrastructure: The Backbone of Trustworthy Software DevelopmentSecure Test Infrastructure: The Backbone of Trustworthy Software Development
Secure Test Infrastructure: The Backbone of Trustworthy Software Development
Shubham Joshi
 
WinRAR Crack for Windows (100% Working 2025)
WinRAR Crack for Windows (100% Working 2025)WinRAR Crack for Windows (100% Working 2025)
WinRAR Crack for Windows (100% Working 2025)
sh607827
 
Adobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage Dashboards
Adobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage DashboardsAdobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage Dashboards
Adobe Marketo Engage Champion Deep Dive - SFDC CRM Synch V2 & Usage Dashboards
BradBedford3
 
Why Orangescrum Is a Game Changer for Construction Companies in 2025
Why Orangescrum Is a Game Changer for Construction Companies in 2025Why Orangescrum Is a Game Changer for Construction Companies in 2025
Why Orangescrum Is a Game Changer for Construction Companies in 2025
Orangescrum
 
Societal challenges of AI: biases, multilinguism and sustainability
Societal challenges of AI: biases, multilinguism and sustainabilitySocietal challenges of AI: biases, multilinguism and sustainability
Societal challenges of AI: biases, multilinguism and sustainability
Jordi Cabot
 
Full Cracked Resolume Arena Latest Version
Full Cracked Resolume Arena Latest VersionFull Cracked Resolume Arena Latest Version
Full Cracked Resolume Arena Latest Version
jonesmichealj2
 
Automation Techniques in RPA - UiPath Certificate
Automation Techniques in RPA - UiPath CertificateAutomation Techniques in RPA - UiPath Certificate
Automation Techniques in RPA - UiPath Certificate
VICTOR MAESTRE RAMIREZ
 
Foundation Models for Time Series : A Survey
Foundation Models for Time Series : A SurveyFoundation Models for Time Series : A Survey
Foundation Models for Time Series : A Survey
jayanthkalyanam1
 
Revolutionizing Residential Wi-Fi PPT.pptx
Revolutionizing Residential Wi-Fi PPT.pptxRevolutionizing Residential Wi-Fi PPT.pptx
Revolutionizing Residential Wi-Fi PPT.pptx
nidhisingh691197
 
PRTG Network Monitor Crack Latest Version & Serial Key 2025 [100% Working]
PRTG Network Monitor Crack Latest Version & Serial Key 2025 [100% Working]PRTG Network Monitor Crack Latest Version & Serial Key 2025 [100% Working]
PRTG Network Monitor Crack Latest Version & Serial Key 2025 [100% Working]
saimabibi60507
 
Apple Logic Pro X Crack FRESH Version 2025
Apple Logic Pro X Crack FRESH Version 2025Apple Logic Pro X Crack FRESH Version 2025
Apple Logic Pro X Crack FRESH Version 2025
fs4635986
 
Interactive odoo dashboards for sales, CRM , Inventory, Invoice, Purchase, Pr...
Interactive odoo dashboards for sales, CRM , Inventory, Invoice, Purchase, Pr...Interactive odoo dashboards for sales, CRM , Inventory, Invoice, Purchase, Pr...
Interactive odoo dashboards for sales, CRM , Inventory, Invoice, Purchase, Pr...
AxisTechnolabs
 
Not So Common Memory Leaks in Java Webinar
Not So Common Memory Leaks in Java WebinarNot So Common Memory Leaks in Java Webinar
Not So Common Memory Leaks in Java Webinar
Tier1 app
 
F-Secure Freedome VPN 2025 Crack Plus Activation New Version
F-Secure Freedome VPN 2025 Crack Plus Activation  New VersionF-Secure Freedome VPN 2025 Crack Plus Activation  New Version
F-Secure Freedome VPN 2025 Crack Plus Activation New Version
saimabibi60507
 
Landscape of Requirements Engineering for/by AI through Literature Review
Landscape of Requirements Engineering for/by AI through Literature ReviewLandscape of Requirements Engineering for/by AI through Literature Review
Landscape of Requirements Engineering for/by AI through Literature Review
Hironori Washizaki
 
PDF Reader Pro Crack Latest Version FREE Download 2025
PDF Reader Pro Crack Latest Version FREE Download 2025PDF Reader Pro Crack Latest Version FREE Download 2025
PDF Reader Pro Crack Latest Version FREE Download 2025
mu394968
 
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Exceptional Behaviors: How Frequently Are They Tested? (AST 2025)
Andre Hora
 
FlakyFix: Using Large Language Models for Predicting Flaky Test Fix Categorie...
FlakyFix: Using Large Language Models for Predicting Flaky Test Fix Categorie...FlakyFix: Using Large Language Models for Predicting Flaky Test Fix Categorie...
FlakyFix: Using Large Language Models for Predicting Flaky Test Fix Categorie...
Lionel Briand
 
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
TestMigrationsInPy: A Dataset of Test Migrations from Unittest to Pytest (MSR...
Andre Hora
 
Top 10 Data Cleansing Tools for 2025.pdf
Top 10 Data Cleansing Tools for 2025.pdfTop 10 Data Cleansing Tools for 2025.pdf
Top 10 Data Cleansing Tools for 2025.pdf
AffinityCore
 
Secure Test Infrastructure: The Backbone of Trustworthy Software Development
Secure Test Infrastructure: The Backbone of Trustworthy Software DevelopmentSecure Test Infrastructure: The Backbone of Trustworthy Software Development
Secure Test Infrastructure: The Backbone of Trustworthy Software Development
Shubham Joshi
 
WinRAR Crack for Windows (100% Working 2025)
WinRAR Crack for Windows (100% Working 2025)WinRAR Crack for Windows (100% Working 2025)
WinRAR Crack for Windows (100% Working 2025)
sh607827
 

Tools and practices for rapid application development

Editor's Notes

  • #17: KSImageNamed, Lin, FuzzyAutocomplete
  • #54: website and newsletter