This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
My query: | |
Thoughts on conversation? | |
@xylemic do iq tests test intelligence or mental fatigue? (or does it accidentally test mental fatigue? how many people are just selecting random options after the first n questions?) | |
@alephile Either way this ends up meaning this is what intelligence is: can you endure problem solving sprints? | |
@xylemic is that what intelligence is? can a stupid person not endure problem solving sprints? (ie, working at 100% mental capacity to get all problems wrong, without ever breaking a sweat?) | |
--------- | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function invokeFetch(context) { | |
console.log(context) | |
const { documentUrl } = context; | |
return await fetch(`https://google.com`) | |
} | |
const DocMachine = Machine({ | |
id: 'doc-chat', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let company = { // the same object, compressed for brevity | |
sales: [{name: 'John', salary: 1000}, {name: 'Alice', salary: 1600 }], | |
development: { | |
sites: [{name: 'Peter', salary: 2000}, {name: 'Alex', salary: 1800 }], | |
internals: [{name: 'Jack', salary: 1300}] |