Mabadiliko ya Tabianchi

Kuona nini sisi ni kujenga katika muda halisi. Kila kipengele, kurekebisha, na kuboresha kusafirishwa kwenye jukwaa.

17,853
Mabadiliko ya Jumla
4,572
Features ya
4,509
Wa
32
Miradi ya Miradi
Filter ya Mradi
Miradi yote17,853AIService110APIService138BillingService133ConversionService85DaemonService107DocsService189ESigService78EmailService347InitializerService299KBService73KlusterServices539MCPGatewayService43MediaService460RAGService61SecurityService1,516TranslateService45VOIPService173VectorService8kamo-analytics6,157kamo-apps18kamo-asterisk-support19kamo-capcha17kamo-capcha-widget4kamo-internal4,550kamo-login318kamo-marketing580kamo-meet90kamo-nowww18kamo-register206kamo-shared-library1,320kamo-signer-monorepo50kamolos102
Filter ya aina
Aina zoteBuild24CI522Chore670Docs226Feature4,572Fix4,509Other6,781Performance136Refactor273Revert23Style48Test68Upgrade1
September 9, 2026
September 8, 2026
PerformanceMediaService

Kuacha kujenga mkoba na orodha ya wageni kwenye kila hundi

β€œMaoni Kwa β€˜yalichukua usawa wa Cheddar wa mpokeaji na kuzima yote Orodha ya wanachama wa shirika - wote kwa RECIPIENT, kwenye kila sura iliyochapishwa. Wakati ...

KamoΒ·3d ago
September 6, 2026
Performancekamo-marketing

Kuacha kila eneo rerasterizing yake sprite benki juu ya resize

Uchunguzi wa matukio yote ya 18 uligundua kasoro hiyo katika 12 kati yao, na ni the the the the the the the the the the the the the the the the ...

KamoΒ·5d ago
September 5, 2026
PerformanceKlusterServices

Narrow the window a DDL leaves behind for stale backends

Applying DDL bumps the catalog version, and backends still holding the old one fail their next statement with SQLState 40001 until they are recycled. The last o...

KamoΒ·6d ago
September 4, 2026
PerformanceDocsService

The profile endpoint stops loading the whole board

Its own comment said it existed so a page could paint the employer "without pulling every advert down with it", and the line under that comment called board() β€”...

KamoΒ·1w ago
September 3, 2026
Performancekamo-internal

Stop the inline image toolbar re-rendering on every scroll frame

measure() runs on each scroll and resize event and built a fresh state object every time, so the toolbar re-rendered whether or not anything about the image had...

KamoΒ·1w ago
September 2, 2026
PerformanceEmailService

Index a message in one statement instead of a select-then-write

The search index row's key is assigned rather than generated, so handing a built entity to save() was a merge: Spring Data SELECTed the whole row β€” body text in...

KamoΒ·1w ago
PerformanceKBService

Stop repeating the ancestor chain on every node of a tree

A node inside a tree already knows where it is -- its position is the tree. Sending the ancestor chain on each one meant every article carried two ancestor refs...

KamoΒ·1w ago
August 28, 2026
Performancekamo-internal

A conversation outlives the window showing it

Opening a chat window cost seven requests before a message rendered β€” history, members, receipts, mark-read, the unread snapshot, the counterpart's avatar and t...

KamoΒ·2w ago
PerformanceMediaService

Serve a reopened window only what it missed, and audit a page in one write

Two costs, both paid on every single open of a chat window. ?since on GET /sessions/{guid}/messages. A window being reopened wants the messages after the one i...

KamoΒ·2w ago
August 26, 2026
Performancekamo-internal

One session snapshot for the tab, not one per hook instance

useUserInfo held its session in three useState cells. It has 187 call sites and roughly 27 of them are mounted for the whole session β€” the nav, every shell prov...

kamoΒ·2w ago
Performancekamo-internal

Ship Geist as WOFF2

Both faces are preloaded on every route, so the format is paid on every first visit. 134,132 B of WOFF became 112,252 B of WOFF2 β€” 21,880 B, a 16% cut. That is...

kamoΒ·2w ago
Performancekamo-internal

A retail market should not download the mortgage tabs

The market settings page imported all 24 tabs statically, so every market shipped every tab β€” a retail market carried the seven mortgage tabs, the four personal...

kamoΒ·2w ago
Performancekamo-internal

Show the first wallpaper without waiting for the slowest

The slideshow preloaded every wallpaper behind a single Promise.all, so nothing painted until the LAST image in the set had settled. On a tenant with a dozen ba...

