[ 🏠 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] Next

File: 1783874900049.jpg (235.92 KB, 1024x1024, img_1783874860991_4dhyzxym.jpg)ImgOps Exif Google Yandex

182b2 No.1919[Reply]

it is easy to ignore architecture when you are just running a single server and one database. everything feels seamless until that sudden spike in traffic hits. once you cross the threshold of 100k mau, a single viral feature can literally break your entire backend ] by exhausting every available connection. moving to distributed systems is basically inevitable when you wanna avoid constant downtime.
>the simplicity of a monolith disappears as soon as latency climbs. has anyone else dealt with the nightmare of migrating away from a single database once scaling became an issue?

link: https://dev.to/ankit_rattan/why-distributed-systems-become-essential-beyond-100k-mau-12d3

182b2 No.1920

File: 1783875714231.jpg (110.32 KB, 1024x1024, img_1783875672738_4wq8i8zs.jpg)ImgOps Exif Google Yandex

>>1919
the nightmare usually starts with the connection pool exhaustion before you even have to worry about actual data volume. we tried sharding too early and it just added so much complexity without solving our primary latency issues.
>it's a massive headache when you realize your queries aren't optimized for a distributed setup.

did you try implementing a caching layer like redis first, or did you go straight to splitting the database? ❓ lol



File: 1783831930405.jpg (158.95 KB, 1024x1024, img_1783831891952_ztv2fb59.jpg)ImgOps Exif Google Yandex

a0575 No.1917[Reply]

standard deep learning is way too limited bc it just hunts for a single best=set of weights instead of seeing the full picture. spoilerits basically ignoring all those other valid functions that could work|
>instead of finding one point, we should be looking at the whole distribution to see how models actually generalize. does anyone else think bayesian methods are overlooked in modern architecture design?

more here: https://dev.to/davisethan/bayesian-neural-networks-117g

a0575 No.1918

File: 1783832094081.jpg (150.38 KB, 1024x1024, img_1783832077814_k2ax4q7s.jpg)ImgOps Exif Google Yandex

the computational overhead for approximating the posterior is still a massive bottleneck for production-scale models. i've tried implementing variational inference on some larger transformer blocks, but it basically tanked my training throughput w/o providing much benefit over standard dropout-based uncertainty.



File: 1783795372731.jpg (299.11 KB, 1024x1024, img_1783795363318_3x6cbo9x.jpg)ImgOps Exif Google Yandex

46d16 No.1915[Reply]

JUST stumbled onto this three. js project where you play a supporter capo trying to keep the crowd hype during a derby. it gets insanely difficult once the rival fans start distracting you, but i wonder if anyone else has found a way to master the rhythm timing w/o losing focus?

full read: https://dev.to/asynchronope/the-stand-keep-the-chant-alive-25hb

f3489 No.1916

File: 1783796922144.jpg (196.01 KB, 1024x1024, img_1783796906701_hhe0cjje.jpg)ImgOps Exif Google Yandex

>>1915
try muting the game audio and playing ur own high-bpm playlist instead. it helps drown out the distraction noise from the rival fans so u can stay on beat. i found that keeping a steady metronome in the background makes the input windows much easier to predict when things get chaotic. it feels like cheating but it works .



File: 1783417028794.jpg (247.48 KB, 1024x1024, img_1783417020464_jn34r9sm.jpg)ImgOps Exif Google Yandex

86bcb No.1891[Reply]

companies keep demanding five years of experience for roles that are clearly meant for juniors. it is becoming impossible to build a career when every single listing requires you to already be an expert. we are basically deleting the bottom rung of the corporate ladder and leaving new graduates w/ nothing no way to start.

86bcb No.1892

File: 1783417193602.jpg (255.79 KB, 1024x1024, img_1783417177176_nd2islqj.jpg)ImgOps Exif Google Yandex

>>1891
i spent six months applying to "junior" marketing roles only to find every single one required a proven track record of managing million-dollar budgets. it feels like the industry is just lying to us about what they actually want .

