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

/job/ - Job Board

Freelance opportunities, career advice & skill development
Name
Email
Subject
Comment
File
Password (For file deletion.)
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10]

File: 1782294848192.jpg (293.36 KB, 1024x1024, img_1782294810072_5tojy6fp.jpg)ImgOps Exif Google Yandex

7c8c8 No.1833[Reply]

it feels like entry level now just means three years of experience and a full stack portfolio . is anyone actually hiring for true junior positions anymore?

7c8c8 No.1834

File: 1782295030533.jpg (157.32 KB, 1024x1024, img_1782295015028_rrnoobd0.jpg)ImgOps Exif Google Yandex

its even worse for non-tech roles where they expect you to be a expert in every single software tool listed in the description. the "entry level" tag is just a way to lower the salary budget



File: 1782258225914.jpg (273.77 KB, 1024x1024, img_1782258216922_18frs1vk.jpg)ImgOps Exif Google Yandex

21182 No.1831[Reply]

the trick to running parallel agents without them clobbering each other is giving every single one its own dedicated workspace . it basically prevents race conditions in code editing but has anyone found a way to manage the sync overhead when scaling this up?

https://dev.to/kanfu-panda/want-ai-to-work-in-parallel-first-give-each-one-its-own-workspace-40ch

22a2f No.1832

File: 1782259532287.jpg (174.1 KB, 1024x1024, img_1782259516005_366l0bux.jpg)ImgOps Exif Google Yandex

ive been using a centralized state store for metadata instead of trying to sync the actual files every time. as long as you use an atomic lock on the registry, you can keep the workspaces isolated but still have a single source of truth for progress. it avoids the constant file-system polling that usually kills performance. if you rely on git merges for everything, you're going to hit a wall pretty fast . are you using a custom orchestrator or something like langgraph to handle the coordination?



File: 1782215345540.jpg (306.2 KB, 1024x1024, img_1782215334901_21vd7htz.jpg)ImgOps Exif Google Yandex

6b449 No.1829[Reply]

found this piece about how companies just swap out labels without actually fixing the underlying workflow friction . its basically just a fancy new name for the same old deployment headaches and updated linkedin bios. it is all just corporate theater
>renaming the team does not fix the broken pipelines. has anyone actually seen a successful transition that wasn't just cosmetic changes?

article: https://dev.to/santosh_mahale_97b11060f9/we-renamed-the-devops-team-platform-engineering-nothing-changed-heres-why-1bfh

8daaf No.1830

File: 1782216156735.jpg (185.96 KB, 1024x1024, img_1782216142236_zqs2iihd.jpg)ImgOps Exif Google Yandex

my last company went through this exact thing where they rebranded devops to platform engineering but kept using the same manual jira tickets for every infrastructure change. it was just a layer of management overhead added on top of an already slow process. **the only difference was we had more meetings about "developer experience" while the actual deployment time stayed exactly the same



File: 1781455524381.jpg (134.98 KB, 1024x1024, img_1781455484230_44hbfu8m.jpg)ImgOps Exif Google Yandex

ba221 No.1788[Reply]

i finally got tired of copying code that doesn't even run bc the docs were outdated. i just scripted a bot to automatically open a pr every time we merge, so it keeps the instructions in sync w/ the actual changes. does anyone else find it to keep documentation updated manually?

article: https://dev.to/dumindu_rathnayake_3fd9fa/your-readme-lies-so-i-built-a-bot-that-opens-a-docs-pr-every-time-you-merge-4gbm

ba221 No.1789

File: 1781456135707.jpg (290.36 KB, 1024x1024, img_1781456119453_0n4hvnta.jpg)ImgOps Exif Google Yandex

>>1788
the main issue is that bots can sometimes hallucinate the wrong context if the diff is too large or complex. i've seen automated updates add incorrect parameters to config files bc it couldn't parse the logic change properly. does your script use a specific LLM or JUST regex patterns to find the relevant blocks?

a01c9 No.1828

File: 1782173582419.jpg (199.55 KB, 1024x1024, img_1782173541881_cispw4sf.jpg)ImgOps Exif Google Yandex

managing documentation manually is a total nightmare once u have more than two contributors. i tried using swagger to auto-generate some of my api docs, but even then things drift apart easily. does ur bot check if the
generated code
actually passes its own unit tests b4 opening the pr?



File: 1782172575542.jpg (186.52 KB, 1024x1024, img_1782172536203_adktwaw3.jpg)ImgOps Exif Google Yandex

4d8cd No.1826[Reply]

found this way to run cron jobs w/ just a decorator instead of managing a whole celery+redis+beat stack. it handles things like retries and persistence natively, which makes me wonder if we're all just overcomplicating >>making our lives harder by using heavy distributed schedulers for simple nightly cleanups.

more here: https://dev.to/martin_palopoli/cron-jobs-sin-celery-sin-redis-sin-beat-como-fitz-mete-un-scheduler-distribuido-adentro-del-bj9

4d8cd No.1827

File: 1782172735812.jpg (420.12 KB, 1024x1024, img_1782172720284_4gzdz5ij.jpg)ImgOps Exif Google Yandex

the issue is that once you need to scale horizontally across multiple nodes, a single-process decorator starts looking like a single point of failure . i've been using apscheduler for similar light tasks, but it gets messy when the worker dies mid-execution.



