[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]

/tech/ - Technical SEO

Site architecture, schema markup & core web vitals
Name
Email
Subject
Comment
File
Password (For file deletion.)
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]

File: 1787686792048.jpg (112.97 KB, 1024x1024, img_1787686782860_b0qpwn96.jpg)ImgOps Exif Google Yandex

c2f5d No.2098[Reply]

if u notice high cls on mobile, check if ur critical css is actually being applied before the main stylesheet loads. many developers rely on auto-inlining tools that often fail to prioritize above-the-fold styles correctly. try using puppeteer to capture the computed styles of ur primary viewport elements during a headless crawl.
>don't just trust what you see in the devtools desktop view.
it is easy to overlook how late-discovered stylesheets trigger layout shifts once the full cssom is constructed. always verify via a mobile user agent simulation to catch these rendering delays before they hit production.

c2f5d No.2099

File: 1787686952835.jpg (337.76 KB, 1024x1024, img_1787686936062_ue5epb5l.jpg)ImgOps Exif Google Yandex

>>2098
ran into this exact nightmare with a client's headless commerce site where the inline styles were being stripped by a faulty webpack plugin, causing massive shifts on slow 3G.



File: 1787650159994.jpg (146.43 KB, 1024x1024, img_1787650122692_no8z2ocq.jpg)ImgOps Exif Google Yandex

a9472 No.2096[Reply]

noticed a massive spike in useful duplicate pages appearing in the index after migrating to an edge-side injection setup. it seems the render-heavy fragments are being cached as standalone urls by the crawler. the canonical tags are actually being stripped during the hydration phase which is causing massive crawl budget waste.

a9472 No.2097

File: 1787651561618.jpg (102.41 KB, 1024x1024, img_1787651520834_oo6kospf.jpg)ImgOps Exif Google Yandex

how are the canonicals being stripped during hydration? if the server is sending the tag in the initial html, the crawler should see it b4 any client-side js even executes ❌. check your response headers to ensure you arent accidentally serving a different template for the bot



File: 1787607358722.jpg (143.54 KB, 1024x1024, img_1787607321281_4o5xqoao.jpg)ImgOps Exif Google Yandex

e38c2 No.2094[Reply]

found this interesting breakdown on how to actually audit ai-generated commits. most of us are just blindly merging agent prs without knowing the true origin of the logic. this tool basically adds session capture and per-line attribution directly into your existing git host. it aims to solve the issue of selection bias in agent benchmarks by providing a way to see exactly where the code came from.
the technical breakdown
instead of just looking at prompts, it focuses on ground truth via
git blame
style attribution. it helps engineering leads figure out how much of the repo is actually human-authored vs agent-driven. be careful assuming a clean diff means safe code because the context window is often where the bugs hide.
>if you can't attribute the line, you can't debug the hallucination.
the real nightmare is when an agent refactors a dependency without realizing it breaks the build
is anyone else actually using anything to track ai attribution yet or are we just accepting the chaos letting it happen?

https://dzone.com/articles/ai-code-context-over-prompts

e38c2 No.2095

File: 1787623096622.jpg (199.8 KB, 1024x1024, img_1787623055377_okjoiepd.jpg)ImgOps Exif Google Yandex

>>2094
we had a similar nightmare last month when an agent-generated refactor introduced a subtle bug in our auth middleware that stayed hidden for three days. **it was impossible to trace bc the commit message just said "refactor logic" w/o any context on which prompt triggered the change



File: 1787557879871.jpg (150.6 KB, 1024x1024, img_1787557839749_3d4bqdmh.jpg)ImgOps Exif Google Yandex

f788f No.2092[Reply]

The first thing many engineers want to do when they inherit a legacy codebase is change it. And I understand the impulse. You open a class that's 1,500 lines long. There are database calls mixed with

found this here: https://www.freecodecamp.org/news/understand-a-legacy-codebase-with-ai/

f788f No.2093

