Why Silicon Valley Wouldn't Work Without Immigrants
nytimes.com58 pointsby minznerjosh0 comments
var $timeout = $window.setTimeout;
return $timeout;
}) // $timeout is a function, not an normal object. Why would I use a constructor
//function to provide it?
}); var foo = {};
return foo;
}); this.$get = function() {
var foo = {};
return foo;
};
}); this.bar = 'bar';
}); function Foo() {
this.bar = 'bar';
}
return new Foo();
}); this.$get = function() {
function Foo() {
this.bar = 'bar';
}
return new Foo();
}
});
What’s being released here is really just proper MCP support in ChatGPT (like Claude has had for ages now) though their instructions regarding needing to specific about which tools to use make me wonder how effective it will be compared to Claude. I assume it’s hidden behind “Developer Mode” to discourage the average ChatGPT user from using it given the risks around giving an LLM read/write access to potentially sensitive data.