HackerTrans
TopNewTrendsCommentsPastAskShowJobs

adamsmith

no profile record

Submissions

The Four Styles of Confidence on a Team

adamsmith.cc
22 points·by adamsmith·11 maanden geleden·3 comments

comments

adamsmith
·8 maanden geleden·discuss
We have not announced anything formally RE fundraising, but we are well funded and growing the team quickly. All offers include competitive equity.
adamsmith
·11 maanden geleden·discuss
> it's always more worthwhile to debate and work with people who have to consistently match their predictions against reality

Yes! Fast, clear feedback loops provide such a boost!
adamsmith
·2 jaar geleden·discuss
If it’s helpful here is the prompt I use to clean up voice-memo transcripts: https://gist.github.com/adamsmith/2a22b08d3d4a11fb9fe06531ae...
adamsmith
·3 jaar geleden·discuss
For Python's syntax: https://docs.python.org/3/library/ast.html

If you want examples of code → ast, googling for [python ast visualizer] turns up a few tools
adamsmith
·3 jaar geleden·discuss
There’s a lot to unpack in the quoted passage, but it is not an ad hominem attack. That you think it is, and then turn around to make an ad hominem argument of your own explains your misinterpretation.
adamsmith
·3 jaar geleden·discuss
If anything this will turn out to be the opposite of the truth: People hit by autonomous cars will have more to go after in court than those hit by individuals, many of whom don't have adequate coverage or savings to compensate victims. The minimum "bodily harm" insurance coverage in California is only $15,000.
adamsmith
·3 jaar geleden·discuss
Ivan Sutherland wrote one of my all-time favorite pieces, called Technology and Courage. It's a short read, here: https://cseweb.ucsd.edu/~wgg/smli_ps-1.pdf

He talks about the courage it takes to do risky work in our field, and gives practical techniques for overcoming barriers, such as having collaborators, deadlines, "just get started", stock compensation, etc.

Dr Sutherland also discusses the courage to keep going, or even _stop_ working on a project.

Given his broad background, he discusses how these dynamics play out in a wide range of fields, including education, startups, and research.

For me it is always a visceral read.
adamsmith
·4 jaar geleden·discuss
Thank you Quinn! It's been both cool and instructive to see Sourcegraph take off. Godspeed!
adamsmith
·4 jaar geleden·discuss
It could be doing some "fine tuning" based on the repo. That would be cool! That said, what I meant when referring to 'understanding' the non-local nature of code was in a more principled way.

For example, if an object defined in another file has a function called `rename` that takes zero arguments, when calling it from another file Copilot will likely suggest arguments if there are variables like `old` and `new` near the cursor, even though `rename` actually doesn't take any, just because functions called `rename` typically take arguments. This behavior is in contrast to a tool like an IDE that can trace through the way non-local code references work.
adamsmith
·4 jaar geleden·discuss
Does it seem to only understand imports of public libraries? If so, it's likely that, rather than understanding the contents of those libraries, it's learning from others' use of those library APIs. If not, it is likely just understanding the words in the API at a shallow depth.
adamsmith
·4 jaar geleden·discuss
Yes, this was precisely what I was referring to. In small-enough programs (e.g. one file) Copilot has all the context. The other extreme would be something like the Chromium codebase. Because of this, Copilot looks better in quick demos than real-world use. (Though of course it is very impressive and this tech will get there, hopefully very soon!)