@mattiloh

21 Followers
109 Following
31 Posts
Co-founder and CTO at picter.com. Leading talented people to build great digital products. Loves making things, dancing Lindy Hop and listening to podcasts. Dad of 2 daughters.
Pronounshe/him
Websitehttps://mattiloh.de

@daniel

Yip. I immediately had this tune in my head 😅https://youtu.be/z726OPwCnjE?si=bARztl8_5bKnB6fd

- YouTube

Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.

> npm ruin dev

#freudian_slip or regular typo? 🤔

@codepo8 I think Perplexity.ai and Arc Search are actually very interesting products in that regard. They help to get a quick overview and specific answers but still provide their sources to dive deeper and verify (or falsify) their “conclusions”. I use them a lot and often end up on the sources (blogs, docs, forums or YouTube videos) to get the details. The problem of rewarding original content is still not solved, but it seems feasible IMO.

1/ #JavaScript: Neat Intl.Collator option: `numeric`. It compares numbers (anywhere!) numerically, not lexicographically:

> const collator = new Intl.Collator('en-us', {numeric: true});

> ['b', 'c', 'a', '1', '10', '2'].sort(collator.compare)
['1', '2', '10', 'a', 'b', 'c']

> ['1 day', '10 days', '2 days'].sort(collator.compare)
[ '1 day', '2 days', '10 days' ]

> ['in 1 day', 'in 10 days', 'in 2 days'].sort(collator.compare)
[ 'in 1 day', 'in 2 days', 'in 10 days' ]

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/Collator#numeric

Intl.Collator() constructor - JavaScript | MDN

The Intl.Collator() constructor creates Intl.Collator objects.

MDN Web Docs
Zoe Longmuss und Volker Wierz arbeiten auf einer Berliner Krankenhausstation, wo viele HIV-Patienten betreut werden. Ein Gespräch über das Virus. 👉 https://taz.de/Krankenpflegende-ueber-HIV-Behandlung/!5960906/
Kran­ken­pfle­ge­nde über HIV-Behandlung: „Wir müssen das Stigma abbauen“

Zoe Longmuss und Volker Wierz arbeiten auf einer Berliner Krankenhausstation, wo viele HIV-Patienten betreut werden. Ein Gespräch Ăźber das Virus.

Tracking your sleep during the newborn phase can be rather disheartening 😵‍💫
@daniel I’m curious whether the 13€ reflects their average monthly ad revenue per user, or if they’ve included an additional margin. If it’s the former, it signifies a sincere move towards privacy. So, I suspect it’s more likely the latter. 😉
TIL: #AWS #CloudFront Functions are a very light weight alternative to Lambda@Edge. So light, they don't even support the const keyword in their JS environment 😅
But very useful for URL rewrites/redirects, header manipulations, etc.

Hey folks, I have left Netlify and am beginning to look at what's next for me. Things I enjoy doing:
• building prototypes
• teaching
• writing, especially technical writing
• architectural synthesis (what should the system look like)
• organizational problem-solving (what should the org look like)
• analysis (what does the data say we should do)

I'm especially interested in companies doing interesting things with LLMs. If you think there's an opportunity I should hear about, let me know.

Mastodon's Mastodon'ts.

There are a few fundamentally broken things about how Mastodon posts work that are terrible vectors for abuse, as well as being bad for basic usability. Maybe they are fixable, I don't know. To be clear: I am a fan of Mastodon....
https://jwz.org/b/ykC_

Mastodon's Mastodon'ts

There are a few fundamentally broken things about how Mastodon posts work that are terrible vectors for abuse, as well as being bad for basic usability. Maybe they are fixable, I don't know. To be clear: I am a fan of Mastodon. I have been enjoying my time there much more than I ever enjoyed Twitter or Facebook or Instagram. And I am 100% in the "I won't touch anything Jack Dorsey has ...