kamoΒ·2w ago
Performancekamo-internal

Every context and hook now reads user-info through the coalescer

Seven independent /api/user-info calls fired on a cold authenticated load, each one asking for the member id a sibling was already asking for at the same moment...

kamoΒ·2w ago
Performancekamo-internal

One refresh timer for the whole app, not one per useUserInfo()

useUserInfo has 194 call sites, roughly a dozen of them mounted for the entire session β€” the nav, the shell providers, the launchpad. Each instance armed its ow...

kamoΒ·2w ago
Performancekamo-internal

Server-render the authenticated app, and fix the fallback org that 500s

MemberListProvider returned null until its mount effect ran, and it sits above NavTop AND {children} β€” so that one line kept the ENTIRE authenticated applicatio...

kamoΒ·2w ago
Performancekamo-internal

A checkbox click should not re-render the folder sidebar

Six call sites read the email store with a bare `useEmailStore()`. In zustand that subscribes to the WHOLE store, so any change anywhere in it re-renders the co...

kamoΒ·2w ago
Performancekamo-internal

Memoize the app-wide unread value, fix a self-retriggering effect

UnreadContext published a fourteen-member object literal as its context value, so React saw the context change on every render of the provider and woke every co...

kamoΒ·2w ago
Performancekamo-internal

Stop polling for badges nobody is looking at, and stop waking every consumer

Two always-mounted providers ran a one-minute poll with no visibility gate. LegalPackageCount had none at all; TrainingPendingCount had a visibilitychange re-re...

kamoΒ·2w ago
Performancekamo-internal

A phone-less org should not open a call socket

The softphone opened its SockJS/STOMP connection to media.<domain> unconditionally at boot. getCapabilities() is awaited a few lines above and is the backend's ...

kamoΒ·2w ago
Performancekamo-internal

Stop re-merging the whole catalogue on every request

getRequestConfig runs per request, and for any non-English member it called mergeWithFallback over the entire 23,252-key catalogue every time β€” rebuilding a res...

kamoΒ·2w ago
Performancekamo-internal

One arriving message should not re-render the whole history

Batch 5 of the client-side performance audit. MessageList maps every loaded message to a MessageBubble, and MessageBubble was not memoized. With 300 messages o...

kamoΒ·2w ago
Performancekamo-internal

Take AG Grid's 187 KB of CSS off the critical path of every route

Batch 4 of the client-side performance audit, and the last of the big ones. app/globals.css opened with two @imports of ag-grid's stylesheets, and the root lay...

kamoΒ·2w ago
Performancekamo-internal

Stop sending the whole message catalogue to the sign-in handoff

Batch 3 of the client-side performance audit. The root layout passed every message to NextIntlClientProvider on every route. The catalogue is 1.05 MB compact β€”...

kamoΒ·2w ago
Performancekamo-internal

Split the tool windows out of the shell, stop the idle timer storm

Batch 2 of the client-side performance audit. As with batch 1, nothing a member can see or do changes. The tool registry imported all ten tool windows eagerly,...

kamoΒ·2w ago
Performancekamo-internal

Stop shipping the shell code no route can reach

Batch 1 of the client-side performance audit. Every change is behaviour-preserving; nothing a member can see or do is different afterwards. I18nProviders impor...

kamoΒ·2w ago
August 22, 2026
PerformanceDocsService

Drop hasDesignVersion and its per-row template lookup

Every document list ran an esign_templates lookup for EACH row β€” 100 per page β€” to answer "is this an original that happens to carry a design". That was how the...

KamoΒ·2w ago
PerformanceEmailService

Send a guest count instead of every guest

KamoΒ·2w ago
August 21, 2026
PerformanceSecurityService

Stop scanning every market x product after the answer is known

/leads/available-summary returns three things β€” hasAcceptable, hasAcceptableCredit and one example product β€” but visited every market x product pair regardless,...

KamoΒ·3w ago
Performancekamo-shared-library

Index the two shapes geolite_locations is actually queried by

Country alone was the only index on an 80,429-row table, and neither real query used it well. Measured on production: city resolution (country + subdivision)...

KamoΒ·3w ago
PerformanceSecurityService

Count in the database instead of hydrating every commit

GET /changelog/public/stats loaded all 16,571 commit logs as entities and tallied them in a Java loop to produce two small maps and a total. It takes no authent...

KamoΒ·3w ago
Performancekamo-shared-library

Index member_rights_applied, bound the intake claim, aggregate changelog stats

Three findings from an endpoint-by-endpoint audit, each measured against production rather than inferred. member_rights_applied declared no indexes at all whil...

