#MAXSize
Just published Reselect 5.3.0. Added a `maxSize` option for `weakMapMemoize`, did some memoization perf optimizations, added a cache size dev check, and removed the dead `unstable_autoTrackMemoize` implementation. Also updated the docs!

github.com/reduxjs/rese...

(RTK patch to bump deps shortly)
Release v5.3.0 · reduxjs/reselect
This feature release adds a maxSize option to weakMapMemoize to bound cache growth, adds a new development-mode check that warns when a selector's cache grows without bound, improves memoization pe...
github.com
August 22, 2026 at 2:50 AM
clusterのワールドをUnityで作る時、心当たりないほど容量が大きくなる原因トップ3これなので、だいたいこれチェックすれば軽くなる😽(私的)

・コメントボードとかに入ってるNotoフォント
・画像のMaxSizeが大きい(大きくても1024で十分なこと多い)
・アセットのスカイボックスがやたらとでかい
September 28, 2025 at 4:53 PM
Python Tip #113 (of 365):

Instead of "@functools.lru_cache(maxsize=None)" use "@functools.cache".

Both will "memoize" a function, caching all arguments passed in.

lru_cache is great when you want a maximum cache size... but functools.cache is easier for unlimited caches.

#Python #DailyPythonTip
April 23, 2026 at 6:04 PM
Did you mean to update this thing too, or is it an unaffiliated account that I'm getting confused by?

It's "image":{"type":"blob","accept":["image/*"],"maxSize":1000000} for me.
pdsls.dev/at://did:plc...
at://bsky-lexicons.bsky.social/com.atproto.lexicon.schema/app.bsky.embed.images
pdsls.dev
April 15, 2026 at 6:35 PM
LexiconでmaxSizeに1000000指定。単位がbyteだと、1MB制限。

github.com/bluesky-soci...

github.com/bluesky-soci...

github.com/search?q=rep...
Bluesky側か、AT Proto側の都合か(多分エラー的に前者)で、画像添付については画像のサイズが0.975MB以内じゃないとダメっていうルールがある(uploadBlobはできるが、createRecord時に弾かれる)
なのでどうやっても画像は圧縮されるよ。bsky.appの場合はサーバ側でこれを処理してるっぽい?(TOKIMEKIやうちはブラウザ側で圧縮してるよ)
February 11, 2024 at 1:17 AM
Spent some time last night and this morning looking through jetstream and the firehose. Have some ideas for wiring up feeds for @smokesignal.events and @aviary.domains.

In the meantime, wrote github.com/bluesky-soci... so I can ensure my consumers are staying slim. cc/ @jaz.bsky.social
Add maxSize subscriber option by ngerakines · Pull Request #16 · bluesky-social/jetstream
This PR introduces the maxSize subscriber option, allowing jetstream consumers to opt-in to ignoring potentially large payloads. Added tests Updated readme - rendered README.md Added documentat...
github.com
October 31, 2024 at 2:11 PM
Me: *Opens image in new tab*
Image URL: image.jpg?auto=compress%2Cformat=ass?maxsize=150x150
June 26, 2024 at 7:45 PM
Just released postcard v1.1.2 with a bunch of nice fixes and updates from a lot of people who are (mostly) not me!

github.com/jamesmunns/p...

This is part of the Triage Master Plan documented in github.com/jamesmunns/p..., now it's time to start prepping for postcard 2.0 I suppose!
Release postcard/v1.1.2 · jamesmunns/postcard
What's Changed Implement MaxSize for serializable Range structs by @ChocolateLoverRaj in #193 docs: Add notes on serde attributes by @ManevilleF in #191 Fix EOF not being handled correctly by @som...
github.com
June 25, 2025 at 6:03 PM
Woke up with a random brain wave and had to check if I was right.

My Saturday morning. 😄

Tiny Home Assistant PR: less wasted work in a hot template rendering path.

Benchmark on my machine: about 51% faster. 🚀

Nice way to start the weekend. 🍻
Skip literal_eval for template results that cannot be a Python literal by frenck · Pull Request #173664 · home-assistant/core
Proposed change The result of a template render is coerced into a Python value via ast.literal_eval, memoized with @lru_cache(maxsize=EVAL_CACHE_SIZE) in _cached_parse_result. However, lru_cache o...
github.com
June 13, 2026 at 8:54 AM
April 7, 2026 at 3:28 PM
Cool, managed to find the limit of bigfile tablespace (in 16k block size database). "alter tablespace dw_etl_data maxsize 65t" - ORA-740 datafiue size of xx blocks exceeds maximum file size
June 22, 2026 at 4:55 AM

🔗 Liens utiles Ponytail :

👉 Le projet : github.com/DietrichG...
👉 La documentation : https://ponytail.dev/

Suivez nous pour un été Libre et Open Source 🌞
September 2, 2026 at 7:31 PM
Let me show you an absurd function we wrote today
August 31, 2023 at 11:39 PM
Börjat ta kort DAX igen. 1/4 av maxsize.
May 26, 2025 at 7:38 AM
The client has to compress the file so it fits in the maxSize defined by the schema, which for images is 1mb (1 million bytes) and for video 100mb. Otherwise it's rejected.

Image:
github.com/bluesky-soci...
Video:
github.com/bluesky-soci...
October 13, 2025 at 11:47 PM
I think the duration is baked into the app: github.com/bluesky-soci...

maxsize for video blobs is in the lexicon: pdsls.dev/at://did:plc...

There is also a separate blob size limit many PDSs set, which was typically 100mb a while back and wasn't made visible anywhere.
github.com
August 27, 2026 at 5:28 AM
💜: I would hang out with Stephanie and see if we can outgrow all of existence~ Goat MaxSize Speedrun~
January 2, 2025 at 9:25 PM
Python mistake #1: not caching deterministic functions which are called repeatedly with the same arguments.

Python mistake #2: not taking steps to prevent running out of memory.

Fix for #1 AND #2: use `functools.lru_cache` with an argument to specify the cache size.
May 1, 2025 at 10:46 AM
🚨 Low-severity security fix in undici (7.29.1, 8.10.2) just released!

Patches CVE-2026-84947: undici vulnerable to response truncation via oversized chunked responses in the dump interceptor

github.com/nodejs/undic...
undici vulnerable to response truncation via oversized chunked responses in the dump interceptor
### Impact undici's `interceptors.dump()` reads and discards response bodies up to a configurable `maxSize`. When a response declares a `Content-Length` that exceeds `maxSize`, the request is abor...
github.com
September 4, 2026 at 4:55 PM
const int maxSize = 5 * 1024 * 1024 * 1024;

Ja... weil 5GB ja auch so gut in einen signed Integer passen...

Es ist zu warm 😭
July 15, 2024 at 11:20 AM
Question for the Python Touchers. If lru_cache was set to maxsize=1 on something, but it dealt with 83 subclasses, if I set it to like, 128, will I blow anything up?
February 21, 2026 at 2:14 AM