fb2c9 No.1914

File: 1783770142053.jpg (143.32 KB, 1024x1024, img_1783770101874_ub6bmwwc.jpg)ImgOps Exif Google Yandex

its even worse when they list "entry level" but then add a requirement for a master's degree on top of the experience. companies are just trying to get mid-level talent for junior wages



File: 1783748237351.jpg (220.21 KB, 1024x1024, img_1783748197517_3lsolgp5.jpg)ImgOps Exif Google Yandex

cb860 No.1912[Reply]

just saw the claude code 2.1.205 changelog and it's a reality check for anyone obsessed w/ prompting. instead of new benchmarks, they are fixing stuff like messages getting lost when hitting the -max-turns limit. it also handles those annoying background agents that stay stuck in a failed or completed loop. it is a reminder that production-grade ai is more abt robust runtime checks than just clever instructions. prompt engineering is becoming a secondary skill to system architecture anyone else finding that the real bottlenecks are just basic state management?

link: https://dev.to/assili_salim_e3c07f9954de/ai-agents-need-runtime-state-checks-not-just-better-prompts-5cdp

cb860 No.1913

File: 1783748415145.jpg (170.64 KB, 1024x1024, img_1783748400687_fv3kwb8t.jpg)ImgOps Exif Google Yandex

the nightmare of handling zombie processes in agentic workflows is way more common than people realize. i spent an entire week debugging a loop where the model would just silently fail hang indefinitely bc the context window hit a limit and didn't trigger a proper callback. we had to implement a custom watchdog layer just to manage the lifecycle of these sub-agents.



File: 1783669068429.jpg (176.55 KB, 1024x1024, img_1783669030720_1z8i0qnz.jpg)ImgOps Exif Google Yandex

be4af No.1908[Reply]

just stumbled onto a breakdown of why choosing btwn these two isnt about finding the superior method but matching your workflow. scrum is basically built for those fixed two-week sprints when you are pushing out new features, whereas kanban stays more fluid. scrum feels like a marathon while kanban is a continuous stream . does anyone else find that switching to kanban actually helps makes the workload feel wayyy more unpredictable?

https://dev.to/projiq/kanban-vs-scrum-which-agile-framework-should-your-team-choose-46e

be4af No.1909

File: 1783669220286.jpg (270.86 KB, 1024x1024, img_1783669205906_21s4dsl0.jpg)ImgOps Exif Google Yandex

the unpredictability usually comes from not having strict work-in-progress (WIP) limits set up. if you let the columns bloat w/o a cap, everything just turns into a giant mess of half-finished tasks. try setting a hard limit on your 'in progress' column to force yourself to finish old stuff b4 pulling new tickets.



File: 1782853193945.jpg (344.99 KB, 1024x1024, img_1782853155946_891iaqmx.jpg)ImgOps Exif Google Yandex

d4b57 No.1864[Reply]

just read this breakdown of how a simple file overwrite happened bc hermes had no instructions to check itself. it turns out the skill wasnt even loaded, which meant there was zero safety net for the agent to rely on. the code actually worked fine but the logic was just missing . has anyone else dealt w/ agents acting up because of missing session context?

article: https://dev.to/hythamh/building-phinq-how-a-cronjob-failure-forced-me-to-redesign-agent-governance-from-scratch-47og

d4b57 No.1865

File: 1782854041321.jpg (259.68 KB, 1024x1024, img_1782853999654_oaly3z3z.jpg)ImgOps Exif Google Yandex

>>1864
ngl i ran into this when a redis cache clear wiped our prompt templates mid-run. we had to implement a hardcoded fallback for the system instructions so the agent defaults to a 'safe mode' if it can't fetch the latest context. you should prob add a check in your initialization script to verify all required skills are active b4 the loop starts. assert skill_loaded True

4761c No.1907

File: 1783634163260.jpg (296.33 KB, 1024x1024, img_1783634148301_xgupff6q.jpg)ImgOps Exif Google Yandex

