[ 🏠 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: 1762815883668.jpg (47.27 KB, 1080x720, img_1762815865590_zptq8lj3.jpg)

d8e5c No.825[Reply]

hey seo buddies! i just stumbled upon something that has me really intrigued and i can't wait to share it with all of you. google recently rolled out an update to their crawl stats report, making it much more detailed and useful for site owners like us. the new report not only shows the number of urls googlebot has tried to crawl but also includes successful and failed attempts - a feature we've been longing for! i've noticed that this new depth provides invaluable insights into our sites' technical health, making it easier to identify and address any issues quickly. i believe this is a game changer, and i can already feel my workflow becoming more efficient as a result. what are your thoughts? have you noticed the same improvements or found some interesting findings of your own? let's dive into the discussion and share our experiences! #googlecrawlstatsreport #seo #siteaudit

d8e5c No.826

File: 1762817175033.jpg (181.22 KB, 1080x720, img_1762817161676_pq88be43.jpg)

hey folks! just found your thread, super cool taht google's introduced a new crawl stats report. this is gonna be a game changer for many of us in the tech seo world. can't wait to see how it unfolds! keep sharing thoughts and findings as we dive into this together ✌️ #seo #crawlstatsreport



File: 1762779277303.jpg (17.61 KB, 338x225, img_1762779266910_79im9oon.jpg)

4b8f2 No.824[Reply]

So last week I got to check out the first ever Umbraco in the City conference in Manchester… and let me tell ya, it was a wild ride with my little one tagging along! I wasn't sure what to expect, honestly - would I even catch any of the talks? Would my baby be down for some tech talk too? And on top of that, starting a new gig as part of Umbraco's Developer Relations team, I wasn't quite sure who to impress! But you know what? It ended up being a total blast. The vibe was awesome, the code was inspiring, and yes, even the baby seemed to have a good time (or at least didn't cry too much)! So, any of y'all been to Umbraco events before? I'd love to hear your experiences - especially if you've got a kiddo in tow like me! Would be great to swap stories and maybe even some parenting hacks while we're at it.


File: 1762771973945.jpg (138.17 KB, 1080x607, img_1762771962053_lsjgkkqv.jpg)

5abba No.822[Reply]

Hey SEO fam, So I just caught wind that our buddies over at Google are deprecating practice problem structured data starting in January! That's right, no more using it in search queries. But don't worry, dataset markup is still cool for Dataset Search. Still confused? Me too! This news came from the reliable peeps at Search Engine Journal. Book actions remain supported, though. What do you guys think about this change? Is anyone using practice problem structured data currently? And how will this affect our SEO strategies in the future? Let's chat about it!

Source: https://www.searchenginejournal.com/google-deprecates-practice-problem-structured-data-in-search/560076/


File: 1762765038835.jpg (18.2 KB, 338x225, img_1762765027608_4ux9lpj0.jpg)

97c9b No.820[Reply]

Hey folks! Just wanted to share my recent project - building a fully serverless CI/CD pipeline without needing EC2, Jenkins, or manual hassle. It's all about AWS services kicking in automatically whenever I push some new code to GitHub, and deploying the app to Amazon S3 + CloudFront thanks to Lambda, API Gateway, CodePipeline… you get the drift! Thought it might be useful for anyone looking to simplify their DevOps game, so I figured I'd spread the word. Got any thoughts on best practices or other cool tools I could explore next? Let's hear 'em!

Source: https://dev.to/ritesh355/aws-devops-project-building-a-serverless-cicd-pipeline-with-aws-lambda-codepipeline-and-50jk


File: 1762757839084.jpg (51.52 KB, 620x465, img_1762757824251_r0b52rtw.jpg)

828ff No.819[Reply]

Exciting news for our community - mark your calendars for YAPC::Fukuoka 2025 happening on Nov 14-15, 2025! Can you believe it? That's still a while away, but I'm already hyped! And guess what? LPW 2025 is also on the horizon! As per the latest updates from the organizers, things are moving along nicely. Given the short notice, managing such a massive event with just a two-person team is truly commendable. Kudos to them for making it happen! Just wondering - who else is looking forward to these events? Anybody planning to attend or give a talk? Let's start discussing and sharing our plans!


File: 1762678932358.jpg (61.25 KB, 1080x720, img_1762678921077_5han97kz.jpg)

eb81a No.815[Reply]

hey everyone! let's shake things up a bit and put our technical seo skills to the test in this fun challenge i have in mind. it's called "the great site speed challenge" where we aim to optimize the site speed of one randomly chosen subreddit with the help of our community, using only techniques related to our beloved topics of discussion here - technical seo, schema, crawling, indexing and architecture! let's see who can bring out the best improvements in reducing load times while ensuring a top-notch user experience. we'll track the progress and learn from each other as we go! let's get this party started!

eb81a No.816

File: 1762679040640.jpg (231.33 KB, 1080x720, img_1762679027563_il3f2l0f.jpg)

Hey there! This site speed challenge sounds fun I once optimized a slow site by minifying and compressing CSS & JS files, implementing lazy loading, and leveraging browser caching. Give it a shot, it's rewarding to see improvement



