frendguofrendguo.hashnode.dev·Dec 4, 2024记一次无法关闭的弹窗背景 最近突然想起来梳理了一遍机器上安装的应用,于是把一个叫【Gigabyte Control Center】的应用给卸载了。卸载了之后也就没管了,反正也用不着。 就在今天,我重启了电脑后,右下角出来一个弹窗!如下图: 这不就是我卸载的那个应用吗?咋出现了呢?是没卸载干净吗? 分析 首先,让我们上工具,来看看这个弹窗是谁! 找凶手(上) 打开【Process Explorer】,将目标环拖到窗口上,便找到了这个应用! 没想到,不老实呀,居然还藏了一个服务。 简单,把服务关掉,服务移除,再删除...Process Explorer
Ronald Bartelshubandspoke.amastelek.com·Nov 16, 2024🫥Why Fusion’s SD-WAN Outshines Competitors with Its Comprehensive Debug Mode🦟In the world of networking, effective troubleshooting can make or break a business’s connectivity strategy. When issues arise, having the right tools to identify and resolve the root cause is critical. Fusion’s SD-WAN sets itself apart from competito...3 likesdebug
Asigri Shamsu-Deen Al-Heyriamdeen.hashnode.dev·Nov 4, 2024Tracing Appwrite’s Authentication FeatureA debugger is a tool that helps you see if your code is functioning as intended. It allows you to pause and inspect your code during execution. Think of it as freezing time to examine what's happening inside your program. Xdebug is one such debugger ...1 likedebugging
Victor Uzoagbavictoru.hashnode.dev·Sep 8, 2024Employing Fuzzing Techniques for Bug Discovery in an Automated WayIntroduction Today, software systems have to stay largely exposed to various types of security vulnerabilities. The ability of developers to identify and patch a vulnerability before this may be exploited by malicious attackers is crucial. Fuzzing is...debugging
Vivekheyvivek.com·Aug 2, 2024Debugging Techniques for JavaScript Developers: Finding and Fixing Bugs Efficiently 🔍🛠️As a JavaScript developer, you've likely encountered bugs that have made you pull your hair out. 🥴 Bugs are inevitable, but with the right techniques, you can find and fix them efficiently, saving time and frustration. This guide covers some of the ...12 likes·30 readsdebugging
Tatiana Limatatilima.hashnode.dev·Jul 25, 2024Você sabe o que é Compilação Condicinal?Compilação Condicional é uma técnica utilizada em programação para incluir ou excluir partes do código durante o processo de compilação, com base em condições especificadas pelo programador. Isso permite que você controle quais partes do código são c...compilação condicional
Gunjan Aroragunhack.hashnode.dev·Jul 22, 2024Navigating the AI Revolution: How Artificial Intelligence is Shaping Our FutureArtificial Intelligence (AI) has transcended the realms of science fiction and become a pivotal force in shaping the future. From self-driving cars to advanced healthcare diagnostics, AI is revolutionizing various industries and impacting our daily l...JavaScript
Gunjan Aroragunhack.hashnode.dev·Jul 21, 2024Debugging Techniques in JavaScript: Common Bugs and How to Resolve ThemIntroduction Debugging is an essential skill for every JavaScript developer. Encountering bugs is inevitable, but knowing how to effectively identify and resolve them can save time and reduce frustration. This blog explores common bugs and essential ...JavaScript
Asesh Basuabasu.hashnode.dev·Jul 6, 2024Understanding the Java Virtual Machine: A Step-by-Step Approachtl;dr The Java Virtual Machine (JVM) enables Java programs to run on any platform without modification, thanks to its ability to translate Java source code into platform-independent bytecode. The JVM emulates a virtual CPU in memory, ensuring that th...Programming Blogs
Asesh Basuabasu.hashnode.dev·Jul 6, 2024Mastering Code Debugging: The Power of Dry Runs and Trace Tablestl;dr: Dry runs and trace tables are manual debugging techniques that help programmers verify the logical flow of their code by tracking variable values step-by-step. Dry runs are informal and can be used at any development stage to find logic errors...DryRun