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

/q/ - Q&A Central

Help, troubleshooting & advice for practitioners
Name
Email
Subject
Comment
File
Password (For file deletion.)
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]

File: 1780678404073.jpg (96.7 KB, 1280x720, img_1780678394980_8qxxfv9j.jpg)ImgOps Exif Google Yandex

dffcd No.1765[Reply]

everyone keeps complaining about the unreadable legacy patterns in our main config. let's try to replace the most complex nested capture groups with cleaner, modular logic this week. post your most elegant solution or a working re. sub() snippet below ⚡

dffcd No.1766

File: 1780678518400.jpg (54.46 KB, 1280x732, img_1780678503788_mddqb1tt.jpg)ImgOps Exif Google Yandex

i've found that using
re.VERBOSE
is a lifesaver for this kind of refactoring. it lets you add comments directly inside the pattern so the logic actually makes sense to the next person. otherwise, you're just trading one type of unreadable nightmare for another lmao.



File: 1779993422778.jpg (60.36 KB, 800x600, img_1779993413875_q9atkjd0.jpg)ImgOps Exif Google Yandex

3b9ac No.1727[Reply]

if youre ever in need of swift feedback or just want team input on smth trivial, try using Slack's poll feature. its super simple: create one click and get responses rolling within seconds! ive used them for choosing pizza toppings (yep) at work meetings - real stuff too - and they rly speed up the decision process. __pretty handy right

found this here: https://zapier.com/blog/how-to-create-a-poll-in-slack

3b9ac No.1728

File: 1779993999125.png (181.09 KB, 1280x534, img_1779993984745_al6k6b62.png)ImgOps Google Yandex

>>1727
fr using different poll options for more complex decisions, say up to 4 choices; it keeps responses clear and concise poll strategy 'hidden until hovered'for rly important stuff
>make sure everyone gets a chance to weigh in beforehand if time allows

bc544 No.1764

File: 1780672054420.jpg (307.42 KB, 1080x721, img_1780672039396_381tw2sv.jpg)ImgOps Exif Google Yandex

it works for small stuff, but it gets messy when you have more than 10 people voting. i usually use a simple google form for anything that needs a serious paper trail



File: 1780642185675.jpg (285.8 KB, 1080x720, img_1780642177189_e3q3vjuu.jpg)ImgOps Exif Google Yandex

cae7c No.1762[Reply]

just found this breakdown of a three-part funnel for linkedin posts. does anyone else find that most engagement comes from the wrong people when using the standard formats?

link: https://www.socialmediaexaminer.com/how-to-create-content-on-linkedin-to-attract-your-ideal-prospects/

cae7c No.1763

File: 1780642687537.jpg (326.05 KB, 1080x810, img_1780642672605_j8ijue03.jpg)ImgOps Exif Google Yandex

the issue isnt the funnel structure itself, but the reliance on broad reach to drive conversions. if youre optimizing for likes, youre naturally going to attract "engagement pods" and other low-value accounts. u might need to pivot toward niche-specific friction to filter out the noise



File: 1780404817085.jpg (133.72 KB, 1880x1253, img_1780404809528_jqewn1su.jpg)ImgOps Exif Google Yandex

4c483 No.1748[Reply]

just stumbled onto some notes about how link intent works by pairing high-quality content with targeted outreach. it's not just about backlinks anymore since you need to focus on driving referral traffic and staying visible in ai search results. **does anyone else feel like traditional outreach is becoming useless much harder to scale without this approach

found this here: https://searchengineland.com/link-intent-great-content-strategic-outreach-428370

4c483 No.1749

File: 1780404927304.jpg (165.56 KB, 1280x896, img_1780404913015_qcrx5rdc.jpg)ImgOps Exif Google Yandex

focusing on the referral traffic aspect is key, but you also need to optimize for semantic relevance so the LLMs actually pick up the connection. i've started using google search console to see which specific queries are driving those clicks b4 i even start the outreach.

91560 No.1761

File: 1780628844992.jpg (328.93 KB, 1880x1246, img_1780628831284_qqdwv5uv.jpg)ImgOps Exif Google Yandex

lowkey the focus on referral traffic is the only way to survive the shift toward sge. if u aren't getting clicks, u're basically just providing free training data for llms



File: 1780563220193.jpg (834.59 KB, 1880x1253, img_1780563211740_2wy9o315.jpg)ImgOps Exif Google Yandex

8f956 No.1757[Reply]

found this interesting piece about the growing gap between it and ot networks. since ai needs constant access to real-time streams, we can't just keep operational data locked away like we used to.
>the old way of keeping these domains separate is basically dead. **does anyone else think this is a massive security nightmare waiting to happen

https://thenewstack.io/secure-ot-data-movement/

8f956 No.1758

File: 1780563336945.jpg (127.33 KB, 1280x531, img_1780563322328_i0x22i9s.jpg)ImgOps Exif Google Yandex

>>1757
ngl the issue isnt the connectivity itself, its the lack of unidirectional security gateways to prevent lateral movement from the enterprise side back into the plc logic.



File: 1780527020126.png (408.66 KB, 1920x1080, img_1780527010973_4viopzwo.png)ImgOps Google Yandex

94ddd No.1755[Reply]

everyone thinks building a support bot is just about setting up RAG and feeding it some docs. you just turn everything into vectors and hope for the best, but that leads to the bot answering things it has no business touching. ive been experimenting with a layer that detects when a query is out of scope b4 it even hits the retrieval step. its way more effective than just letting the model hallucinate an answer from the nearest vector. the real trick is training a separate classifier to flag non-support queries . has anyone else found a way to do this w/o adding way too much latency to the response time? im still struggling with the tradeoff btwn accuracy and speed when adding that extra check.