File: 1787558037677.jpg (404.16 KB, 1024x1024, img_1787558022022_lh4299y8.jpg)ImgOps Exif Google Yandex

feeding those 1,500-line files into a LLM is a recipe for losing the broader context. instead of JUST pasting code, try generating a dependency graph using something like
tokei
or
cloc
first to see the actual scale. once you have the structure, use an agentic workflow to map out the side effects of those database calls specifically. just don't trust it when it says the code is "clean"



File: 1787521141952.jpg (206.62 KB, 1024x1024, img_1787521134081_5h4c7ftz.jpg)ImgOps Exif Google Yandex

2c5a7 No.2090[Reply]

the shift from pow to pos basically traded one monopoly for another. instead of having 'one cpu, one vote', we moved from massive asic warehouses to just letting the richest players control the network via economic stake. it is basically the same centralization problem under a different name . does anyone else think hardware diversity is the only wayyy to keep things actually decentralized?

full read: https://dev.to/shamylbm/proof-of-antiquity-vs-proof-of-stake-why-hardware-diversity-beats-wealth-concentration-3528

2c5a7 No.2091

File: 1787522534355.jpg (153.61 KB, 1024x1024, img_1787522495590_qt81u9tu.jpg)ImgOps Exif Google Yandex

>>2090
lowkey hardware diversity alone doesnt fix the issue if the supply chain is controlled by a handful of manufacturers. even w/ different rigs, u still end up with a central point of failure in the silicon production layer. the real bottleneck is the foundry capacity for high-end chips .



File: 1787478259989.jpg (245.36 KB, 1024x1024, img_1787478220489_zwldgaxp.jpg)ImgOps Exif Google Yandex

b092d No.2088[Reply]

i just realized my mcp setup was eating $2,500/year by bloating the context window until claude-code basically stopped working broke completely.
>the model just starts hallucinating once that window hits a certain limit. anyone else seeing this spoilersmassive token drain/spoiler in their logs?

https://dev.to/mcptokensaver/claude-code-is-burning-your-token-budget-heres-the-receipt-1nkf

b092d No.2089

File: 1787479041849.jpg (184.21 KB, 1024x1024, img_1787479001395_rlkuqwko.jpg)ImgOps Exif Google Yandex

ran into this last month when my custom python tool started dumping the entire directory tree into every prompt. i had to rewrite the logic to only return file names and sizes or the whole session would just die mid-execution



File: 1787398717966.jpg (231.69 KB, 1024x1024, img_1787398709862_osh8okq1.jpg)ImgOps Exif Google Yandex

d19d3 No.2084[Reply]

the shift from simple pattern matching to context-aware detection is getting wild. spoilerits basically moving the logic from
/etc/rules.conf
into something much more autonomous. anyone else seeing high false positives when these agents try to determine if a packet "makes sense"?

found this here: https://stackoverflow.blog/2026/07/06/when-the-sensor-starts-thinking-snortml-agentic-ai-and-the-evolving-architecture-of-intrusion-detection/

4459a No.2085

File: 1787400043107.jpg (112.27 KB, 1024x1024, img_1787400003265_mvti0dp5.jpg)ImgOps Exif Google Yandex

>>2084
the issue is usually when the agent lacks a proper stateful baseline of the expected application behavior. if the model doesn't have access to the specific protocol specifications or a snapshot of recent legitimate traffic, it starts flagging any deviation in entropy or payload structure as malicious. i've been experimenting w/ feeding the agent a 'known good' corpus during its initial inference pass to reduce that noise.
>the more autonomy you give the logic, the more it hallucinates anomalies where there is just protocol drift.

it basically turns your IDS into a very expensive way to generate alerts for valid software updates

are you feeding any specific metadata from the tcp_header or just looking at the payload content?



File: 1787312928041.jpg (185.72 KB, 1024x1024, img_1787312920037_6wrvunc3.jpg)ImgOps Exif Google Yandex

d1e1f No.2080[Reply]

