logo FEDIDEVS POSTS

Frameworks, Libraries, and others

So Jack left BlueSky and Biz is helping steer Mastodon? :popcorn:

3 0 0
Sensitive content : Disgusting - mosquito bite

@TheBreadmonkey I’d head to the pharmacy in the morning and ask for advice. I got stung by a hornet in my youth and the bite did something similar and required some antibiotics.

3 0 1

@p4 @Pajo_16 @nixCraft well they have integrated AI, but more on action. Most of the time you will have to trigger an AI feature yourself. Also, they have an assistant where you can choose the models you want to use (APIs are more anonymous) and the answers will have sources from their index which is the best of both worlds IMHO.

3 0 0

@Pajo_16 @nixCraft I can recommend the search engine . They have a different index, one can put a weight on specific domains and they have a project called small web to randomly find those gems.

3 0 1

A bit surprised about type checking for object literals assigned to a typed variable.

type Foo = { a: number }
const foo: Foo = { a: 1, extra: 2 }

The above const declaration will fail because "extra" is not present on Foo. However, the following will work.

const foo1 = { a: 1, extra: 2 }
const foo2: Foo = foo1

I expected this second behavior. But I am a bit surprised that it enforced the type more strictly when assigning an object literal.

2 0 1

"Behandle deine geringwertigen Güter mit Sorgfalt und Weisheit, denn sie sind Teil deiner Verantwortung und können anderen von Nutzen sein." Finanzikus, 06:05.

2 0 0