ActiveRecord performance: N+1 queries
WEB
members

ActiveRecord performance: N+1 queries

Reference: https://guides.rubyonrails.org/active_record_querying.html#eager-loading-associations What is N+1 query? The N+1 query problem is one of the common performance antipatterns in ORMs. It ha
Bond
Javascript: Spread Operator
WEB
members

Javascript: Spread Operator

What is Spread Operator? ES6 provided a new operator called spread operator that consists of three dots (...). The spread operator allows you to expand arguments for function calls, elements for array
Huska
Web App Testing With Robot Framework Via Jenkins In Docker
devops
members

Web App Testing With Robot Framework Via Jenkins In Docker

OverviewThis blog post will show you one of practical testing scenarios which clearly demonstrates how to automate web application testing scenario with Robot Framework. ref: What is Robot Framework?
Roy Pham
Roy Pham
SFTP File Transfer Testing Via Jenkins In Docker
devops
members

SFTP File Transfer Testing Via Jenkins In Docker

OverviewThis blog will shows you one of practical testing scenarios which clearly demonstrates how to test SFTP file transfer. ref: What is SFTP Server? The test is really simple but to achieve that g
Roy Pham
Roy Pham
Web Application load test using Apache JMeter
testing
members

Web Application load test using Apache JMeter

Load testing is a type of performance testing that simulates a real-world load on any software, application, or website.[1] So basically, if your application needs to handle a huge amount of user/req
Louis
Louis
How to load test your API in 5 minute ?
testing
members

How to load test your API in 5 minute ?

How to load test your API
Clint
Clint
Appium For Beginner
testing
members

Appium For Beginner

■ Environment settingsJava Software Development Kit (JDK) - Java 1.8.201: https://www.oracle.com/java/technologies/javase-downloads.html - Document URL: http://www.automationtestinghub.com/setup-java-
Guppy
Rails: "find_in_batches" vs."in_batches" in depth comparison
WEB
members

Rails: "find_in_batches" vs."in_batches" in depth comparison

Rails, just like many other frameworks, has a lot of magic (and surprises too). Last month, when I had a chance to do a performance tuning for the ActiveRecord #find_in_batches and #find_batch I found
Tran Khanh
JavaScript: var, let and const
WEB
members

JavaScript: var, let and const

I. IntroductionECMAScript6 (abbr. ES6) is the second major revision to JavaScript and also known as ECMAScript2015. This is a JavaScript standard meant to ensure the interoperability of web pages acro
Kingsley