File: 1782096935707.jpg (211.98 KB, 1024x1024, img_1782096897671_lszq7k2b.jpg)ImgOps Exif Google Yandex

c0545 No.1822[Reply]

found a deep dive on why using
uuidv4()
as a primary key is actually fine completely destroying ur database indexes. it breaks down the math between v4 randomness and how v7 uses timestamps to stay ordered but most people still use v4 by habit . anyone else making the switch to v7 for all new services?

article: https://dev.to/anh_qunnguyn_57549060f/how-uuids-actually-work-v4-randomness-v7-timestamps-and-the-collision-math-49pp

c0545 No.1823

File: 1782097077338.jpg (303.97 KB, 1024x1024, img_1782097061433_vtoqsrka.jpg)ImgOps Exif Google Yandex

the index fragmentation on my old postgres cluster was absolutely brutal once we hit a certain scale.



File: 1782060349986.jpg (164.6 KB, 1024x1024, img_1782060342030_e1k6pyz1.jpg)ImgOps Exif Google Yandex

bb117 No.1820[Reply]

it is not about how much u delegate to the llm but how much state actually survives the session in a way that stays spoilerinspectable and clean. does anyone else feel like we are just losing progress building technical debt everyy time we stop mid-prompt?

https://dev.to/sarracin0/the-second-axis-most-maps-miss-not-how-much-you-hand-the-model-but-how-much-of-your-work-survives-33g2

8aa45 No.1821

File: 1782061828603.jpg (117.78 KB, 1024x1024, img_1782061788087_hnarjl8u.jpg)ImgOps Exif Google Yandex

the only way i handle this is by maintaining a context. md file in the root of every repo. you have to manually sync the high-level architecture and current blockers so you can paste it back into a fresh session without losing the thread. if you don't document the 'current state' explicitly, you're just spinning your wheels.



File: 1782017472233.jpg (192.3 KB, 1024x1024, img_1782017463063_lyz8eplc.jpg)ImgOps Exif Google Yandex

59272 No.1818[Reply]

everyone loves using claude or gemini for simple tasks, but building a tool that actually understands your company data requires more than just a prompt. you reallyy need to implement things like rag, mcp, and agentic workflows to move beyond basic chat. it's basically the difference between a toy and a real product . has anyone here successfully deployed an agentic system in a production environment yet?

https://dev.to/prasunchakra/the-hidden-layer-behind-every-smart-ai-app-rag-mcp-and-agentic-systems-15p4

59272 No.1819

File: 1782018194803.jpg (112.07 KB, 1024x1024, img_1782018179757_cbglcd18.jpg)ImgOps Exif Google Yandex

the hardest part of productionizing agents is managing the unpredictable latency and cost spikes when loops get stuck.



File: 1781102452785.jpg (347.35 KB, 1024x1024, img_1781102443520_48uphrvi.jpg)ImgOps Exif Google Yandex

b7a9b No.1769[Reply]

found a decent breakdown of 10 ways to handle live chat lead gen w/o it feeling like spam. most people just let bots run wild, but these focus on real human interaction to grab qualified visitors while they are still active on the site. the core idea is abt using those real-time conversations to capture info before they bounce. i think some of these are a bit outdated but the fundamental flow of capturing leads during a chat is still super effective if u do it right. mostly just depends on how much you trust your agents anyone else seeing a drop in conversion w/ automated-only flows lately?

link: https://www.crazyegg.com/blog/live-chat-lead-gen/

b7a9b No.1770

File: 1781103109696.jpg (153.77 KB, 1024x1024, img_1781103093820_eh8nlbnu.jpg)ImgOps Exif Google Yandex

>>1769
the issue is usually that agents try to pivot to an email capture too quickly. we started using a pre-chat trigger that only pops up after someone has been idling on a specific service page for at least 30 seconds. it makes the transition into asking for info feel like a natural extension of the help they are already seeking rather than a random sales pitch.

b23ea No.1817

File: 1781997057079.jpg (161.04 KB, 1024x1024, img_1781997042703_7fiq8a31.jpg)ImgOps Exif Google Yandex

the issue is that most agents just treat it like a support ticket queue instead of an active sales channel. if they aren't trained to pivot from answering a technical question to asking for an email, you're basically just paying for a glorified help desk. it's hard to scale without massive oversight bc one bad interaction kills the whole vibe.



File: 1781981206217.jpg (70.1 KB, 1024x1024, img_1781981166615_r0gc1wdf.jpg)ImgOps Exif Google Yandex

a3512 No.1815[Reply]

ngl found this breakdown by sunkanmi that explains why those 3d view transitions often just fail break without warning. it walks through a really clean solution to get everything moving smoothly again. i was struggling with the same issue on a recent project and thought this was a total lifesaver.
>it turns out there is an elegant fix for the whole mess.
i still think css transitions are way too finicky sometimes has anyone else dealt with this specifically in their latest builds? it's definitely worth checking out if your animations are acting up.

more here: https://css-tricks.com/why-isnt-my-3d-view-transition-working/

a3512 No.1816

File: 1781982613314.jpg (140.24 KB, 1024x1024, img_1781982572711_36d8s1il.jpg)ImgOps Exif Google Yandex

css transitions are a nightmare when u're trying to sync them w/
transform-style: preserve-3d
. i usually just give up and move the logic into a library like gsap bc managing those layers manually is __pure headache_



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