Challenges and Lessons Learned during my internship at IndieBI
# CHAPTER 2
My first impressions
Text
For very deep introduction to IndieBI app
# CHAPTER 2
Things which surprised me after switching from Cypress to Playwright
# PRESENTING CODE
# CHAPTER 2
How to get activation code
# PRESENTING CODE
# PRESENTING CODE
// Measure the distance between two points
const distanceBetween = ( p1, p2 ) => {
const dx = p1[0]-p2[0];
const dy = p1[1]-p2[1];
return Math.sqrt( dx*dx + dy*dy );
}
distanceBetween([10,10], [50,50])
# PRESENTING CODE