SlideShare a Scribd company logo
1 of 57
Download to read offline
4 SIMPLE RULES TO REFACTORING
STEVEN YAP, FUTUREWORKZ
StevenYap
stevenyap@futureworkz.com
https://github.com/stevenyap
COUNTRY = SINGAPORE
STATE = SINGAPORE
CITY = SINGAPORE
CAPITAL = SINGAPORE
• Host Saigon.rb Ruby Meetup
• Co-Founder of Futureworkz
• Ruby on Rails coder
• Agile startup consultant
Awesome Ruby on Rails Development
http://www.futureworkz.com
http://playbook.futureworkz.com/
WHAT IS REFACTORING?
IS REFACTORING
IMPORTANT?
WHO LOVES
REFACTORING?
WHO HATES
REFACTORING?
4 SIMPLE RULES TO REFACTORING BY STEVEN YAP
I HATE REFACTORING BECAUSE...
▸ extra work to do
▸ what if i break something else?
▸ waste of time
▸ takes up too much time
▸ no time
▸ don't know what to refactor
▸ how to refactor?
▸ i can't see the code smell
▸ makes me feel stupid
▸ any other reasons?
HATE REFACTORING
😡😡😡😡
4 SIMPLE RULES TO REFACTORING
HTTP://PLAYBOOK.FUTUREWORKZ.COM/PROTOCOLS/CODE-REVIEW/INDEX.HTML
LOVE REFACTORING
😍😍😍😍
4 SIMPLE RULES TO REFACTORING BY STEVEN YAP
THE FOUR RULES
▸ Write Test Cases
▸ Don't Repeat Yourself (DRY)
▸ Naming Reveals Intention
▸ Single Responsibility Principle (SRP)
RULE #1:
WRITE TEST CASES
4 SIMPLE RULES TO REFACTORING BY STEVEN YAP
RULE #1: WRITE TEST CASES
▸ No test cases = no refactoring
▸ Never try to refactor without a test case to cover you
▸ Other coders' test cases protect you too
▸ Stress-free in coding = more happiness
▸ Easy way to write test cases (self-promotion):

http://blog.futureworkz.com/ruby-on-rails/easy-way-write-test-case/
▸ The more test cases you write, the faster you write the test cases
require	'rails_helper'	
describe	Program	do	
		context	'validations'	do	
				it	{	is_expected.to	validate_presence_of	:name	}	
				it	{	is_expected.to	validate_presence_of	:category_id	}	
				it	{	is_expected.to	validate_presence_of	:team_id	}	
				it	{	is_expected.to	validate_presence_of	:estimated_start_date	}	
				it	{	is_expected.to	enumerize(:status).in(:wip,	:unsuccessful,	:pending_approval,	:approved,	:rejected,	:completed)	}	
		end	
		context	'associations'	do	
				it	{	is_expected.to	have_one	:job	}	
				it	{	is_expected.to	have_many	:quotations	}	
				it	{	is_expected.to	have_many	:pos_to_suppliers	}	
				it	{	is_expected.to	have_many	:pos_to_suppliers_in_group	}	
				it	{	is_expected.to	have_many	:approved_quotations	}	
				it	{	is_expected.to	have_many	:cost_items	}	
		end	
		describe	'.started'	do	
				let!(:pending_program)	{	create(:pending_program)	}	
				let!(:started_program)	{	create(:approved_program)	}	
				it	'returns	an	array	of	started	program'	do	
						expect(Program.started).to	include	started_program	
						expect(Program.started).to_not	include	pending_program	
				end	
		end	
end
HATE REFACTORING
😡😡😡😡
HATE REFACTORING
😍😡😡😡
RULE #2:
DON'T REPEAT YOURSELF
class	ShoppingCart	
		has_many	:products	
		def	final_price	
				products.map(&:price).inject(&:+)	+	country_tax	
		end	
		def	country_tax	
				products.map(&:price).inject(&:+)	*	0.1	
		end	
end
class	ShoppingCart	
		has_many	:products	
		def	final_price	
				total_price	+	country_tax	
		end	
		def	country_tax	
				total_price	*	0.1	
		end	
		def	total_price	
				products.map(&:price).inject(&:+)	
		end	
