Posts

Showing posts with the label tryit

Git Debugging Techniques

https://www.pluralsight.com/courses/git-debugging-techniques by Aaron Stewart  Mod 1: Course Overview Course Overview Mod 2: Debug Using Binary Search with Git Bisect Three Git Debugging Techniques Git Bisect Use Cases git bisect use to track down when and where a bug was introduced How to Use Git Bisect Git Bisect in Action  try it step 1) you start by doing git bisect start step 2) git bisect good <good commit> step 3) git bisect bad <bad ommit> step 4) test the code step 5) if test fails, inform git by doing git bisect bad step 6) repeat steps 4 and 5 until bug is found step 7) end session by doing git bisect reset Automate Git Bisect automate git bisect by using a script try it Mod 3: Debug Using File History with Git Blame Introduction to Git Blame Git Blame Use Cases Git Blame in Action using git blame with line numbers like this: git blame -L 67,82 index.html If you're in a situation where you can see the effect of a bug, but aren't sure which part of t...

Using Google Analytics 4

https://www.pluralsight.com/courses/using-google-analytics-4 by Doru Catana Mod 1: Course Overview Course Overview Mod 2: Why Use Google Analytics 4 Why Use Google Analytics 4 and What's Different GA4 has moved from session based to event based model additional information on how GA4 differs from previous versions Course Overview Setup Prerequisites Mod 3: Setting Up Google Analytics Account Structure and Tracking Methods Identity Spaces: How Google Analytics Tracks You you google account cookies personalized user id from the site Setting up GA4 Tracking Benefits of Using Google Tag Manager makes creating custom events easy discusses chrome extension for google analytics  Mod 4: Understanding Reports Reporting Overview and Segmentation google provides a demo google analytics account for playing around with in reports, you can add Comparisons, Filters Acquisition - Traffic Channels and Sources first time visitors to your site are under User Acquisition traffic acquisition ...