├── Module 1 ├── Assignments │ ├── Debugging Python Scripts.pdf │ ├── Debugging Python Scripts.png │ ├── greetings.py │ └── greetings_solved.py ├── Quiz │ ├── Binary Searching a Problem-Practice Quiz │ │ ├── Practice Quiz.pdf │ │ ├── Practice Quiz.png │ │ └── Practice Quiz_AfterSubmit.pdf │ ├── Introduction to Debugging-Practice Quiz │ │ ├── Practice Quiz-AfterSubmit.pdf │ │ ├── Practice Quiz.pdf │ │ └── Practice Quiz.png │ └── Understanding the Problem-Practice Quiz │ │ ├── Practice Quiz-AfterSubmit.pdf │ │ ├── Practice Quiz.pdf │ │ └── Practice Quiz.png ├── Reading │ ├── Linear and Binary Search.pdf │ ├── binary_search.py │ ├── find_item.py │ └── linear_search.py └── notes_module_1.md ├── Module 2 ├── Assignments │ ├── final_assignment-Fix a slow system with Python.pdf │ ├── final_assignment.pdf │ ├── final_assignment.png │ ├── scripts_final_assignment │ │ ├── dailysync.py │ │ └── multisync.py │ └── thumbnail_generator.py ├── Quiz │ ├── Slow Code │ │ ├── practice_quiz_module2.pdf │ │ ├── practice_quiz_module2.png │ │ └── practice_quiz_module2_afterSubmit.pdf │ ├── Understanding Slowness │ │ ├── practice_quiz_module2.pdf │ │ └── practice_quiz_module2.png │ └── When Slowness Problem Get Complex │ │ ├── practice_quiz_module2.pdf │ │ ├── practice_quiz_module2.png │ │ └── practice_quiz_module2_afterSubmit.pdf ├── Reading │ ├── Slow Code │ │ └── en_wikipedia_org_wiki_Profiling_(computer_programming).pdf │ ├── Understanding Slowness │ │ ├── brendangregg_com_usemethod_html.pdf │ │ ├── docs_microsoft_com_en-us_sysinternals_downloads_process-explorer.pdf │ │ ├── docs_microsoft_com_en-us_sysinternals_downloads_procmon.pdf │ │ ├── en_wikipedia_org_wiki_Cache_(computing).pdf │ │ ├── support_apple_com_en-us_HT201464.pdf │ │ ├── www_brendangregg_com_linuxperf_html.pdf │ │ ├── www_digitalcitizen_life_how-use-resource-monitor-windows-7.pdf │ │ ├── www_reddit_com_r_linux_comments_d7hx2c_why_nice_levels_are_a_placebo_and_have_been_for_a_.pdf │ │ └── www_windowscentral_com_how-use-performance-monitor-windows-10.pdf │ └── When Slowness Problem Get Complex │ │ ├── hackernoon_com_threaded-asynchronous-magic-and-how-to-wield-it-bba9ed602c32.pdf │ │ └── realpython_com_python-concurrency_.pdf ├── notesImages │ ├── kcachegrind_tool_func_call_graph_image2.png │ ├── kcachegrind_tool_image1.png │ ├── threads_script_image1.png │ ├── time_cmd_output_9users_image2.png │ ├── time_cmd_output_image1.png │ └── top_output_image1.png └── notes_module_2.md ├── Module 3 ├── Assignments │ ├── Fix errors with a crashing script-qwiklabs.pdf │ ├── Fix errors with a crashing script-qwiklabs.png │ └── Script and Data │ │ ├── data.bak │ │ ├── data.csv │ │ └── infrastructure ├── Quiz │ ├── Code that Crashes │ │ ├── practice_quiz_module3.pdf │ │ ├── practice_quiz_module3.png │ │ └── practice_quiz_module3_afterSubmit.pdf │ ├── Handling Bigger Incidents │ │ ├── practice_quiz_module3.pdf │ │ ├── practice_quiz_module3.png │ │ └── practice_quiz_module3_afterSubmit.pdf │ └── Why Programs Crash │ │ ├── practice_quiz_module3.pdf │ │ ├── practice_quiz_module3.png │ │ └── practice_quiz_module3_afterSubmit.pdf ├── Reading │ ├── Code that Crashes │ │ ├── hackernoon_com_threaded-asynchronous-magic-and-how-to-wield-it-bba9ed602c32.pdf │ │ ├── realpython_com_python-concurrency_.pdf │ │ ├── sites_google_com_a_case_edu_hpcc_home_important-notes-for-new-users_debugging-segmentation-faults.pdf │ │ └── stackoverflow_com_questions_33047452_definitive-list-of-common-reasons-for-segmentation-faults.pdf │ └── Why Programs Crash │ │ ├── docs_microsoft_com_en-us_sysinternals_downloads_procmon.pdf │ │ ├── en_wikipedia_org_wiki_Blue_screen_of_death.pdf │ │ ├── etcnotes_com_posts_system-call_.pdf │ │ ├── www_digitalmastersmag_com_magazine_tip-of-the-day-how-to-find-crash-logs-on-windows-10_.pdf │ │ ├── www_fosslinux_com_8984_how-to-check-system-logs-on-linux-complete-usage-guide_htm.pdf │ │ ├── www_howtoforge_com_linux-strace-command_.pdf │ │ ├── www_howtogeek_com_356942_how-to-view-the-system-log-on-a-mac_.pdf │ │ └── www_scientificamerican_com_article_why-do-computers-crash_.pdf ├── notesImages │ ├── gdb_backtrace_output_image2.png │ ├── gdb_c_core_output_image1.png │ ├── gdb_list_output_image4.png │ ├── gdb_print_argv_output_image6.png │ ├── gdb_print_output_image5.png │ ├── gdb_up_output_image3.png │ ├── netstat_command_image1.png │ ├── postmortem_sample_image1.png │ ├── postmortem_sample_image2.png │ └── print_technique_debug_image1.png └── notes_module_3.md ├── Module 4 ├── Assignments │ ├── Debugging and Solving Software Problems-qwiklabs.pdf │ ├── Debugging and Solving Software Problems-qwiklabs.png │ └── Script and Data │ │ ├── employees-with-date.csv │ │ └── start_date_report.py ├── Quiz │ ├── Making Our Future Lives Easier │ │ ├── practice_quiz_module4.pdf │ │ ├── practice_quiz_module4.png │ │ └── practice_quiz_module4_afterSubmit.pdf │ ├── Managing Computer Resources │ │ ├── practice_quiz_module4.pdf │ │ ├── practice_quiz_module4.png │ │ └── practice_quiz_module4_afterSubmit.pdf │ └── Managing Our Time │ │ ├── practice_quiz_module4.pdf │ │ ├── practice_quiz_module4.png │ │ └── practice_quiz_module4_afterSubmit.pdf ├── Reading │ ├── Making Our Future Lives Easier │ │ ├── blog_turbonomic_com_blog_on-technology_thinking-like-an-architect-understanding-failure-domains.pdf │ │ ├── coursera.org-More About Preventing Future Breakage.pdf │ │ ├── landing_google_com_sre_sre-book_chapters_effective-troubleshooting_.pdf │ │ └── simpleprogrammer_com_understanding_the_problem_domain_is_the.pdf │ ├── Managing Computer Resources │ │ ├── www_linuxjournal_com_content_troubleshooting-network-problems.pdf │ │ └── www_pluralsight_com_blog_tutorials_how-to-profile-memory-usage-in-python.pdf │ └── Managing Our Time │ │ └── blog_rescuetime_com_how-to-prioritize_.pdf ├── notesImages │ ├── decorator_for_mem_profiling_image1.png │ ├── eisenhower_decision_matrix_image1.png │ ├── mem_profiler_output_image1.png │ └── memory_usage_top_image1.png └── notes_module_4.md ├── README.md └── google_logo-preview.jpg /Module 1/Assignments/Debugging Python Scripts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Assignments/Debugging Python Scripts.pdf -------------------------------------------------------------------------------- /Module 1/Assignments/Debugging Python Scripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Assignments/Debugging Python Scripts.png -------------------------------------------------------------------------------- /Module 1/Assignments/greetings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Assignments/greetings.py -------------------------------------------------------------------------------- /Module 1/Assignments/greetings_solved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Assignments/greetings_solved.py -------------------------------------------------------------------------------- /Module 1/Quiz/Binary Searching a Problem-Practice Quiz/Practice Quiz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Quiz/Binary Searching a Problem-Practice Quiz/Practice Quiz.pdf -------------------------------------------------------------------------------- /Module 1/Quiz/Binary Searching a Problem-Practice Quiz/Practice Quiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Quiz/Binary Searching a Problem-Practice Quiz/Practice Quiz.png -------------------------------------------------------------------------------- /Module 1/Quiz/Binary Searching a Problem-Practice Quiz/Practice Quiz_AfterSubmit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Quiz/Binary Searching a Problem-Practice Quiz/Practice Quiz_AfterSubmit.pdf -------------------------------------------------------------------------------- /Module 1/Quiz/Introduction to Debugging-Practice Quiz/Practice Quiz-AfterSubmit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Quiz/Introduction to Debugging-Practice Quiz/Practice Quiz-AfterSubmit.pdf -------------------------------------------------------------------------------- /Module 1/Quiz/Introduction to Debugging-Practice Quiz/Practice Quiz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Quiz/Introduction to Debugging-Practice Quiz/Practice Quiz.pdf -------------------------------------------------------------------------------- /Module 1/Quiz/Introduction to Debugging-Practice Quiz/Practice Quiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Quiz/Introduction to Debugging-Practice Quiz/Practice Quiz.png -------------------------------------------------------------------------------- /Module 1/Quiz/Understanding the Problem-Practice Quiz/Practice Quiz-AfterSubmit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Quiz/Understanding the Problem-Practice Quiz/Practice Quiz-AfterSubmit.pdf -------------------------------------------------------------------------------- /Module 1/Quiz/Understanding the Problem-Practice Quiz/Practice Quiz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Quiz/Understanding the Problem-Practice Quiz/Practice Quiz.pdf -------------------------------------------------------------------------------- /Module 1/Quiz/Understanding the Problem-Practice Quiz/Practice Quiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Quiz/Understanding the Problem-Practice Quiz/Practice Quiz.png -------------------------------------------------------------------------------- /Module 1/Reading/Linear and Binary Search.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Reading/Linear and Binary Search.pdf -------------------------------------------------------------------------------- /Module 1/Reading/binary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Reading/binary_search.py -------------------------------------------------------------------------------- /Module 1/Reading/find_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Reading/find_item.py -------------------------------------------------------------------------------- /Module 1/Reading/linear_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/Reading/linear_search.py -------------------------------------------------------------------------------- /Module 1/notes_module_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 1/notes_module_1.md -------------------------------------------------------------------------------- /Module 2/Assignments/final_assignment-Fix a slow system with Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Assignments/final_assignment-Fix a slow system with Python.pdf -------------------------------------------------------------------------------- /Module 2/Assignments/final_assignment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Assignments/final_assignment.pdf -------------------------------------------------------------------------------- /Module 2/Assignments/final_assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Assignments/final_assignment.png -------------------------------------------------------------------------------- /Module 2/Assignments/scripts_final_assignment/dailysync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Assignments/scripts_final_assignment/dailysync.py -------------------------------------------------------------------------------- /Module 2/Assignments/scripts_final_assignment/multisync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Assignments/scripts_final_assignment/multisync.py -------------------------------------------------------------------------------- /Module 2/Assignments/thumbnail_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Assignments/thumbnail_generator.py -------------------------------------------------------------------------------- /Module 2/Quiz/Slow Code/practice_quiz_module2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Quiz/Slow Code/practice_quiz_module2.pdf -------------------------------------------------------------------------------- /Module 2/Quiz/Slow Code/practice_quiz_module2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Quiz/Slow Code/practice_quiz_module2.png -------------------------------------------------------------------------------- /Module 2/Quiz/Slow Code/practice_quiz_module2_afterSubmit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Quiz/Slow Code/practice_quiz_module2_afterSubmit.pdf -------------------------------------------------------------------------------- /Module 2/Quiz/Understanding Slowness/practice_quiz_module2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Quiz/Understanding Slowness/practice_quiz_module2.pdf -------------------------------------------------------------------------------- /Module 2/Quiz/Understanding Slowness/practice_quiz_module2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Quiz/Understanding Slowness/practice_quiz_module2.png -------------------------------------------------------------------------------- /Module 2/Quiz/When Slowness Problem Get Complex/practice_quiz_module2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Quiz/When Slowness Problem Get Complex/practice_quiz_module2.pdf -------------------------------------------------------------------------------- /Module 2/Quiz/When Slowness Problem Get Complex/practice_quiz_module2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Quiz/When Slowness Problem Get Complex/practice_quiz_module2.png -------------------------------------------------------------------------------- /Module 2/Quiz/When Slowness Problem Get Complex/practice_quiz_module2_afterSubmit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Quiz/When Slowness Problem Get Complex/practice_quiz_module2_afterSubmit.pdf -------------------------------------------------------------------------------- /Module 2/Reading/Slow Code/en_wikipedia_org_wiki_Profiling_(computer_programming).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Reading/Slow Code/en_wikipedia_org_wiki_Profiling_(computer_programming).pdf -------------------------------------------------------------------------------- /Module 2/Reading/Understanding Slowness/brendangregg_com_usemethod_html.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Reading/Understanding Slowness/brendangregg_com_usemethod_html.pdf -------------------------------------------------------------------------------- /Module 2/Reading/Understanding Slowness/docs_microsoft_com_en-us_sysinternals_downloads_process-explorer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Reading/Understanding Slowness/docs_microsoft_com_en-us_sysinternals_downloads_process-explorer.pdf -------------------------------------------------------------------------------- /Module 2/Reading/Understanding Slowness/docs_microsoft_com_en-us_sysinternals_downloads_procmon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Reading/Understanding Slowness/docs_microsoft_com_en-us_sysinternals_downloads_procmon.pdf -------------------------------------------------------------------------------- /Module 2/Reading/Understanding Slowness/en_wikipedia_org_wiki_Cache_(computing).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Reading/Understanding Slowness/en_wikipedia_org_wiki_Cache_(computing).pdf -------------------------------------------------------------------------------- /Module 2/Reading/Understanding Slowness/support_apple_com_en-us_HT201464.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Reading/Understanding Slowness/support_apple_com_en-us_HT201464.pdf -------------------------------------------------------------------------------- /Module 2/Reading/Understanding Slowness/www_brendangregg_com_linuxperf_html.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Reading/Understanding Slowness/www_brendangregg_com_linuxperf_html.pdf -------------------------------------------------------------------------------- /Module 2/Reading/Understanding Slowness/www_digitalcitizen_life_how-use-resource-monitor-windows-7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Reading/Understanding Slowness/www_digitalcitizen_life_how-use-resource-monitor-windows-7.pdf -------------------------------------------------------------------------------- /Module 2/Reading/Understanding Slowness/www_reddit_com_r_linux_comments_d7hx2c_why_nice_levels_are_a_placebo_and_have_been_for_a_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Reading/Understanding Slowness/www_reddit_com_r_linux_comments_d7hx2c_why_nice_levels_are_a_placebo_and_have_been_for_a_.pdf -------------------------------------------------------------------------------- /Module 2/Reading/Understanding Slowness/www_windowscentral_com_how-use-performance-monitor-windows-10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Reading/Understanding Slowness/www_windowscentral_com_how-use-performance-monitor-windows-10.pdf -------------------------------------------------------------------------------- /Module 2/Reading/When Slowness Problem Get Complex/hackernoon_com_threaded-asynchronous-magic-and-how-to-wield-it-bba9ed602c32.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Reading/When Slowness Problem Get Complex/hackernoon_com_threaded-asynchronous-magic-and-how-to-wield-it-bba9ed602c32.pdf -------------------------------------------------------------------------------- /Module 2/Reading/When Slowness Problem Get Complex/realpython_com_python-concurrency_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/Reading/When Slowness Problem Get Complex/realpython_com_python-concurrency_.pdf -------------------------------------------------------------------------------- /Module 2/notesImages/kcachegrind_tool_func_call_graph_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/notesImages/kcachegrind_tool_func_call_graph_image2.png -------------------------------------------------------------------------------- /Module 2/notesImages/kcachegrind_tool_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/notesImages/kcachegrind_tool_image1.png -------------------------------------------------------------------------------- /Module 2/notesImages/threads_script_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/notesImages/threads_script_image1.png -------------------------------------------------------------------------------- /Module 2/notesImages/time_cmd_output_9users_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/notesImages/time_cmd_output_9users_image2.png -------------------------------------------------------------------------------- /Module 2/notesImages/time_cmd_output_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/notesImages/time_cmd_output_image1.png -------------------------------------------------------------------------------- /Module 2/notesImages/top_output_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/notesImages/top_output_image1.png -------------------------------------------------------------------------------- /Module 2/notes_module_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 2/notes_module_2.md -------------------------------------------------------------------------------- /Module 3/Assignments/Fix errors with a crashing script-qwiklabs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Assignments/Fix errors with a crashing script-qwiklabs.pdf -------------------------------------------------------------------------------- /Module 3/Assignments/Fix errors with a crashing script-qwiklabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Assignments/Fix errors with a crashing script-qwiklabs.png -------------------------------------------------------------------------------- /Module 3/Assignments/Script and Data/data.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Assignments/Script and Data/data.bak -------------------------------------------------------------------------------- /Module 3/Assignments/Script and Data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Assignments/Script and Data/data.csv -------------------------------------------------------------------------------- /Module 3/Assignments/Script and Data/infrastructure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Assignments/Script and Data/infrastructure -------------------------------------------------------------------------------- /Module 3/Quiz/Code that Crashes/practice_quiz_module3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Quiz/Code that Crashes/practice_quiz_module3.pdf -------------------------------------------------------------------------------- /Module 3/Quiz/Code that Crashes/practice_quiz_module3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Quiz/Code that Crashes/practice_quiz_module3.png -------------------------------------------------------------------------------- /Module 3/Quiz/Code that Crashes/practice_quiz_module3_afterSubmit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Quiz/Code that Crashes/practice_quiz_module3_afterSubmit.pdf -------------------------------------------------------------------------------- /Module 3/Quiz/Handling Bigger Incidents/practice_quiz_module3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Quiz/Handling Bigger Incidents/practice_quiz_module3.pdf -------------------------------------------------------------------------------- /Module 3/Quiz/Handling Bigger Incidents/practice_quiz_module3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Quiz/Handling Bigger Incidents/practice_quiz_module3.png -------------------------------------------------------------------------------- /Module 3/Quiz/Handling Bigger Incidents/practice_quiz_module3_afterSubmit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Quiz/Handling Bigger Incidents/practice_quiz_module3_afterSubmit.pdf -------------------------------------------------------------------------------- /Module 3/Quiz/Why Programs Crash/practice_quiz_module3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Quiz/Why Programs Crash/practice_quiz_module3.pdf -------------------------------------------------------------------------------- /Module 3/Quiz/Why Programs Crash/practice_quiz_module3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Quiz/Why Programs Crash/practice_quiz_module3.png -------------------------------------------------------------------------------- /Module 3/Quiz/Why Programs Crash/practice_quiz_module3_afterSubmit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Quiz/Why Programs Crash/practice_quiz_module3_afterSubmit.pdf -------------------------------------------------------------------------------- /Module 3/Reading/Code that Crashes/hackernoon_com_threaded-asynchronous-magic-and-how-to-wield-it-bba9ed602c32.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Reading/Code that Crashes/hackernoon_com_threaded-asynchronous-magic-and-how-to-wield-it-bba9ed602c32.pdf -------------------------------------------------------------------------------- /Module 3/Reading/Code that Crashes/realpython_com_python-concurrency_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Reading/Code that Crashes/realpython_com_python-concurrency_.pdf -------------------------------------------------------------------------------- /Module 3/Reading/Code that Crashes/sites_google_com_a_case_edu_hpcc_home_important-notes-for-new-users_debugging-segmentation-faults.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Reading/Code that Crashes/sites_google_com_a_case_edu_hpcc_home_important-notes-for-new-users_debugging-segmentation-faults.pdf -------------------------------------------------------------------------------- /Module 3/Reading/Code that Crashes/stackoverflow_com_questions_33047452_definitive-list-of-common-reasons-for-segmentation-faults.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Reading/Code that Crashes/stackoverflow_com_questions_33047452_definitive-list-of-common-reasons-for-segmentation-faults.pdf -------------------------------------------------------------------------------- /Module 3/Reading/Why Programs Crash/docs_microsoft_com_en-us_sysinternals_downloads_procmon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Reading/Why Programs Crash/docs_microsoft_com_en-us_sysinternals_downloads_procmon.pdf -------------------------------------------------------------------------------- /Module 3/Reading/Why Programs Crash/en_wikipedia_org_wiki_Blue_screen_of_death.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Reading/Why Programs Crash/en_wikipedia_org_wiki_Blue_screen_of_death.pdf -------------------------------------------------------------------------------- /Module 3/Reading/Why Programs Crash/etcnotes_com_posts_system-call_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Reading/Why Programs Crash/etcnotes_com_posts_system-call_.pdf -------------------------------------------------------------------------------- /Module 3/Reading/Why Programs Crash/www_digitalmastersmag_com_magazine_tip-of-the-day-how-to-find-crash-logs-on-windows-10_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Reading/Why Programs Crash/www_digitalmastersmag_com_magazine_tip-of-the-day-how-to-find-crash-logs-on-windows-10_.pdf -------------------------------------------------------------------------------- /Module 3/Reading/Why Programs Crash/www_fosslinux_com_8984_how-to-check-system-logs-on-linux-complete-usage-guide_htm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Reading/Why Programs Crash/www_fosslinux_com_8984_how-to-check-system-logs-on-linux-complete-usage-guide_htm.pdf -------------------------------------------------------------------------------- /Module 3/Reading/Why Programs Crash/www_howtoforge_com_linux-strace-command_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Reading/Why Programs Crash/www_howtoforge_com_linux-strace-command_.pdf -------------------------------------------------------------------------------- /Module 3/Reading/Why Programs Crash/www_howtogeek_com_356942_how-to-view-the-system-log-on-a-mac_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Reading/Why Programs Crash/www_howtogeek_com_356942_how-to-view-the-system-log-on-a-mac_.pdf -------------------------------------------------------------------------------- /Module 3/Reading/Why Programs Crash/www_scientificamerican_com_article_why-do-computers-crash_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/Reading/Why Programs Crash/www_scientificamerican_com_article_why-do-computers-crash_.pdf -------------------------------------------------------------------------------- /Module 3/notesImages/gdb_backtrace_output_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/notesImages/gdb_backtrace_output_image2.png -------------------------------------------------------------------------------- /Module 3/notesImages/gdb_c_core_output_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/notesImages/gdb_c_core_output_image1.png -------------------------------------------------------------------------------- /Module 3/notesImages/gdb_list_output_image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/notesImages/gdb_list_output_image4.png -------------------------------------------------------------------------------- /Module 3/notesImages/gdb_print_argv_output_image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/notesImages/gdb_print_argv_output_image6.png -------------------------------------------------------------------------------- /Module 3/notesImages/gdb_print_output_image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/notesImages/gdb_print_output_image5.png -------------------------------------------------------------------------------- /Module 3/notesImages/gdb_up_output_image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/notesImages/gdb_up_output_image3.png -------------------------------------------------------------------------------- /Module 3/notesImages/netstat_command_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/notesImages/netstat_command_image1.png -------------------------------------------------------------------------------- /Module 3/notesImages/postmortem_sample_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/notesImages/postmortem_sample_image1.png -------------------------------------------------------------------------------- /Module 3/notesImages/postmortem_sample_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/notesImages/postmortem_sample_image2.png -------------------------------------------------------------------------------- /Module 3/notesImages/print_technique_debug_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/notesImages/print_technique_debug_image1.png -------------------------------------------------------------------------------- /Module 3/notes_module_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 3/notes_module_3.md -------------------------------------------------------------------------------- /Module 4/Assignments/Debugging and Solving Software Problems-qwiklabs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Assignments/Debugging and Solving Software Problems-qwiklabs.pdf -------------------------------------------------------------------------------- /Module 4/Assignments/Debugging and Solving Software Problems-qwiklabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Assignments/Debugging and Solving Software Problems-qwiklabs.png -------------------------------------------------------------------------------- /Module 4/Assignments/Script and Data/employees-with-date.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Assignments/Script and Data/employees-with-date.csv -------------------------------------------------------------------------------- /Module 4/Assignments/Script and Data/start_date_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Assignments/Script and Data/start_date_report.py -------------------------------------------------------------------------------- /Module 4/Quiz/Making Our Future Lives Easier/practice_quiz_module4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Quiz/Making Our Future Lives Easier/practice_quiz_module4.pdf -------------------------------------------------------------------------------- /Module 4/Quiz/Making Our Future Lives Easier/practice_quiz_module4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Quiz/Making Our Future Lives Easier/practice_quiz_module4.png -------------------------------------------------------------------------------- /Module 4/Quiz/Making Our Future Lives Easier/practice_quiz_module4_afterSubmit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Quiz/Making Our Future Lives Easier/practice_quiz_module4_afterSubmit.pdf -------------------------------------------------------------------------------- /Module 4/Quiz/Managing Computer Resources/practice_quiz_module4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Quiz/Managing Computer Resources/practice_quiz_module4.pdf -------------------------------------------------------------------------------- /Module 4/Quiz/Managing Computer Resources/practice_quiz_module4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Quiz/Managing Computer Resources/practice_quiz_module4.png -------------------------------------------------------------------------------- /Module 4/Quiz/Managing Computer Resources/practice_quiz_module4_afterSubmit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Quiz/Managing Computer Resources/practice_quiz_module4_afterSubmit.pdf -------------------------------------------------------------------------------- /Module 4/Quiz/Managing Our Time/practice_quiz_module4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Quiz/Managing Our Time/practice_quiz_module4.pdf -------------------------------------------------------------------------------- /Module 4/Quiz/Managing Our Time/practice_quiz_module4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Quiz/Managing Our Time/practice_quiz_module4.png -------------------------------------------------------------------------------- /Module 4/Quiz/Managing Our Time/practice_quiz_module4_afterSubmit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Quiz/Managing Our Time/practice_quiz_module4_afterSubmit.pdf -------------------------------------------------------------------------------- /Module 4/Reading/Making Our Future Lives Easier/blog_turbonomic_com_blog_on-technology_thinking-like-an-architect-understanding-failure-domains.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Reading/Making Our Future Lives Easier/blog_turbonomic_com_blog_on-technology_thinking-like-an-architect-understanding-failure-domains.pdf -------------------------------------------------------------------------------- /Module 4/Reading/Making Our Future Lives Easier/coursera.org-More About Preventing Future Breakage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Reading/Making Our Future Lives Easier/coursera.org-More About Preventing Future Breakage.pdf -------------------------------------------------------------------------------- /Module 4/Reading/Making Our Future Lives Easier/landing_google_com_sre_sre-book_chapters_effective-troubleshooting_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Reading/Making Our Future Lives Easier/landing_google_com_sre_sre-book_chapters_effective-troubleshooting_.pdf -------------------------------------------------------------------------------- /Module 4/Reading/Making Our Future Lives Easier/simpleprogrammer_com_understanding_the_problem_domain_is_the.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Reading/Making Our Future Lives Easier/simpleprogrammer_com_understanding_the_problem_domain_is_the.pdf -------------------------------------------------------------------------------- /Module 4/Reading/Managing Computer Resources/www_linuxjournal_com_content_troubleshooting-network-problems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Reading/Managing Computer Resources/www_linuxjournal_com_content_troubleshooting-network-problems.pdf -------------------------------------------------------------------------------- /Module 4/Reading/Managing Computer Resources/www_pluralsight_com_blog_tutorials_how-to-profile-memory-usage-in-python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Reading/Managing Computer Resources/www_pluralsight_com_blog_tutorials_how-to-profile-memory-usage-in-python.pdf -------------------------------------------------------------------------------- /Module 4/Reading/Managing Our Time/blog_rescuetime_com_how-to-prioritize_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/Reading/Managing Our Time/blog_rescuetime_com_how-to-prioritize_.pdf -------------------------------------------------------------------------------- /Module 4/notesImages/decorator_for_mem_profiling_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/notesImages/decorator_for_mem_profiling_image1.png -------------------------------------------------------------------------------- /Module 4/notesImages/eisenhower_decision_matrix_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/notesImages/eisenhower_decision_matrix_image1.png -------------------------------------------------------------------------------- /Module 4/notesImages/mem_profiler_output_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/notesImages/mem_profiler_output_image1.png -------------------------------------------------------------------------------- /Module 4/notesImages/memory_usage_top_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/notesImages/memory_usage_top_image1.png -------------------------------------------------------------------------------- /Module 4/notes_module_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/Module 4/notes_module_4.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/README.md -------------------------------------------------------------------------------- /google_logo-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambhipiyuushh/Troubleshooting-and-Debugging-Techniques-Google/HEAD/google_logo-preview.jpg --------------------------------------------------------------------------------