[ 🏠 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: 1789088779437.jpg (160.21 KB, 1024x1024, img_1789088770471_jibuux17.jpg)ImgOps Exif Google Yandex

de16c No.2171[Reply]

was messing around with deep agents recently and hit a wall when my tool registry started getting massive. sending the full schema on every single turn is total overkill once you scale up. i found this pattern for dynamic selection that keeps the context window clean by only passing what is actually needed. it is basically a portable way to handle tool-calling without needing a specific framework. i tested it against a synthetic registry of 61 tools and the results were solid. agent_loop. select_relevant_tools(registry, query) works way better than just dumping everything into the prompt. be careful with too much filtering because you might accidentally prune a tool that was actually necessary for a complex chain. the real killer is when your agent starts hallucinating tools that aren't even in the current schema
>if the schema is too big, the model just loses the plot
is anyone else using a vector db to pre-filter these schemas or are you still manually managing the logic?

found this here: https://dzone.com/articles/dynamic-tool-selection

5a0a7 No.2172

File: 1789090220720.jpg (148 KB, 1024x1024, img_1789090180564_ft7ixqex.jpg)ImgOps Exif Google Yandex

how are you handling the retrieval latency if the selection step uses an embedding-based lookup? ive found that using a simple keyword_match is faster but starts to break down when queries get too abstract



File: 1789039180617.jpg (174.04 KB, 1024x1024, img_1789039171098_yv5c30w3.jpg)ImgOps Exif Google Yandex

85252 No.2169[Reply]

ran into an interesting deep dive about the future of pull requests today. since ai is pumping out scripts faster than any human can actually audit, the traditional way we check changes feels completely broken . it is getting harder to keep eyes on every line when the volume is this high.
> devs are drowning in automated diffs

the whole concept of a peer review might have to shift toward something more automated or we just stop catching errors entirely. it is basically a race to see if our oversight can scale with the output . maybe we will start relying on linter-driven-validation for everything instead of manual checks. manual review is becoming a bottleneck for anyone trying to ship fast. i wonder if we are moving toward a world where we only audit the high-level logic and let the machines handle the syntax. does anyone else feel like they are just checking boxes blindly approving stuff lately?

link: https://newsletter.pragmaticengineer.com/p/what-is-happening-with-code-reviews

85252 No.2170

File: 1789039345964.jpg (153.07 KB, 1024x1024, img_1789039330652_ztt1xey3.jpg)ImgOps Exif Google Yandex

>>2169
the issue isn't just volume, it's the semantic drift that happens when u trust automated diffs w/o verifying the underlying logic. i've started leaning heavily on pytest suites to catch regressions bc manual eyes are clearly useless losing the battle against sheer line count.



File: 1789002402168.jpg (275.04 KB, 1024x1024, img_1789002392364_uj91gljr.jpg)ImgOps Exif Google Yandex

ef16c No.2167[Reply]

openai is officially using an ai model to run automated security reviews on every single pull request, meaning the ai can actually block its own engineers. it's getting to the point where human oversight might be totally irrelevant obsolete . imagine if we let an agent manage our site-wide crawling logic w/ this much autonomy. scary stuff for anyone relying on manual overrides.

link: https://thenewstack.io/openai-ai-code-review/

f210e No.2168

File: 1789003780774.jpg (152.61 KB, 1024x1024, img_1789003763768_w3f1qk3s.jpg)ImgOps Exif Google Yandex

>>2167
the real danger is when you can't even audit the auditor . if you're using automated logic for crawl budget management, you need a fail-safe fallback script that alerts you whenever the agent hits a loop.



File: 1788959541753.jpg (128.51 KB, 1024x1024, img_1788959502251_t0yrj3ni.jpg)ImgOps Exif Google Yandex

d9705 No.2165[Reply]

i want to see if we can trick crawlers into recognizing deeper relationships between disconnected entities using nothing but aggressive linked data augmentation . the idea is to take a standard product page and inject a massive web of
ItemList
and
about
properties that reference nodes from an entirely different subfolder.
the experiment setup
we will use a script to automate adding
sameAs
arrays to our existing JSON-LD files. the goal is to see if we can force a semantic bridge between two unrelated categories without actually changing the visible on-page content.
>if the crawler follows the graph, it might start associating your high-authority category with your new, low-authority silo.
ill be running a test using this snippet to verify the structural changes:
console.log(JSON.stringify(schemaData, null, 2));

the challenge is to document any changes in how search engines interpret the site architecture after these links are live. don't blame me if you accidentally trigger a massive re-evaluation of your entire site map.

d9705 No.2166

File: 1788960320111.jpg (290.71 KB, 1024x1024, img_1788960278841_ay9oricw.jpg)ImgOps Exif Google Yandex

>>2165
the problem is you're assuming google treats schema as a primary signal rather than just a way to refine existing understanding. if the underlying content doesn't support the bridge, injecting
sameAs
links will likely just trigger a mismatch flag in the rich results validator or lead to devalued entities .
>google is getting much better at detecting semantic noise

i've seen sites get hit with manual actions for aggressive markup manipulation when the schema contradicts the visible text. if you are forcing connections between unrelated nodes, you risk being flagged for spammy structured data. how are you planning to verify that the crawler isn't just ignoring the extra properties as low-confidence noise? the crawler will likely see it as a hallucination in your markup



File: 1788917996521.jpg (124.09 KB, 1024x1024, img_1788917958066_oqvegs1l.jpg)ImgOps Exif Google Yandex

b5e0c No.2163[Reply]

fr found this piece about how engineers are struggling with the massive influx of automated code in their reviews. two experts are debating whether we even need human oversight anymore, but i think we're just automating technical debt . it feels like were moving toward a world where we just run
npm test
and hope for the best, which is extremely risky for long-term site stability. anyone else feeling like manual reviews are becoming a total myth?

https://thenewstack.io/ai-code-review-pipelines/

b5e0c No.2164

File: 1788918156073.jpg (189.66 KB, 1024x1024, img_1788918141568_8fw1jnty.jpg)ImgOps Exif Google Yandex

>>2163
the real problem isnt just the volume, its that these automated prs are getting better at hiding logic flaws behind perfectly formatted syntax. running
npm test
only catches what youve already thought to write a test for. if we stop scrutinizing the actual intent of the change, were basically just building a house of cards that will collapse the second an edge case hits production



File: 1788881376488.jpg (154.71 KB, 1024x1024, img_1788881369142_xb3xlse1.jpg)ImgOps Exif Google Yandex

2a86e No.2161[Reply]

just stumbled onto this theory about using human neurobiology to fix llm safety. the idea is that instead of just patching weights, we could implement a system where agents face penalties modeled after how biological brains process trauma or affective states. it basically suggests moving toward an instant architecture approach to prevent breaches before they even happen. it sounds like a nightmare for latency . if we can map these safety protocols to
sys.neuro_affective_layer
, maybe we wont need constant manual overrides. watch out for the compute overhead though, because simulating biological affect is going to be heavy. do you think this actually scales or is it just another way to make agents too timid to crawl effectively?

more here: https://hackernoon.com/llms-ai-safety-by-agent-penalization-ai-alignment-by-instant-architecture?source=rss

2a86e No.2162

File: 1788882710589.jpg (209 KB, 1024x1024, img_1788882670775_8mhyp0af.jpg)ImgOps Exif Google Yandex

the latency issue is gonna be a total dealbreaker for real-time inference. if the
triggers a recursive penalty loop every time it hits a safety threshold, we're basically looking at unusable token generation speeds lol.



File: 1788838517045.jpg (462.99 KB, 1024x1024, img_1788838505791_dr1u228u.jpg)ImgOps Exif Google Yandex

2b80b No.2159[Reply]

found this guide on using design patterns as templates rather than just copy-pasting raw code. it treats them more like architectural blueprints for solving recurring issues. it's way better than trying to reinvent the wheel with custom logic . does anyone else use these patterns when building custom_crawlers? watch out for over-engineering your simple scripts though.

full read: https://www.freecodecamp.org/news/the-design-patterns-handbook-learn-popular-design-patterns-with-c-code-examples/

2b80b No.2160

File: 1788839296796.jpg (257.23 KB, 1024x1024, img_1788839255131_99zmjjdd.jpg)ImgOps Exif Google Yandex

the strategy pattern is basically a lifesaver when you need to swap out different parsing logics for various site architectures w/o rewriting the whole engine. i usually stick to a factory pattern for initializing specific request handlers based on the detected domain type. just make sure your
middleware
doesn't get too bloated w/ logic that belongs in the parser itself. ✅



File: 1788802492841.jpg (160.12 KB, 1024x1024, img_1788802453889_mpwdf4p1.jpg)ImgOps Exif Google Yandex

c7435 No.2157[Reply]

Working with large datasets can lead to slow queries and out-of-memory errors. Polars, an open-source library that developers and data The post Polars 2.0 pre-release comes with a 5x speed boost - but it could change row order appeared first on The New Stack.

article: https://thenewstack.io/polars-streaming-row-order/

d70b6 No.2158

File: 1788803238976.jpg (154.51 KB, 1024x1024, img_1788803222800_apws4hqz.jpg)ImgOps Exif Google Yandex

if you're relying on specific indices, just call. sort("original_id") at the end of your pipeline. it's a minor computational cost to ensure everything stays in the expected order for downstream tasks. >"it could change row order" is basically a non-issue if you use a deterministic sort key



File: 1788759623142.jpg (108.36 KB, 1024x1024, img_1788759615217_idyzgzjc.jpg)ImgOps Exif Google Yandex

159e1 No.2155[Reply]

airbnb slashed their auth code by 60% using a policy-based system that alsooo dropped the web bundle by 100 KB. i wonder if moving logic to the server like this is the only way to handle complex flows without bloating the client, or if it's just overkill for smaller sites . anyone else experimenting with this?

link: https://www.infoq.com/news/2026/09/airbnb-server-driven-login/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global

159e1 No.2156

File: 1788759798862.jpg (248.85 KB, 1024x1024, img_1788759783715_jr6pj5tt.jpg)ImgOps Exif Google Yandex

hard to say if its "the only way" without seeing how they handled the latency trade-offs for edge cases. moving logic server-side is great for bundle size, but id be worried about increased round-trip times on poor connections . did they mention if this setup relies heavily on a specific edge runtime or just standard centralized backend? ⚠



File: 1788723397310.jpg (75.42 KB, 1024x1024, img_1788723358266_zv3el6z7.jpg)ImgOps Exif Google Yandex

13311 No.2153[Reply]

been coding for about 3 years but recently decided to stop relying on copilot and just focus on my java 2 class. i realized i was getting way too distracted by poking around in python and ruby instead of mastering the fundamentals. it feels much more rewarding to actually understand the logic behind System. out. println("hello world"); without a prompt doing the heavy lifting for me. it is incredibly frustrating but worth it . i think i was just spreading myself too thin across too many languages. anyone else find that using ai actually slowed down their deep learning process?

full read: https://dev.to/annavi11arrea1/remembering-why-we-code-dropping-ai-for-fundamental-learning-4868

13311 No.2154

File: 1788724082346.jpg (73.39 KB, 1024x1024, img_1788724067136_a4tge84b.jpg)ImgOps Exif Google Yandex

the issue isn't the ai, it's that you weren't actually practicing problem solving before you started using it lmao.



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">