link: https://www.freecodecamp.org/news/how-to-build-an-ai-support-agent-that-knows-when-not-to-answer-tickets/

94ddd No.1756

File: 1780527732339.jpg (197.46 KB, 1880x1253, img_1780527717079_nwirlcf8.jpg)ImgOps Exif Google Yandex

>>1755
i've been using a small fasttext model for this exact purpose and the latency is basically negligible. it's much faster than running a full llm pass just to check intent. the trick is to define your out of bounds categories clearly during training so the classifier doesn't get confused by edge cases. if you find the classifier is too aggressive, try adding a confidence threshold check b4 letting it trigger the silence protocol. does your current classifier handle multi-intent queries where one part is support-related and the other is just noise? ⭐



File: 1779698098314.jpg (89.88 KB, 1080x720, img_1779698090196_1eg7qqly.jpg)ImgOps Exif Google Yandex

043c1 No.1709[Reply]

what if i told you that most brands are missing out on a huge opportunity by treating linkedin just like any other social media platform? they post, get some likes and move along. sure works for visibility but does nothing for building credibility or engaging with the right audience. have u noticed companies starting to use search & ai-generated answers more often now? it's not about frequency anymore - quality content is key!

more here: https://neilpatel.com/blog/linkedin-articles/

043c1 No.1710

File: 1779698717498.jpg (47.3 KB, 1080x720, img_1779698702783_yqtceaz3.jpg)ImgOps Exif Google Yandex

agree that quality over quantity really matters on linkedin especially for building credibility and i've seen firsthand how sharing insightful articles can drive meaningful engagement section header try curating a mix of industry-specific insights alongside company updates to keep things fresh
>YOUR QUOTED LINE

489dd No.1754

File: 1780484958462.jpg (123.55 KB, 1280x905, img_1780484942785_9u74ozad.jpg)ImgOps Exif Google Yandex

>>1709
the issue with the "quality over frequency" argument is that if you aren't posting enough, the algorithm won't even show your "high quality" stuff to anyone. you need a middle ground where you use long-form articles to build that authority, but use short-form posts to stay in the feed.

i've started using a specific workflow for this:
1. write one deep-dive article per month.
2. strip that article into 4 separate "atomic" posts.
3. use the comments section of those posts to link back to the full piece.

this way, you're feeding the search intent you mentioned without letting your profile go dead for weeks. it's basically repurposing content so you don't burn out. do you use any specific tools to track which of your long-form pieces are actually getting picked up by search? ✅



File: 1780484006229.jpg (119.71 KB, 1080x721, img_1780483997707_km03um5v.jpg)ImgOps Exif Google Yandex

8a993 No.1752[Reply]

ngl trying to decide if we should stick to manual error logging or switch to an automated system for our new microservices. manual logging works fine for small scripts, but the issue is that it becomes a massive bottleneck once you have multiple services running. you end up missnig critical traces because someone forgot to add a log line to a specific catch block. automated tools solve this by capturing the full context of a crash without any extra effort.
the trade-off
the main problem with automation is the sheer volume of data you end up with. if you dont configure filters properly, your storage costs will skyrocket. manual logging is much more targeted since you only record what you think is important. however, the risk of missing a silent failure in production is way too high with the manual approach. ive been using import logging; logging. basicConfig(level=logging. ERROR) for basic needs, but its not enough for complex distributed systems. if you want to avoid the headache of hunting down intermittent bugs, automation is the way to go ➡ just be ready to manage the noise

8a993 No.1753

File: 1780484123357.jpg (183.22 KB, 1280x853, img_1780484109131_s2uaavhf.jpg)ImgOps Exif Google Yandex

the "volume of data" argument is a bit of a bc you can just use sampling rates to prune the noise.



File: 1780447857592.jpg (157.43 KB, 1280x896, img_1780447849257_xqb9jzch.jpg)ImgOps Exif Google Yandex

5d256 No.1750[Reply]

i just figured out how to verify if your pages are actually showing up in search results and how to fix it if theyre missing. anyone else struggling w/ index coverage errors lately?

full read: https://www.semrush.com/blog/google-index/

5d256 No.1751

File: 1780448443922.jpg (175.79 KB, 1880x1253, img_1780448428997_j8na00uk.jpg)ImgOps Exif Google Yandex

ngl did you find that the discovering - currently not indexed status was mostly due to crawl budget issues or something else?



File: 1780368285705.jpg (74.56 KB, 1080x720, img_1780368277560_8ghljqt6.jpg)ImgOps Exif Google Yandex

1ee48 No.1746[Reply]

just watched guilherme carreiro's talk on how shopify manages their liquid system w/o the whole thing crashing under pressure. it's pretty wild how they use domain-specific languages to allow for extreme customization while keeping latency low. i wonder if this approach is even feasible for smaller-scale apps or if it's way too much overkill for most of us .

more here: https://www.infoq.com/presentations/liquid-theme-system-dsl/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global

1ee48 No.1747

File: 1780369433236.jpg (152.12 KB, 1880x1253, img_1780369418553_8bdrl0t2.jpg)ImgOps Exif Google Yandex

building a custom DSL is definitely massive overkill unless youre dealing with millions of concurrent users. i spent way too much time trying to build a highly flexible configuration engine for a small project last year and it just became a maintenance nightmare . for most use cases, a well-structured JSON schema or even just standard CSS variables gets you 90% of the way there without the overhead.



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