KamoΒ·3w ago
August 20, 2026
Performancekamo-internal

Fetch one server-filtered page instead of the whole organisation

The grid fetched every lead in the org and narrowed it in a ~300-line useMemo. Measured on production 2026-08-20: 1,427 leads fetched so seven could be shown, 2...

kamoΒ·3w ago
PerformanceSecurityService

Page the grid endpoint and take the PHI audit write off the request thread

GET /api/security/leads returned every lead in the organisation. It now takes page/size/sort plus the filters the grid actually uses, and returns a page with a ...

KamoΒ·3w ago
Performancekamo-shared-library

Filter and page the grid in the database, batch the PHI audit trail

Loading /leads took 23.3 s at 1,427 leads. 23.3 s of that was the HIPAA audit trail: recordLeadList writes one phi_access_log row per lead returned, and each on...

KamoΒ·3w ago
Performancekamo-marketing

Compress every response, not just the document

server-nonce.js asks upstream for `identity` so the HTML can be stamped with a CSP nonce without a decompress/recompress round trip, then recompresses on the wa...

KamoΒ·3w ago
Performancekamo-marketing

Drain deferred work one item per idle period

Four components waited for the main thread to go quiet before doing their work β€” the toast/consent bundle, the scroll chrome, the touch target sweep and the ref...

KamoΒ·3w ago
Performancekamo-marketing

Read the scroll position from an observer, not from layout

The nav's scrolled/at-top state came from a scroll handler that read window.scrollY, and the mount effect called that handler synchronously during React's commi...

KamoΒ·3w ago
Performancekamo-marketing

Serve static assets as build-time brotli

The flagged chunk is react-dom, and I checked it properly before concluding anything: it is the production build (no dev markers, and the profiling hooks `injec...

KamoΒ·3w ago
Performancekamo-marketing

Drop the unused preconnect, and fix the 565 ms of brotli I added

Two findings, and the second one was mine. THE DOCUMENT TOOK 1,259 ms BECAUSE OF THE NONCE WRAPPER. Measured against the live site: the HTML answered in ~900 ...

KamoΒ·3w ago
Performancekamo-marketing

Move every looping animation onto the compositor

All 26 elements Lighthouse listed under "avoid non-composited animations" were the same mistake in four places: animating a paint property. Measured with Chrome...

KamoΒ·3w ago
Performancekamo-marketing

63 HTTP requests down to 22

Implements the request-budget report. Measured the same way it was written β€” Chrome over the debugging protocol, mobile emulation, sixteen-second window. 6...

KamoΒ·3w ago
Performancekamo-marketing

The reel was never using hls.js, and phones paid for it

Chasing "make fewer HTTP requests" found two real things, and the second is much larger than the audit that led to it. THE HLS BRANCH NOBODY WAS TAKING. HeroSt...

KamoΒ·3w ago
Performancekamo-marketing

Stop re-measuring the document on every scroll frame

Two scroll listeners on the homepage read `scrollHeight` per event. That is a layout query, and this page is the worst place to make one repeatedly: its section...

KamoΒ·3w ago
Performancekamo-marketing

Drop backdrop-filter on phones

The homepage renders 94 elements carrying `backdrop-filter: blur(20px)`. Every one is a separate compositing layer that has to read back everything painted behi...

KamoΒ·3w ago
Performancekamo-marketing

Take the footer and the scroll chrome off the client

Three changes, all removing work from the window where the page is being judged. `(pages)/layout.tsx` carried `"use client"` and never needed it β€” no state, no...

KamoΒ·3w ago
Performancekamo-marketing

Stop three resources from outranking the LCP element

The LCP breakdown is where the remaining time is, and its two loading subparts β€” 270 ms of resource load delay, 500 ms of load duration β€” are a priority problem...

KamoΒ·3w ago
Performancekamo-marketing

Remove gsap, the second animation runtime on the homepage

Framer was the chunk Lighthouse named. GSAP is the one it did not, because it arrives late enough to fall outside "unused JavaScript" β€” but it is 69 KB in its o...

KamoΒ·3w ago
Performancekamo-marketing

Remove framer-motion from the site

"Reduce unused JavaScript" has named the same 35.4 KB chunk in every report, and it is Framer Motion. It is not an eager script on the homepage, which is why it...

KamoΒ·3w ago

Je, unaona nini kuhusu usafiri?

Kila moja ya hizi updates ardhi katika nafasi yako ya kazi moja kwa moja. Kuanza bure na kuangalia kukua wiki baada ya wiki.

Kuwa Huru MileleMtazamo wa bei