frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Nvidia releases Nemotron 3 Nano Omni multimodal model

https://blogs.nvidia.com/blog/nemotron-3-nano-omni-multimodal-ai-agents/
1•madaxe_again•1m ago•0 comments

Bouncing Droplet "Quantum Mechanics"

https://scottlocklin.wordpress.com/2026/04/28/bouncing-droplet-quantum-mechanics/
1•tosh•2m ago•0 comments

Terminal file picker and inline editor for fast CLI workflows

https://pypi.org/project/terminal-file-picker/
1•sahedwave•2m ago•0 comments

A photon was teleported across 270 meters in quantum breakthrough

https://www.sciencedaily.com/releases/2026/04/260429102030.htm
1•geox•2m ago•0 comments

Patrick Collison Reflects on Stripe Sessions

https://twitter.com/patrickc/status/2049705418436600244
1•tosh•3m ago•0 comments

OpenAI Codex prompt includes explicit directive: "never talk about goblins"

https://arstechnica.com/ai/2026/04/openai-codex-system-prompt-includes-explicit-directive-to-neve...
1•pookieinc•5m ago•0 comments

Hunting Down the Google-Sent Phishing Wave Compromising 30k Facebook Accounts

https://guard.io/labs/accountdumpling---hunting-down-the-google-sent-phishing-wave-compromising-3...
1•vulnerabiliT•6m ago•0 comments

Soundness Failures in LaBRADOR Implementations from NTT-Friendly Rings

https://blog.zksecurity.xyz/posts/labrador-bugs/
3•zgeorgios•7m ago•0 comments

Chinese GPU maker Lisuan Tech is the fourth GPU maker with WHQL certification

https://www.tomshardware.com/pc-components/gpus/in-historic-first-chinese-gpu-maker-lisuan-tech-b...
2•cassianoleal•9m ago•0 comments

Thoughts on WebAssembly as a Stack Machine

https://eli.thegreenplace.net/2026/thoughts-on-webassembly-as-a-stack-machine/
1•ingve•9m ago•0 comments

Emulating PS2 Floating-Point Numbers: IEEE 754 Differences (2023)

https://www.gregorygaines.com/blog/emulating-ps2-floating-point-nums-ieee-754-diffs-part-1/
1•haunter•13m ago•0 comments

Beyond 80/20: High-Entropy Minority Tokens Drive Effective RL for LLM Reasoning

https://arxiv.org/abs/2506.01939
1•mdp2021•16m ago•0 comments

It is just too much of everything

https://www.respan.ai/market-map
1•sminchev•17m ago•1 comments

A Brief, Incomplete, and Mostly Wrong History of Programming Languages (2009)

http://james-iry.blogspot.com/2009/05/brief-incomplete-and-mostly-wrong.html
2•downbad_•24m ago•1 comments

The Elephant in the Room

https://www.joshwcomeau.com/email/wham-launch-005-elephant-2-p/
1•ameybhavsar•25m ago•0 comments

OpenAI Technical Goals (2016)

https://openai.com/index/openai-technical-goals/
1•chistev•27m ago•1 comments

US orders chip equipment companies to halt some shipments to China #2 chipmaker

https://www.reuters.com/world/china/us-orders-chip-equipment-companies-halt-some-shipments-hua-ho...
1•giuliomagnifico•29m ago•0 comments

The box-tickers shall inherit the Earth

https://spectator.com/article/the-box-tickers-shall-inherit-the-earth/
1•calpaterson•30m ago•0 comments

VS Code now enables Git AI co-authoring by default

https://code.visualstudio.com/updates/v1_118#_copilot-added-as-a-git-coauthor-by-default
1•nh43215rgb•31m ago•0 comments

Inspired

https://daniel.haxx.se/blog/2026/04/30/inspired/
1•TangerineDream•31m ago•0 comments

Near Future of Programming Languages (2017) [pdf]

https://web.archive.org/web/20220325175116/http://dev.stephendiehl.com/nearfuture.pdf
1•tosh•34m ago•0 comments