end
class	ShoppingCart	
		has_many	:products	
		def	final_price	
				products.map(&:price).inject(&:+)	+	country_tax	
		end	
		def	country_tax	
				products.map(&:price).inject(&:+)	*	0.1	
		end	
end
class	Order	<	ActiveRecord::Base	
		def	pending?	
				status	==	:pending	
		end	
		def	paid?	
				status	==	:paid	
		end	
		def	delivered?	
				status	==	:delivered	
		end	
		def	cancelled?	
				status	==	:cancelled	
		end	
		def	refunded?	
				status	==	:refunded	
		end	
end
class	Order	<	ActiveRecord::Base	
		STATUSES	=	[:pending,	:paid,	:delivered,	:cancelled,	:refunded]	
		STATUSES.each	do	|status_name|	
				define_method	"#{status}?"	do	
						status	==	status_name	
				end	
		end	
end
class	Order	<	ActiveRecord::Base	
		def	pending?	
				status	==	:pending	
		end	
		def	paid?	
				status	==	:paid	
		end	
		def	delivered?	
				status	==	:delivered	
		end	
		def	cancelled?	
				status	==	:cancelled	
		end	
		def	refunded?	
				status	==	:refunded	
		end	
end
4 SIMPLE RULES TO REFACTORING BY STEVEN YAP
RULE #2: DON'T REPEAT YOURSELF (DRY)
▸ Easiest way to refactor
▸ Find duplicates in codes and extract them into a method/class
▸ JUST OPEN YOUR EYES AND READ YOUR CODE AGAIN
▸ Find duplicated patterns in codes and extract them
▸ Find duplicated codes across files is harder
HATE REFACTORING
😍😡😡😡
HATE REFACTORING
😍😍😡😡
RULE #3:
NAMING REVEALS INTENTION
4 SIMPLE RULES TO REFACTORING BY STEVEN YAP
GOOD NAMING IN RUBY/RAILS
▸ Array.first, Array.second, Array.third, ..., Array.forty_two
▸ Date.tomorrow, Date.today
▸ 1.hour.ago, 3.weeks.from_now
▸ Array.each
4 SIMPLE RULES TO REFACTORING BY STEVEN YAP
GOOD NAMING?
▸ shopping_cart.total_price
▸ Product.price_less_than(20)
▸ Numerology.calculate_lucky_number_from(dob: user.dob)
▸ person.male?
▸ get_youtube_id(youtube_url)
4 SIMPLE RULES TO REFACTORING BY STEVEN YAP
RULE #3: NAMING REVEALS INTENTION
▸ Naming for variable, method, class, file, even values
▸ Reveal what you are doing or why you are doing, not how you are doing

eg.

(how) UserMailer.use_gmail_smtp_send_email

(what) UserMailer.send_email

(why) UserMailer.send_activation_email
▸ The next coder can understand/guess intuitively what your variable/method/
class is doing
require	'rails_helper'	
describe	ProductsController,	type:	:controller	do	
		describe	'#index'	do	
				let!(:p1)	{	create(:product,	published:	true)	}	
				let!(:p2)	{	create(:product,	published:	false)	}	
				it	'return	products'	do	
						get	:index	
						expect(assigns(:products)).to_not	include	p2	
				end	
		end	
end
require	'rails_helper'	
describe	ProductsController,	type:	:controller	do	
		describe	'#index'	do	
				let!(:published_product)			{	create(:product,	published:	true)	}	
				let!(:unpublished_product)	{	create(:product,	published:	false)	}	
				it	'does	not	return	unpublished	products'	do	
						get	:index	
						expect(assigns(:products)).to_not	include	unpublished_product	
				end	
		end	
end	
require	'rails_helper'	
describe	ProductsController,	type:	:controller	do	
		describe	'#index'	do	
				let!(:p1)	{	create(:product,	published:	true)	}	
				let!(:p2)	{	create(:product,	published:	false)	}	
				it	'return	products'	do	
						get	:index	
						expect(assigns(:products)).to_not	include	p2	
				end	
		end	
