HackerTrans
TopNewTrendsCommentsPastAskShowJobs

a_w

no profile record

Submissions

The race to understand the mysterious world of Africa's fungi

theguardian.com
8 points·by a_w·vor 3 Monaten·0 comments

The Origin of AI's 'Reasoning' Abilities

theatlantic.com
4 points·by a_w·vor 3 Monaten·0 comments

Spain's Wind-Farm Bargain

theatlantic.com
3 points·by a_w·vor 4 Monaten·0 comments

A teenager redrew the Alabama voting map – and it's now state law

theguardian.com
8 points·by a_w·vor 8 Monaten·1 comments

How Google's DeepMind tool is 'more quickly' forecasting hurricane behavior

theguardian.com
3 points·by a_w·vor 8 Monaten·0 comments

The working-class hero of Bletchley Park you didn't see in the movies

theguardian.com
3 points·by a_w·vor 9 Monaten·1 comments

New Dataset Makes Health Chatbots Like MedGemma More Mindful of African Contexts

cc.gatech.edu
2 points·by a_w·vor 11 Monaten·0 comments

The mountain retreat – upholding an Italian tradition (football)

bbc.co.uk
4 points·by a_w·vor 12 Monaten·0 comments

Vienna Could be the model for how to tackle the housing crisis, climate change

npr.org
8 points·by a_w·letztes Jahr·3 comments

Logical Fallacies

owl.purdue.edu
2 points·by a_w·letztes Jahr·0 comments

Keep if clauses side-effect free

teamten.com
2 points·by a_w·letztes Jahr·1 comments

The Pedestrians Who Abetted a Hawk's Deadly Attack

theatlantic.com
11 points·by a_w·letztes Jahr·2 comments

What Goes in $Path? (2018)

chris-martin.org
1 points·by a_w·letztes Jahr·0 comments

Space probe to map carbon content of remotest tropical forests

theguardian.com
3 points·by a_w·letztes Jahr·0 comments

Beekeepers halt honey awards over fraud in global supply chain

theguardian.com
203 points·by a_w·vor 2 Jahren·232 comments

AI is transforming weather forecasting. Is the U.S. falling behind?

washingtonpost.com
2 points·by a_w·vor 2 Jahren·0 comments

AI assistants are blabbing our embarrassing work secrets

washingtonpost.com
6 points·by a_w·vor 2 Jahren·2 comments

The African Tour de France cyclist racking up historic wins

bbc.com
3 points·by a_w·vor 2 Jahren·0 comments

Yet Another Applied LLM Benchmark

github.com
1 points·by a_w·vor 2 Jahren·0 comments

Took part in Apache ceremonies. schools expelled them for satanic activities

theguardian.com
30 points·by a_w·vor 2 Jahren·20 comments

comments

a_w
·letztes Jahr·discuss
I do this often:

```ruby

if (user = User.find_by(email: '[email protected]'))

  user.update(status: 'active')
end

```

Is it better to do this instead?

```ruby

user = User.find_by(email: '[email protected]')

user.update(status: 'active') if user.present?

```
a_w
·vor 2 Jahren·discuss
Morality aside, I was hopping to see a discussion on the legal side of this issue.

1. Doesn't Title VI apply here?

2. Could a company legally fire an employee for practicing their religion/tradition on the weekends, outside of the office grounds?