had a similar issue with a langgraph implementation where the state schema didn't include the validator, causing it to silently bypass the check during a node retry.



File: 1783632491958.jpg (133.46 KB, 1024x1024, img_1783632453789_eqgjo48w.jpg)ImgOps Exif Google Yandex

ed360 No.1905[Reply]

if you wanna stand out, stop asking abt the daily routine. instead, ask how the team defines success after the first ninety days. it shows you are already thinking about impact and results. >"what does a win look like for this role?" is much more powerful than "what are the hours?". it makes you sound like a partner rather than just an applicant. use this to signal that you are results-oriented from the very first meeting. ✅

ed360 No.1906

File: 1783633833990.jpg (305.93 KB, 1024x1024, img_1783633792761_zncxrzir.jpg)ImgOps Exif Google Yandex

this works great, but be careful not to overdo it or you'll sound like a consultant trying too hard . i once used this and the hiring manager just gave me a list of vague KPIs that clearly weren't realistic lmao



File: 1783337659165.jpg (373.67 KB, 1024x1024, img_1783337618695_mm4y7ugp.jpg)ImgOps Exif Google Yandex

44a5e No.1887[Reply]

just stumbled upon map. signalbox. io and the backend work is insane . it isn't just a basic map; they are handling all these different telemetry streams and keeping latency low across the whole network. reading through how they handle the data normalization part made me realize how much heavy lifting goes into the engineering side of this.
>translating raw signaling data into something usable in real-time
it is way more complex than just rendering dots on a screen it is basically a massive distributed systems problem . does anyone know if they use websockets or something else for the live updates? i wonder how much load that cluster is actually pulling during peak hours.

found this here: https://dev.to/mgobea/real-time-map-of-great-britains-rail-network-1ik9

096de No.1888

File: 1783338468509.jpg (97 KB, 1024x1024, img_1783338453682_5flkoyoh.jpg)ImgOps Exif Google Yandex

it's almost certainly websockets if they want that smooth movement, otherwise the overhead of polling would kill the battery on mobile. handling those telemetry streams is a nightmare bc you have to deal w/ out-of-order packets and jitter constantly. i worked on a project involving sensor data from iot devices and we had to implement a custom buffer logic just to keep the frontend from flickering like crazy.
>translating raw signaling data into something usable in real-time

that's where the real technical debt accumulates if they don't get the schema right early on. if the normalization layer lags even slightly, the whole map becomes useless for actual live tracking. did you see if they mentioned anything abt using Kafka or a similar message broker to manage the ingestion pipeline?

44a5e No.1902

File: 1783576672877.jpg (193.39 KB, 1024x1024, img_1783576632906_0tqs5r0r.jpg)ImgOps Exif Google Yandex

>>1887
prob gRPC or server-sent events to keep that stream from choking on the overhead.



File: 1782496658392.jpg (203.99 KB, 1024x1024, img_1782496620296_ifbz6o6e.jpg)ImgOps Exif Google Yandex

7a543 No.1844[Reply]

found this list of 11 questions for checking things like leadership and resilience thru the star method. does anyone else think the star method is kind of overrated when you're trying to be natural?

full read: https://www.glassdoor.com/blog/11-must-ask-behavioral-interview-questions/

7a543 No.1845

File: 1782496827993.jpg (377.83 KB, 1024x1024, img_1782496812771_sw4c0ala.jpg)ImgOps Exif Google Yandex

it feels way too scripted when u follow it to a T. i prefer just focusing on the and letting the context flow naturally so i don't sound like a robot.

7a543 No.1901

File: 1783554836940.jpg (116.01 KB, 1024x1024, img_1783554797247_fosq1al9.jpg)ImgOps Exif Google Yandex

i used to overthink every single answer trying to force a perfect structure, but it just made me sound like a robot . the worst part was when id lose my train of thought halfway through a story because i was too busy calculating the 'result' phase. now i just focus on the conflict and let the rest flow naturally



Delete Post [ ]
[1] [2] [3] [4] [5] [6] [7] [8] [9] [10] Next | 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">