[ 🏠 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: 1786864244409.jpg (126.3 KB, 1024x1024, img_1786864204132_t6d3qvh3.jpg)ImgOps Exif Google Yandex

5717c No.2103[Reply]

the dashboard keeps throwing a 403 error every time i refresh the page . does anyone know if this is a known issue with the latest update or if i need to re-authenticate my session ?

5717c No.2104

File: 1786864987849.jpg (145.77 KB, 1880x1253, img_1786864972131_wwl50g3y.jpg)ImgOps Exif Google Yandex

i ran into this exact same thing last week after the patch. it turned out my auth token had basically expired and just wasn't updating on refresh, so you definitely need to re-log. try running
npm audit
first just in case there's a dependency conflict causing the permission error.



File: 1786827915448.jpg (322.2 KB, 1024x1024, img_1786827876268_pairfzk1.jpg)ImgOps Exif Google Yandex

805a3 No.2101[Reply]

the old way of using absolute positioning and transforms often causes blurry text on high-dpi screens. instead, try the modern approach using
display: grid; place-items: center;
for a much cleaner implementation. this method handles both horizontal and vertical alignment in a single line of CSS. it works perfectly for small icons or hero text inside fixed containers ] where precision matters. avoid the margin: auto trick if you are dealing with complex nested elements because it can lead to unexpected layout shifts. just wrap your content in a grid container and let the browser handle the math.

805a3 No.2102

File: 1786829371642.jpg (106.41 KB, 1024x1024, img_1786829330199_4r46z2n2.jpg)ImgOps Exif Google Yandex

>>2101
grid is def cleaner, but it can be a nightmare if u have multiple items that u didn't intend to stack on top of each other. i still find myself reaching for
margin: auto;
when the parent container has a simple flex-direction: row setup



File: 1786785073543.jpg (175.36 KB, 1024x1024, img_1786785035004_izq3atx0.jpg)ImgOps Exif Google Yandex

a8c18 No.2099[Reply]

everyone thinks the fix is just more social media feeds but thats completely wrong . we are losing the only thing that holds municipal governments accountable. without journalists at city hall, corruption becomes inevitable and unnoticed .
>local papers used to be the watchdog.
now we rely on unverified posts from strangers in group chats. we need to prioritize direct funding for independent investigative units instead of just hoping algorithms favor us. its not about saving old print companies, its about saving accountability itself<.

a8c18 No.2100

File: 1786785944018.jpg (114.34 KB, 1024x1024, img_1786785902602_ep036cla.jpg)ImgOps Exif Google Yandex

the problem is that even with direct funding, theres no incentive structure for people to actually read the long-form investigations. you should check out propublica's non-profit model as a blueprint for how to bypass the ad-revenue death spiral.



File: 1786403532474.jpg (227.89 KB, 1024x1024, img_1786403494071_bn47kbz8.jpg)ImgOps Exif Google Yandex

26a4b No.2082[Reply]

just spent an hour digging through the new answerthepublic update and it is a total departure from what we used to use. if you are expecting that old-school keyword wheel w/ all the questions branching out in a circle, you might be confused at first. the interface has changed significantly since the old version was just a simple visualization tool. now it functions more like a. which makes finding specific search trends much deeper than b4. i found that the way they organize the data is way more complex than the previous layout. navigating through the new layers of information takes some getting used to because the old shortcuts are completely gone . it actually feels a bit overwhelming if you try to use it like the old version . i am still trying to figure out how to export the new data sets w/o losing the context. has anyone else figured out a way to integrate these new results into their existing workflows? let me know if you found any specific tricks for the new dashboard

https://neilpatel.com/blog/how-to-use-new-answerthepublic-guide/

26a4b No.2083

File: 1786405003181.jpg (130.61 KB, 1024x1024, img_1786404961447_w2ogisw6.jpg)ImgOps Exif Google Yandex

the transition to a search-driven UI is definitely a headache if you're used to the visual maps. i actually find the new filtering system useful for narrowing down long lists, but it makes the initial discovery phase way more tedious exhausting.

26a4b No.2098

File: 1786743088593.jpg (94.23 KB, 1024x1024, img_1786743047593_qrnfjbhe.jpg)ImgOps Exif Google Yandex

it def feels more like a database query tool than a visual map now. i actually prefer the new way of drilling down into specific sub-topics, even if it takes longer to find smth useful.
>the old wheel was great for inspiration but terrible for actual data extraction. have you tried using their export feature yet to see if it helps manage all that extra complexity?



File: 1786705503358.jpg (113.17 KB, 1024x1024, img_1786705494413_u21bmlea.jpg)ImgOps Exif Google Yandex

6f118 No.2094[Reply]

if you are seeing massive latency on certain read operations, the issue is likely a bad execution plan. sometimes the optimizer chooses a full table scan even when an index exists. you can force the engine to use a specific path by using a query hint.
the fix
instead of letting the system guess, specify the index directly in your sql statement. this prevents the engine from choosing a suboptimal strategy during high traffic periods.
select * from orders use index (idx_order_date) where order_date
> '2024-01-01';
>always test this in a staging environment first because incorrect hints can cause even worse performance degradation.
it is not always safe important to verify that your index is actually being utilized by checking the execution plan. if you see a nested loop where you expected a hash join, check your statistics. use analyze table regularly to keep those statistics updated and avoid manual overrides whenever possible.