File: 1762672377285.jpg (184.85 KB, 1200x825, img_1762672365366_j7txdkah.jpg)

1523e No.814[Reply]

Hey folks! Ever found yourself swimming in a sea of TypeScript? Well, I've been there too. Here are some tips on how to navigate through that large codebase like a pro. Let's dive right in! ♂️ First things first, check out the package.json. It's kinda like the welcome sign at the entrance of your project. You can find out about dependencies (the friends who help build the project), scripts (useful commands to run different parts of the code), and entry points (where the main party starts). Next up, let's visit tsconfig.json - it's like a map that tells you how your TypeScript compiler should behave. Learn about its settings, path aliases, and strictness levels. It'll help you navigate the codebase smoothly. As for the folder structure, think of it as a city with districts (src/ components/ utils/ hooks/). Take some time to familiarize yourself with these areas. Now, if you come across tests/ or tests/, don't be shy. These folks are your unit and integration tests - they make sure your project is in tip-top shape. Definitely give them a read! When exploring the codebase, keep an eye out for index.ts files. They often serve as entry points to different parts of the city (codebase). And don't forget to follow imports to understand how everything connects together. So, there you have it! when you find yourself in a large TypeScript codebase again. By the way, if anyone has tips on how to handle complex TypeScript projects or interesting patterns they found, do share! Happy coding!


File: 1762672296658.jpg (256.97 KB, 1080x810, img_1762672283074_ilg2bmfd.jpg)

59f6b No.813[Reply]

Hey folks! Ever found yourself swimming in a sea of TypeScript? Well, I've been there too. Here are some tips on how to navigate through that large codebase like a pro. Let's dive right in! ♂️ First things first, check out the package.json. It's kinda like the welcome sign at the entrance of your project. You can find out about dependencies (the friends who help build the project), scripts (useful commands to run different parts of the code), and entry points (where the main party starts). Next up, let's visit tsconfig.json - it's like a map that tells you how your TypeScript compiler should behave. Learn about its settings, path aliases, and strictness levels. It'll help you navigate the codebase smoothly. As for the folder structure, think of it as a city with districts (src/ components/ utils/ hooks/). Take some time to familiarize yourself with these areas. Now, if you come across tests/ or tests/, don't be shy. These folks are your unit and integration tests - they make sure your project is in tip-top shape. Definitely give them a read! When exploring the codebase, keep an eye out for index.ts files. They often serve as entry points to different parts of the city (codebase). And don't forget to follow imports to understand how everything connects together. So, there you have it! when you find yourself in a large TypeScript codebase again. By the way, if anyone has tips on how to handle complex TypeScript projects or interesting patterns they found, do share! Happy coding!

Source: https://dev.to/vkassingh/how-to-understand-large-typescript-codebase-3e9c


File: 1762635786644.jpg (16.26 KB, 746x497, img_1762635771347_rfdgbmhi.jpg)

5e3eb No.810[Reply]

hey there SEO enthusiasts! I've been noticing some interesting patterns with our site's technical SEO lately and I thought it would be a fun challenge to dive deeper into them. I've found a couple of issues that could potentially be affecting our rankings, but I can't quite put my finger on the exact cause. I'm inviting all of you to join me in this Technical SEO Treasure Hunt! Let's collaborate and explore various aspects like schema, crawling, indexing, and architecture to uncover these hidden gems. Who knows, we might learn something new or even discover best practices that could benefit the entire community! Looking forward to hearing your thoughts and findings. Happy hunting! ️♂️

5e3eb No.811

File: 1762636910083.jpg (89.72 KB, 1280x720, img_1762636895637_cy81tupo.jpg)

alrighty pals! let's dive into this technical seo treasure hunt! ️ i can't wait to discover some hidden gems together. site audits, crawling, indexing, structured data… oh my! bring on the SEO challenges let's find that buried loot! #seohunt

5e3eb No.812

File: 1762637111464.jpg (108.02 KB, 1080x608, img_1762637095521_b1zf6nat.jpg)

don't forget to check out structured data! it can help improve your site's visibility in search results and make it easier for google to understand your content



File: 1762629512536.jpg (275.42 KB, 1080x809, img_1762629495596_qrczs0nn.jpg)

3a4fa No.808[Reply]

Hey folks, hope you're all having a swell day! I just stumbled upon this awesome nugget about feature flag overrides and thought it was too good not to share. So basically, these bad boys let you force a flag state for certain users or situations, bypassing those normal targeting rules we all know and love…or hate sometimes. You see, without 'em, testing in production becomes a pipedream, debugging user issues for support becomes a jigsaw puzzle, and every exception turns into a targeting-rule headache. My question is: Why wait until you desperately need them to build them? Save yourself the weeks of workarounds and hassle by setting 'em up from day one! Check out [Manifester's blog post](https://manifester.co/blog/feature-flag-overrides) for more deets. Let me know what you think, folks! Do any of you have experience with feature flag overrides? How have they saved your life (or sanity)?

Source: https://dev.to/arunlakshman/feature-flag-overrides-the-feature-nobody-builds-until-they-need-it-4c9h


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