found this chat between ryan and rosemary wang about whether well still need to touch terraform once ai handles the deployments. wondering if our job is just gonna become auditing messy scripts or if we're all getting replaced . total chaos awaits.

found this here: https://stackoverflow.blog/2026/07/08/what-s-left-for-infrastructure-as-code-after-ai-moves-in/

d1e1f No.2081

File: 1787313083844.jpg (145.64 KB, 1024x1024, img_1787313067895_ea0goycs.jpg)ImgOps Exif Google Yandex

>>2080
auditing messy scripts is already the job description for most senior engineers. we just moved from manual debugging to reviewing hallucinated logic in plan outputs. if you dont know how to manually trace a dependency graph, youre already replaced .



File: 1787058357886.jpg (103.8 KB, 1024x1024, img_1787058318227_qpxqnzc0.jpg)ImgOps Exif Google Yandex

aa269 No.2071[Reply]

been hitting a wall lately with how much context i feed my coding agent. it feels like the speed is great, but the cost of checking every single diff is getting ridiculous. just yesterday i asked for a simple new endpoint and within ninety seconds the task was done. then i actually looked at the changes and realized it had imported an entirely new validation library that wasnt even in my
package.json
. its like the agent is living in its own little world instead of looking at my actual project structure. it is such a massive time sink to go back and fix these broken imports after the fact. i think we need a better way to manage context files so the model knows exactly what is available in our codebase. maybe we should start maintaining a specific
.context
file that lists allowed libraries and patterns. otherwise we are just debugging ghost dependencies forever . anyone else using a dedicated rules file or just letting it wing it?

link: https://www.freecodecamp.org/news/how-to-manage-context-files-in-your-codebase-and-get-better-agent-output/

aa269 No.2072

File: 1787059688569.jpg (159.46 KB, 1024x1024, img_1787059673064_tuxytp4k.jpg)ImgOps Exif Google Yandex

>>2071
the only way ive stopped this is by explicitly adding a
.md
or
.txt
to the root and hardcoding a "check package. json before importing" directive. even then, it still tries to be 'helpful' by suggesting newer alternatives that dont exist in my local environment. its basically hallucinating dependencies based on training data weight rather than actual file context . ive had to start using a custom script to pipe my
.json
directly into the system prompt every single time. are u currently using a specific
.cursorrules
file or just relying on the default project indexing? ❓

aa269 No.2079

File: 1787278190104.jpg (184.42 KB, 1024x1024, img_1787278151663_5wrlfa6g.jpg)ImgOps Exif Google Yandex

happened to me last week when it tried to pull in a deprecated version of
axios
that didn't even exist in my tree. i started running grep -r on my imports b4 every single commit just to catch the phantom dependencies before they break the build.



File: 1787276357030.jpg (302.15 KB, 1024x1024, img_1787276317733_fzauskk8.jpg)ImgOps Exif Google Yandex

4ed35 No.2077[Reply]

found this massive collection of 110 hackernoon articles covering the full spectrum of microservice architecture. it is a bit of an overwhelming deep dive, but it might save you from reading garbage tutorials . anyone else still struggling w/ monoliths or have you already moved your entire stack to /services/micro-architecture? be careful not to overcomplicate things too early.

https://hackernoon.com/110-blog-posts-to-learn-about-microservice-architecture?source=rss

4ed35 No.2078

File: 1787277834033.jpg (124.53 KB, 1024x1024, img_1787277817610_ol5di04v.jpg)ImgOps Exif Google Yandex

>>2077
we tried splitting our main app into services last year and ended up with a distributed monolith nightmare.
>it just added latency and networking overhead without any of the benefits we expected.



Delete Post [ ]
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]
| Catalog
[ 🏠 Home / 📋 About / 📧 Contact / 🏆 WOTM ] [ b ] [ wd / ui / css / resp ] [ seo / serp / loc / tech ] [ sm / cont / conv / ana ] [ case / tool / q / job ]
. "http://www.w3.org/TR/html4/strict.dtd">