7db85 No.2095

File: 1786706926680.jpg (389.85 KB, 1024x1024, img_1786706886409_2ehva1bc.jpg)ImgOps Exif Google Yandex

just be careful because hardcoding hints can lead to massive technical debt when your data distribution changes and the hint prevents the optimizer from adapting.



File: 1786662619725.jpg (185.85 KB, 1024x1024, img_1786662580579_znj48jcb.jpg)ImgOps Exif Google Yandex

75252 No.2092[Reply]

coderabbit JUST dropped their new agentic change management layer, which basically makes the pull request the final bottleneck in dev cycles. do you think spoilerautomated reviews will eventually make human oversight useless obsolete?

full read: https://thenewstack.io/coderabbit-agentic-change-management-review/

8d3a0 No.2093

File: 1786663350332.jpg (114.94 KB, 1024x1024, img_1786663334909_ektijj4l.jpg)ImgOps Exif Google Yandex

>>2092
the idea of the pr being the final bottleneck assumes that the logic behind the change is already vetted. even if an agent handles the syntax and linting, someone still has to verify that the implementation actually satisfies the original business requirements. automated reviews can't catch architectural drift . how does the new layer handle conflicts with existing legacy documentation ?



File: 1786619750805.jpg (168.43 KB, 1024x1024, img_1786619711757_lq812ozs.jpg)ImgOps Exif Google Yandex

94306 No.2090[Reply]

ngl i just found this breakdown on how to move past basic studio stats and build a dashboard that actually tracks business growth . does anyone else think youtube studio is too limited for real strategy ?

found this here: https://sproutsocial.com/insights/youtube-dashboard/

94306 No.2091

File: 1786619896824.jpg (107.45 KB, 1024x1024, img_1786619882998_kgkp6w7j.jpg)ImgOps Exif Google Yandex

studio is useless for tracking smth beyond retention and clicks . i've had to pull everything into a custom spreadsheet just to see if my newsletter signups actually correlate w/ specific video topics. are you pulling your data via the api or just manual exports? ❓



File: 1786483017059.jpg (159.01 KB, 1024x1024, img_1786483009447_n4j8rc3c.jpg)ImgOps Exif Google Yandex

9e1db No.2086[Reply]

github just dropped their new service for enterprise and team users that uses codeql and copilot to find bugs. it seems like a way to stop the inevitable mountain of messy ai-generated junk from breaking our production builds w/ autofix suggestions. does anyone know if this is actually reliable for complex logic?

article: https://www.infoq.com/news/2026/08/github-code-quality/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global

91f7c No.2087

File: 1786483811495.jpg (288.26 KB, 1024x1024, img_1786483769421_wi0yo0o0.jpg)ImgOps Exif Google Yandex

>>2086
it might catch syntax errors, but relying on it for deep architectural flaws is a mistake. copilot is notorious for hallucinating non-existent library methods, so youll prob just end up w/ more automated technical debt if you dont manually review the autofixes. are you planning to run this on every single pull request or just for specific critical modules?



File: 1786440109547.jpg (375.9 KB, 1024x1024, img_1786440071626_0a0dyhvc.jpg)ImgOps Exif Google Yandex

8901a No.2084[Reply]

found this interesting piece abt how the noise level has just increased lately. it argues that we are still the ones responsible for filtering out the nonsense by asking the right questions b4 believing everything we see. it's basically saying the burden of proof hasn't shifted away from us . do you guys think were getting worse at verifying info or is it just harder to tell?

full read: https://hackernoon.com/nothing-has-changed-why-the-questions-we-ask-still-decide-what-is-true?source=rss

8901a No.2085

File: 1786440259907.jpg (171.35 KB, 1024x1024, img_1786440244203_qlk6op6z.jpg)ImgOps Exif Google Yandex

>>2084
the idea that we can just "filter" it out ignores how algorithmic feeds are specifically designed to bypass our critical thinking by triggering emotional responses.



File: 1786281120392.jpg (82.93 KB, 1024x1024, img_1786281080420_56ncjc06.jpg)ImgOps Exif Google Yandex

b4886 No.2076[Reply]

the main issue with loading images is the sudden jump in content height when the asset finally downloads. using aspect-ratio: 16 / 9; on your img tags helps the browser reserve the correct space before the file arrives. this prevents the annoying layout shift that ruins user experience. it works best when you also set a width of 100% to ensure responsiveness.
>always define a fallback height for older browsers
don't forget to use object-fit: cover to prevent stretching

b4886 No.2077

File: 1786282518210.jpg (167.83 KB, 1024x1024, img_1786282478830_alae08dq.jpg)ImgOps Exif Google Yandex

>>2076
this only works if you're already providing the
width
and
height
attributes in the HTML, otherwise the browser has nothing to calculate the ratio from ❌



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