Skip to content

Instantly share code, notes, and snippets.

View pthom's full-sized avatar

Pascal Thomet pthom

View GitHub Profile
@adnanelhb
adnanelhb / Sam-Altman-Fireside-StationFParis.md
Last active June 17, 2023 16:45
A conversation with OpenAI's CEO Sam Altman - Hosted by Station F (Paris) - Verbatim

A conversation with OpenAI's CEO Sam Altman - Hosted by Station F (Paris) - Verbatim

Sam Altman at Station F - 26 May 2023
Sam Altman at Station F - 26 May 2023 - Image source: the author

I was privileged to attend a Fireside chat with Sam Altman, OpenAI’s CEO, on May 26 at Station F in Paris. This conversation was moderated by Roxanne Varza, the Director of Station F. For those unable to attend, I've compiled a selection of verbatim questions from the session in an easy-to-navigate format.

While Sam Altman’s European tour is covered in the press, I think it can be interesting to present the 'raw' conversations on these topics that can clearly be of public interest. Some headlines may give the impression that Altman's positions are inconsistent. But, actually listening to Altman, whether or not you agree with all his views (I don't), it is clear he’s not just spouting nonsense wherever he goes

@creative-quant
creative-quant / str_const.h
Created April 14, 2016 12:00
str_const from Scott Schurr - 2012.cppnow.org -> schurr_cpp11_tools_for_class_authors.pdf
class str_const { // constexpr string
private:
const char* const p_;
const std::size_t sz_;
public:
template<std::size_t N>
constexpr str_const(const char (&a)[N]) : // ctor
p_(a), sz_(N - 1) {
}
constexpr char operator[](std::size_t n) { // []