SShortSingh.
Back to feed

GitHub README links are all nofollow and pass no SEO value, audit confirms

0
·2 views

A developer testing backlink value for a newly launched domain found that every link GitHub renders to external sites carries a rel="nofollow" attribute, including README files, About fields, issues, wikis, and gists. The finding was verified using curl and Perl scripts across multiple repositories, including a large public project, returning zero dofollow links in each case. GitHub applies nofollow universally through its HTML sanitiser with no repository-level setting to override it. By contrast, a self-hosted GitHub Pages subdomain was found to serve outbound links without nofollow, making it a potential alternative for developers seeking crawlable backlinks. The author notes that nofollow links still hold indirect value for URL discovery and referral traffic, particularly for new domains trying to get indexed.

Read the full story at DEV Community

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 ·

AI Is Flooding Codebases With Code No One Has Time to Read

The rise of AI-assisted development has dramatically lowered the cost of software engineering, enabling individual developers to generate 8–10 substantial merge requests per day by running multiple AI agents in parallel. This surge in code output is fundamentally changing daily workflows, with engineers spending less time writing code in an IDE and more time directing AI across several concurrent problem-solving threads. The sheer volume of code being produced means developers can no longer realistically read all of it, a shift the author describes as an unavoidable consequence of mass parallelisation. Traditional software development lifecycle stages — such as code review, deployment, and debugging — were designed around human-scale output and are struggling to keep pace. Some in the industry are already coining the term 'Agentic Development Lifecycle' to describe this new reality, though the deeper challenge remains adapting processes and oversight to match AI-driven productivity.

0
ProgrammingDEV Community ·

Developer Builds Custom Wedding Website Builder After Frustrations With Existing Platforms

A full-stack developer created WedPlanner, a dedicated wedding website builder, after his cousin's website on The Knot was flagged for suspicious activity just three weeks before her wedding, leaving 200 guests without venue directions. Before writing any code, he spent two weeks auditing major platforms including The Knot, Zola, Squarespace, Wix, and WithJoy. He found that most platforms prioritized their own commercial interests — such as vendor marketplaces and registries — over giving couples genuine ownership and control of their sites. Common shortcomings across platforms included template lock-in, no custom code access, limited analytics, and sites that expired unless users paid for premium plans. After six months of development and use across dozens of real weddings, the developer says the experience validated his decision to build an independent solution from scratch.

0
ProgrammingDEV Community ·

TRON Processed $2.1 Trillion in USDT Transfers in Q2 2026, Reshaping Developer Priorities

TRON handled $2.1 trillion in USDT transfers during Q2 2026, with circulating USDT on the network reaching $87.9 billion, surpassing Ethereum, according to Messari data. USDT on TRON operates under the TRC-20 standard, meaning transfers are smart contract transactions that require developers to monitor token contract events rather than simple address balances. The network uses a Bandwidth and Energy resource model, where insufficient resources result in TRX being burned — meaning users holding USDT may still need TRX to send it, a complexity payment providers must actively manage. Energy costs also vary depending on whether a recipient address already holds USDT, making real-world testing and fee estimation more involved than basic wallet-to-wallet trials. With USDT accounting for 98.5% of TRON's stablecoin supply at the quarter's end, developers integrating stablecoin payments must weigh network infrastructure, resource management, and contract monitoring — not just the token itself.

0
ProgrammingDEV Community ·

Monotonic Stack Explained: Solving Array Problems in Linear Time

A monotonic stack is a data structure that maintains elements in strictly increasing or decreasing order, enabling efficient solutions to common array problems. Classic challenges like 'Next Greater Element,' 'Largest Rectangle in a Histogram,' and 'Trapping Rain Water' can be solved in O(n) time using this approach, compared to the O(n²) complexity of brute-force nested loops. The technique works by pushing indices onto the stack during a single left-to-right pass and popping them when a new element breaks the monotonic order, instantly resolving pending queries. Since each index is pushed and popped at most once, the total work remains linear regardless of input size. The pattern is language-agnostic and widely applicable across interview-style array problems that require 'look-ahead' reasoning.