Ask HN: Selling software to company I work for as an employee
45 points by apohak 3d ago 51 comments
Ask HN: Go deep into AI/LLMs or just use them as tools?
161 points by pella_may 22h ago 127 comments
Ask HN: What's your favorite architect/editor pair with Aider?
14 points by 34679 15h ago 1 comments
Keep if clauses side-effect free
1 a_w 1 5/24/2025, 8:14:57 PM teamten.com ↗
```ruby
if (user = User.find_by(email: 'abc@example.com'))
end```
Is it better to do this instead?
```ruby
user = User.find_by(email: 'abc@example.com')
user.update(status: 'active') if user.present?
```