end
class	User	<	ActiveRecord::Base	
		after_create	:verify	
		def	verify	
				UserMailer.verify(self).deliver	
		end	
end
class	User	<	ActiveRecord::Base	
		after_create	:verify	
		def	verify	
				#	send	email	verification	
				UserMailer.verify(self).deliver	
		end	
end
class	User	<	ActiveRecord::Base	
		after_create	:send_email_verification	
		def	send_email_verification	
				UserMailer.verify_email(self).deliver	
		end	
end
class	User	<	ActiveRecord::Base	
		after_create	:verify	
		def	verify	
				#	send	email	verification	
				UserMailer.verify(self).deliver	
		end	
end
4 SIMPLE RULES TO REFACTORING BY STEVEN YAP
RULE #3: NAMING REVEALS INTENTION - THE DON'TS
▸ DON'T DO THIS:
▸ n = 100
▸ p1 = Product.new
▸ product1 = Product.new
▸ category = Product.new
▸ Write comments to explain your code*
4 SIMPLE RULES TO REFACTORING BY STEVEN YAP
RULE #3: NAMING REVEALS INTENTION - THE DOS
▸ Use conventional naming:

created_at (datetime) vs created_on (date)

products (array of product)

published?
▸ Name what the variable/method/class is doing or why it needs to do this
▸ Search in thesaurus.com
▸ Ask a non-coder how to name something or describe what you want to do
▸ Convert comment into a method instead
▸ Ask yourself: How can I let myself understand this code 1 year later?
HATE REFACTORING
😍😍😡😡
HATE REFACTORING
😍😍😍😡
RULE #4:
SINGLE RESPONSIBILITY PRINCIPLE
4 SIMPLE RULES TO REFACTORING BY STEVEN YAP
RULE #4: SINGLE RESPONSIBILITY PRINCIPLE (SRP)
▸ Robert C. Martin: "A class should have only one reason to change"
▸ A class or method should only do one thing
class	MessagesController	<	ApplicationController	
		def	create	
				recipient	=	User.find(message_params[:recipient])	
				subject	=	block_contact_information(message_params[:subject])	
				body	=	block_contact_information(message_params[:body])	
				message	=	Message.new(recipient,	subject,	body)	
				if	message.save	
						render	json:	{success:	"Your	message	has	been	sent	successfully"}	
				else	
						render	json:	{error:	message.errors}	
				end	
		end	
		private	
		def	block_contact_information(content)	
				phone_regex	=	/(?:+?|b)[0-9]{4,}/	
				content.gsub!(phone_regex,	'[Blocked	Content]')	
				email_regex	=	/[a-z]+[a-z0-9_-]*@[a-z0-9_-]+.[a-z]{2,}/i	
				content.gsub!(email_regex,	'[Blocked	Content]')	
				website_regex	=	/https?://[S]+/	
				content.gsub!(website_regex,	'[Blocked	Content]')	
		end	
		def	message_params	
				params.require(:message).permit(:receipient,	:subject,	:body)	
		end	
end
def	block_contact_information(content)	
		phone_regex	=	/(?:+?|b)[0-9]{4,}/	
		content.gsub!(phone_regex,	'[Blocked	Content]')	
		email_regex	=	/[a-z]+[a-z0-9_-]*@[a-z0-9_-]+.[a-z]{2,}/i	
		content.gsub!(email_regex,	'[Blocked	Content]')	
		website_regex	=	/https?://[S]+/	
		content.gsub!(website_regex,	'[Blocked	Content]')	
end
def	block_contact_information(content)	
		block_phone_contact(content)	
		block_email_contact(content)	
		block_website_contact(content)	
end	
def	block_phone_contact(content)	
		phone_regex	=	/(?:+?|b)[0-9]{4,}/	
		content.gsub!(phone_regex,	'[Blocked	Content]')	
end	
def	block_email_contact(content)	
		email_regex	=	/[a-z]+[a-z0-9_-]*@[a-z0-9_-]+.[a-z]{2,}/i	
		content.gsub!(email_regex,	'[Blocked	Content]')	
end	
def	block_website_contact(content)	
		website_regex	=	/https?://[S]+/	
		content.gsub!(website_regex,	'[Blocked	Content]')	
