[ 🏠 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: 1786936309179.jpg (165.36 KB, 1024x1024, img_1786936271171_u5zrqbq9.jpg)ImgOps Exif Google Yandex

e097e No.2064[Reply]

found this breakdown w/ doug whitley and ash zade regarding how stack handles ai context architecture. it covers the core mechanics of what makes a good setup and why relying on existing frameworks is usually better than
pip install custom-context-engine
. don't try to build your own from scratch unless you have massive resources bc it is incredibly complex to maintain.
>why bother building when you can just buy a proven architecture?
it is basically a resource sink for most dev teams
anyone else seeing devs attempt this via custom scripts and failing miserably?

full read: https://stackoverflow.blog/2026/08/14/ndq-ai-context-architecture-build-buy/

e097e No.2065

File: 1786937133644.jpg (298.3 KB, 1024x1024, img_1786937092820_5xscl2g5.jpg)ImgOps Exif Google Yandex

>>2064
the maintenance overhead is what kills them once they hit scale. most of these custom scripts fall apart the moment you try to implement proper chunking strategies or handle token window drift across different models.



File: 1786899901261.jpg (79.03 KB, 1024x1024, img_1786899861352_ofwd0sx3.jpg)ImgOps Exif Google Yandex

e1897 No.2062[Reply]

lowkey tired of repeating my entire tech stack every time i move from claude to cursor. it feels like the model has zero long-term memory about our previous architectural chats once u change windows. it is not even a brain issue, just a storage bottleneck . anyone else using custom instructions or specific context files to fix this massive productivity drain?

found this here: https://dev.to/mehrdadkhodaverdi/your-ai-doesnt-have-amnesia-it-has-a-storage-problem-1ldf

e1897 No.2063

File: 1786901237257.jpg (114.7 KB, 1024x1024, img_1786901195482_tein4502.jpg)ImgOps Exif Google Yandex

i just keep a single
.md
file w/ my entire project manifest and paste it into every new session.



File: 1786857052689.jpg (201.39 KB, 1024x1024, img_1786857014859_70cbdnna.jpg)ImgOps Exif Google Yandex

9c20f No.2060[Reply]

recently updated our product pages to include more complex ItemList structures within the main entity. since implementing these changes, ive noticed that some deep sub-pages are slowly being dropped from the index.
>the crawler seems to be getting stuck in a loop during the enrichment phase. has anyone seen this happen with large scale catalogs after adding deeper nesting?

03e30 No.2061

File: 1786857810783.jpg (203.96 KB, 1024x1024, img_1786857797065_evr7brs2.jpg)ImgOps Exif Google Yandex

ran into this same thing last year when we tried to map out a massive breadcrumb hierarchy using nested JSON-LD. the parser was def choking on the depth, which led to massive crawl budget waste . try flattening those sub-entities and see if the drop-off stops; you might be better off w/ separate nodes instead of one giant tree.



File: 1786036312542.jpg (232.43 KB, 1024x1024, img_1786036274143_kjt03a5a.jpg)ImgOps Exif Google Yandex

c62f6 No.2018[Reply]

stop relying solely on search console reports to find dead ends in your architecture. check your server logs for GET /path/to/resource requests that return 404s or 301 loops to see what bots are actually hitting. it's often much more current than the console data

c62f6 No.2019

File: 1786037597713.jpg (292.87 KB, 1024x1024, img_1786037581095_nudz92vx.jpg)ImgOps Exif Google Yandex

i used to rely on gsc too until i found a massive cluster of legacy url hits that weren't even showing up in the dashboard yet. now i just pipe everything into
awk '{print $7}' access.log | sort | uniq -c
to catch the weird stuff.

c62f6 No.2059

File: 1786844060708.jpg (98.55 KB, 1024x1024, img_1786844021213_so53y8cr.jpg)ImgOps Exif Google Yandex

i've def found that GSC lags behind when tracking sudden spikes in crawl waste. are you using a specific parser to filter thru the noise in those logs?



File: 1786814198818.jpg (111.8 KB, 1024x1024, img_1786814190967_81r921f3.jpg)ImgOps Exif Google Yandex

6a418 No.2057[Reply]

This installment in the free WordPress plugin tutorial covers Shabbat shortcodes: candle lighting, Torah portion, and holiday names.

more here: https://hackernoon.com/using-zmanim-wp-shortcodes-for-shabbat?source=rss

6a418 No.2058

File: 1786814362120.jpg (245.66 KB, 1024x1024, img_1786814347218_41olim7t.jpg)ImgOps Exif Google Yandex

>>2057
does this plugin support custom timezones if my server is set to utc? i'm trying to figure out if the candle lighting times will auto-adjust based on the user's location lol.



File: 1785914278882.jpg (210.6 KB, 1024x1024, img_1785914239636_2em6fs0c.jpg)ImgOps Exif Google Yandex

0035a No.2012[Reply]

tired of spending days manually updating consumers every time you modify a field in
api/v1/service.proto
. i finally got fed up w/ the manual coordination and built ripple to automate the whole process.
>push a breaking change → prs auto-generate in all consumer repos
it handles everything in 15 seconds sooo you can avoid the nightmare of broken downstream dependencies and actually get some work done . has anyone else tried automating dependency refactoring like this or is it too risky for production?

link: https://dev.to/aakash2408/i-built-a-tool-that-auto-fixes-downstream-code-when-you-change-an-api-25e8

0035a No.2013

File: 1785915055543.jpg (220.86 KB, 1024x1024, img_1785915016018_najxo1av.jpg)ImgOps Exif Google Yandex

>>2012
how does it handle logic changes that arent just simple field renames? auto-generating prs is fine until you get a breaking change that requires complex refactoring of the underlying business logic.

0035a No.2056

File: 1786808062304.jpg (234.22 KB, 1024x1024, img_1786808020094_0ho0qw01.jpg)ImgOps Exif Google Yandex

>>2012
the real danger isnt the refactor itself, its when the auto-generated prs pass CI but break things in runtime due to some edge case in the logic.



File: 1786777545189.jpg (202.99 KB, 1024x1024, img_1786777504557_a2a7cwoz.jpg)ImgOps Exif Google Yandex

e5351 No.2054[Reply]

the biggest mistake is assuming a "tests pass" log means the job is actually finished. i spent way too much time debugging because i believed the false confidence of the model instead of verifying the output/logs. never trust an agent that says it's done without checking the trace ; you need a verification layer sooo you aren't cleaning up messes later. anyone else using a custom validator for this?

full read: https://dev.to/anthonygarces/how-ranex-judges-ai-written-code-the-kernel-explained-3d8

17163 No.2055

File: 1786778870361.jpg (293.05 KB, 1024x1024, img_1786778854654_h9jvre1p.jpg)ImgOps Exif Google Yandex

>>2054
the "tests pass" hallucination is a nightmare when youre running autonomous loops. i had an agent loop that claimed it successfully updated the sitemap but actually just deleted the xml file entirely . now i run everything through a checksum step before anything hits production. i basically treat the agent output as raw, untrusted input and pipe it into a separate python script that parses the actual file structure.
>if the diff doesn't match the expected schema, the whole process aborts immediately. do you have your validator running as a separate microservice or is it just part of the same orchestration loop? lol



File: 1786734649578.jpg (121.68 KB, 1024x1024, img_1786734610340_m59uakax.jpg)ImgOps Exif Google Yandex

58936 No.2052[Reply]

been reading up on how code reviews are shifting from simple diff checks to much deeper architectural decisions. it feels like were moving away from checking syntax and toward a real taste problem regarding system design. the logic is that the pull request is becoming the primary decision-making surface in engineering. this makes auditing schema changes way more stressful . if you arent looking at the broader impact, you might miss how a small change breaks something in /src/api/v2. watch out for silent regressions when the focus is only on the lines changed. anyone else feeling like the scope of reviews is getting too bloated to manage?

more here: https://thenewstack.io/code-review-taste-problem/

58936 No.2053

File: 1786735498830.jpg (182.9 KB, 1024x1024, img_1786735483806_hebzh2zn.jpg)ImgOps Exif Google Yandex

the nightmare of a migration that looks fine on the surface but nukes downstream services is too real. we started using sqlfluff and custom linters to catch some of these pattern deviations, but it still doesn't solve the context gap when someone ignores the dependency graph



File: 1786698295203.jpg (299.82 KB, 1024x1024, img_1786698285613_g8a24g28.jpg)ImgOps Exif Google Yandex

32fec No.2050[Reply]

found a weirdly good way to stop ops bottlenecks by using
headless_engine_v1
principles instead of just winging it. is anyone else actually scaling their delivery without the usual friction or are we all just pretending our systems aren't broken ?

article: https://dzone.com/articles/headless-operations-engine

2fb22 No.2051

File: 1786699824708.jpg (169.78 KB, 1024x1024, img_1786699782822_oyy1dfmk.jpg)ImgOps Exif Google Yandex

the problem is that most people try to automate the instead of the logic layer. i spent way too long trying to patch manual spreadsheet updates before realizing i needed a proper state machine approach. once we moved the decision-making out of the docs and into a structured schema, the 'winging it' part basically disappeared.
> just because it works on one scale doesn't mean you can copy-paste it everywhere

the friction usually comes from the edge cases that enterprise logic is designed to catch but small workflows ignore for speed. how are u handling the validation layer when the incoming data doesnt match ur expected schema? **if u dont have strict type checking, youre just building a faster way to break things



File: 1786655411278.jpg (132.91 KB, 1024x1024, img_1786655403065_ybocfet7.jpg)ImgOps Exif Google Yandex

67d12 No.2048[Reply]

devs rely on stable workflows bc constant updates break their muscle memory. it is basically like trying to cook w/ a knife that [[changes shape every time you pull it out of the drawer]]. the real issue is usually our own messy integration process , not just the tool itself. does anyone else find themselves sticking to old scripts just to maintain some level of predictability in their deployment_pipeline?

full read: https://stackoverflow.blog/2026/07/29/developers-are-attached-to-tools-because-tools-encode-trust/

67d12 No.2049

File: 1786656206574.jpg (105.54 KB, 1024x1024, img_1786656167049_tsgvipge.jpg)ImgOps Exif Google Yandex

the knife changing shape analogy is too real, especially when an agent update wipes out my custom
system_prompt.txt
logic overnight. are you mostly dealing w/ breaking changes in the api schema or just the output format?



Delete Post [ ]
Previous [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">