SShortSingh.
Back to feed

Developer Finds 99% of Website Traffic Comes from Bots

0
·1 views

A website owner discovered that nearly all of their web traffic — approximately 99% — was being generated by automated bots rather than real human visitors. The finding highlights a growing challenge for small and independent website operators who rely on traffic metrics to gauge genuine audience interest. Bot traffic can distort analytics, inflate bandwidth costs, and undermine advertising or monetization efforts. The original post sparked discussion on Hacker News, where other developers shared similar experiences and debated ways to detect and filter non-human traffic.

Read the full story at Hacker News

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Developer Finds OpenTelemetry Spans Logged Correctly But Captured Zero Real Timing

A developer documented their first hands-on experience with OpenTelemetry, adding instrumentation to a Python-based blog pre-publication checker. All 15 spans appeared correctly in the Jaeger UI with proper names and attributes, but the child spans collectively totalled only 0.085 ms while the parent span recorded over 1,000 ms. The discrepancy occurred because the spans were wrapping result-reading code rather than the actual execution of each check. After rewriting the instrumentation to wrap the real work, the 15 child spans correctly summed to 1,183 ms. The author shared the experience as a practical record of common first-timer mistakes with distributed tracing tools.

0
ProgrammingDEV Community ·

Why Experienced Engineers Choose Data Structures Last, Not First

A software engineering guide argues that selecting the right data structure should always begin with understanding the business problem, not the implementation. Experienced engineers first identify what behavior a system must support before deciding on tools like HashMaps, Queues, or Graphs. The article maps common business questions to their naturally fitting data structures, such as using a Heap when prioritization is needed or a Trie when partial-input search is required. It warns that jumping straight to implementation choices is a common beginner mistake that leads to poorly designed components. The core takeaway is that data structures are not independent decisions but logical consequences of clearly understanding business behavior.

0
ProgrammingHacker News ·

Massive Iceberg Collapses and Flips in Greenland's Ilulissat Fjord

A large iceberg was filmed collapsing and overturning near Ilulissat, Greenland, on July 25, 2026. The dramatic event was captured on video and shared online, drawing attention on platforms including Hacker News. Ilulissat is located along Greenland's west coast and is known for its prolific glacier, the Sermeq Kujalleq, which regularly calves large icebergs. Such iceberg capsizing events occur when melting causes a shift in the ice mass's center of gravity, making them unstable. The footage serves as a striking visual reminder of ongoing glacial activity in the Arctic region.

0
ProgrammingHacker News ·

Opinion: Successful Software Development Is Fundamentally a People Problem

A blog post published on Letters to a New Developer argues that software engineering is ultimately about human collaboration rather than technical code. The piece, aimed at early-career developers, emphasizes that understanding people — teammates, users, and stakeholders — matters as much as technical skill. The article gained modest traction on Hacker News, accumulating 12 points and one comment. The core message encourages new developers to invest in communication and empathy alongside their coding abilities.