Why are the Artemis II photos on Flickr?

https://www.anildash.com/2026/04/30/artemis-photos-flickr/
2•Tomte•35m ago•0 comments

AI Slopocalypse 2027

https://www.stephendiehl.com/posts/ai_slop_2027/
1•andsoitis•36m ago•0 comments

Ask HN: Anyone using AI agents for active learning sprints? Here's my setup

1•bhagyeshsp•36m ago•0 comments

Free N8N Workflow Cost Calculator: Cloud vs. Make.com vs. Self-Hosted

https://triumphoid.com/n8n-workflow-cost-calculator/
2•ElizabethSramek•36m ago•0 comments

Renewables and batteries drive down fossil fuel use despite record demand

https://www.abc.net.au/news/2026-04-30/renewables-batteries-drive-down-fossil-fuel-use-/106622772
3•xbmcuser•37m ago•0 comments

The Download: storing nuclear waste and orchestrating agents

https://www.technologyreview.com/2026/04/29/1136666/the-download-nuclear-waste-orchestrated-ai-ag...
1•joozio•37m ago•0 comments

The Kardashev-Marx Scale

https://www.stephendiehl.com/posts/kardeschev/
1•andsoitis•39m ago•0 comments

Why skill match is not enough

https://gudok.xyz/smine/
1•signa11•40m ago•0 comments

Share.google delivers wrong TLS certificate in some regions, breaking shortlinks

https://semonto.com/tools/https-checker
1•micw•40m ago•1 comments
Open in hackernews

Show HN: I built a Ruby gem that handles memoization with a ttl

https://github.com/mishalzaman/memo_ttl
48•hp_hovercraft84•1y ago
I built a Ruby gem for memoization with TTL + LRU cache. It’s thread-safe, and has been helpful in my own apps. Would love to get some feedback: https://github.com/mishalzaman/memo_ttl

Comments

locofocos•1y ago
Can you pitch me on why I would want to use this, instead of Rails.cache.fetch (which supports TTL) powered by redis (with the "allkeys-lru" config option)?
film42•1y ago
Redis is great for caching a customer config that's hit 2000 times/second by your services, but even then, an in-mem cache with short TTL would make redis more tolerant to failure. This would be great for the in-mem part.
thomascountz•1y ago
I'm not OP nor have I read through all the code, but this gem has no external dependencies and runs in a single process (as does activesupport::Cache::MemoryStore). Could be a "why you should," or a "why you should not" use this gem, depending on your use case.
hp_hovercraft84•1y ago
Good question. I built this gem because I needed a few things that Rails.cache (and Redis) didn’t quite fit:

- Local and zero-dependency. It caches per object in memory, so no Redis setup, no serialization, no network latency. -Isolated and self-managed. Caches aren’t global. Each object/method manages its own LRU + TTL lifecycle and can be cleared with instance helpers. - Easy to use — You just declare the method, set the TTL and max size, and you're done. No key names, no block wrapping, no external config.

JamesSwift•1y ago
For what its worth, ActiveSupport::CacheStore is a really flexible api that gives minimal contractual obligations (read_entry, write_entry, delete_entry is the entire set of required methods), but still allows you to layer specific functionality (eg TTL) on top with an optional 'options' param. You could get the best of both worlds by adhering to that contract and then people can swap in eg redis cache store if they wanted a network-shared store.

EDIT: see https://github.com/rails/rails/blob/main/activesupport/lib/a...

hp_hovercraft84•1y ago
That's actually a really good idea! I'll definitely consider this in a future update. Thanks!
qrush•1y ago
Congrats on shipping your first gem!!

I found this pretty easy to read through. I'd suggest setting a description on the repo too so it's easy to find.

https://github.com/mishalzaman/memo_ttl/blob/main/lib/memo_t...