end
def	block_contact_information(content)	
		phone_regex	=	/(?:+?|b)[0-9]{4,}/	
		content.gsub!(phone_regex,	'[Blocked	Content]')	
		email_regex	=	/[a-z]+[a-z0-9_-]*@[a-z0-9_-]+.[a-z]{2,}/i	
		content.gsub!(email_regex,	'[Blocked	Content]')	
		website_regex	=	/https?://[S]+/	
		content.gsub!(website_regex,	'[Blocked	Content]')	
end
class	BlockContact	
		def	self.santize(content)	
				[:phone,	:email,	:website].inject(content)	do	|content,	contact_type|		
						self.send("block_#{contact_type}",	content)	
				end	
		end	
		def	self.block_phone(content)	
				phone_regex	=	/(?:+?|b)[0-9]{4,}/	
				content.gsub(phone_regex,	'[Blocked	Content]')	
		end	
		def	self.block_email(content)	
				email_regex	=	/[a-z]+[a-z0-9_-]*@[a-z0-9_-]+.[a-z]{2,}/i	
				content.gsub(email_regex,	'[Blocked	Content]')	
		end	
		def	self.block_website(content)	
				website_regex	=	/https?://[S]+/	
				content.gsub(website_regex,	'[Blocked	Content]')	
		end	
end	
#	BlockContact.santize('My	phone	is	91234567	and	my	email	is	stevenyap@futureworkz.com')	
#	=>	"My	phone	is	[Blocked	Content]	and	my	email	is	[Blocked	Content]"
4 SIMPLE RULES TO REFACTORING BY STEVEN YAP
RULE #4: SINGLE RESPONSIBILITY PRINCIPLE (SRP)
▸ Long methods are the easiest to find (>10 lines?)
▸ Know the responsibility of Model, View, Controller well
▸ Ask yourself if this object is doing the right thing
▸ Ask yourself if this method is doing only one thing
▸ SRP normally give rise to more advanced refactoring/patterns

Eg. observer, delegate, services, etc
HATE REFACTORING
😍😍😍😡
HATE REFACTORING
😍😍😍😍
LOVE REFACTORING
😍😍😍😍
4 SIMPLE RULES TO REFACTORING BY STEVEN YAP
USING THE FOUR RULES
▸ Rule #1 of rule #1:

Always think about test cases first!
▸ Refactor using DRY + Naming + SRP iteratively
▸ Think through your code using the 4 rules to achieve a minimum good quality
▸ Don't stop at the 4 rules & learn/refactor more as you gain more experience

(eg. SOLID principles, LoD, Anti-patterns)
4 SIMPLE RULES TO REFACTORING BY STEVEN YAP
FINAL TIPS ON REFACTORING & FEELING BETTER AS A CODER
▸ Don't stress yourself to refactor the code to be the best

There are no BEST code in the world
▸ Don't be hard on yourself if you cannot detect a code smell

Learn from it! You will become better over time!
▸ Take a moment to relish your refactored code!

Be proud to show it off in the pull request for code review.
▸ Protect your reputation as a world-class coder

Have pride as a coder!
CLEAN & CLEAR CODE
EASY TO UNDERSTAND
CODE IS BEAUTIFUL
CODE IS ART
LOVE REFACTORING
😍😍😍😍
4 SIMPLE RULES TO REFACTORING BY STEVEN YAP

More Related Content

Recently uploaded

How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...kalichargn70th171
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024Mind IT Systems
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...software pro Development
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfproinshot.com
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdfPearlKirahMaeRagusta1
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension AidPhilip Schwarz
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfryanfarris8
 

Recently uploaded (20)

Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
The Guide to Integrating Generative AI into Unified Continuous Testing Platfo...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...How to Choose the Right Laravel Development Partner in New York City_compress...
How to Choose the Right Laravel Development Partner in New York City_compress...
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdfAzure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
Azure_Native_Qumulo_High_Performance_Compute_Benchmarks.pdf
 

Featured

Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at WorkGetSmarter
 

Featured (20)

Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 

4 Simple Rules to Refactoring