Skip to content

Instantly share code, notes, and snippets.

View vunderkind's full-sized avatar
🤖
Becoming turing-complete

mogwai. vunderkind

🤖
Becoming turing-complete
View GitHub Profile
@vunderkind
vunderkind / gist:ae0096b8391b5cb9337847a72d288db0
Last active September 16, 2024 10:58
Notes from OpenAI's o1 model on endurance as an attribute of intelligence
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?)
---------
@vunderkind
vunderkind / machine.js
Last active June 30, 2023 20:02
Generated by XState Viz: https://xstate.js.org/viz
async function invokeFetch(context) {
console.log(context)
const { documentUrl } = context;
return await fetch(`https://google.com`)
}
const DocMachine = Machine({
id: 'doc-chat',
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}]