hp_hovercraft84•1y ago
As in identify where the source code is in the README?
zerocrates•1y ago
I think they mean just set a description for the repo in github (set using the gear icon next to "About"), saying what the project is. That description text can come up in github searches and google searches.
film42•1y ago
Nice! In rails I end up using Rails.cache most of the time because it's always "right there" but I like how you break out the cache to be a per-method to minimize contention. Depending on your workload it might make sense to use a ReadWrite lock instead of a Monitor.

Only suggestion is to not wrap the error of the caller in your memo wrapper.

> raise MemoTTL::Error, "Failed to execute memoized method '#{method_name}': #{e.message}"

It doesn't look like you need to catch this for any operational or state tracking reason so IMO you should not catch and wrap. When errors are wrapped with a string like this (and caught/ re-raised) you lose the original stacktrace which make debugging challenging. Especially when your error is like, "pg condition failed for select" and you can't see where it failed in the driver.

hp_hovercraft84•1y ago
Thanks for the feedback! That's a very good point, I'll update the gem and let it bubble up.
JamesSwift•1y ago
I thought ruby would auto-wrap the original exception as long as you are raising from a rescue block (i.e. as long as $! is non-nil). So in that case you can just

  raise "Failed to execute memoized method '#{method_name}'"
And ruby will set `cause` for you

https://pablofernandez.tech/2014/02/05/wrapped-exceptions-in...

film42•1y ago
TIL! That's pretty cool. I still think if you have no reason to catch an error (i.e. state tracking, etc.) then you should not.
gurgeous•1y ago
This is neat, thanks for posting. I am using memo_wise in my current project (TableTennis) in part because it allows memoization of module functions. This is a requirement for my library.

Anyway, I ended up with a hack like this, which works fine but didn't feel great.

   def some_method(arg)
     @_memo_wise[__method__].tap { _1.clear if _1.length > 100 }
     ...
   end
   memo_wise :some_method
JamesSwift•1y ago
Looks good. Id suggest making your `get` wait to acquire the lock until needed. eg instead of

  @lock.synchronize do
    entry = @store[key]
    return nil unless entry

    ...
you can do

  entry = @store[key]
  return nil unless entry

  @lock.synchronize do
    entry = @store[key]
And similarly for other codepaths
chowells•1y ago
Does the memory model guarantee that double-check locking will be correct? I don't actually know for ruby.
JamesSwift•1y ago
I think it wouldnt even be a consideration on this since we arent initializing the store here only accessing the key. And theres already the check-then-set race condition in that scenario so I think it is doubly fine.
hp_hovercraft84•1y ago
Good call, but I think I would like to ensure it remains thread-safe as @store is a hash. Although I will consider something like this in a future update. Thanks!
wood-porch•1y ago
Will this correctly retrieve 0 values? AFAIK 0 is falsey in Ruby

``` return nil unless entry ```

chowells•1y ago
No, Ruby is more strict than that. Only nil and false are falsely.
wood-porch•1y ago
Doesn't that shift the problem to caching false then :D
RangerScience•1y ago
you can probably always just do something like:

  def no_items?
    !items.present?
  end
  
  def items
    # something lone
  end

  memoize :items, ttl: 60, max_size: 10`
just makes sure the expensive operation results in a truthy value, then add some sugar for the falsey value, done.
madsohm•1y ago
Since using `def` to create a method returns a symbol with the method name, you can do something like this too:

  memoize def expensive_calculation(arg)
    @calculation_count += 1
    arg * 2
  end, ttl: 10, max_size: 2

  memoize def nil_returning_method
    @calculation_count += 1
    nil
  end
hp_hovercraft84•1y ago
This is why I love working with Ruby!
deedubaya•1y ago
See https://github.com/huntresslabs/ttl_memoizeable for an alternative implementation.

For those who don’t understand why you might want something like this: if you’re doing high enough throughput where eventual consistency is effectively the same as atomic consistency and IO hurts (i.e. redis calls) you may want to cache in memory with something like this.

My implementation above was born out of the need to adjust global state on-the-fly in a system processing hundreds of thousands of requests per second.

kartik_malik•1y ago
In React ?