I'm not sure about you, but "mostly deterministic" is not the same as "deterministic."
9/9
I'm not sure about you, but "mostly deterministic" is not the same as "deterministic."
9/9
OpenAI's documentation tells us that we can expect "(mostly) deterministic outputs across API calls."
8/9
OpenAI's documentation tells us that we can expect "(mostly) deterministic outputs across API calls."
8/9
He was an engineer and thought the model was sentient.
Imagine what will happen when 99.99% of the world population uses one of these models for the first time.
He was an engineer and thought the model was sentient.
Imagine what will happen when 99.99% of the world population uses one of these models for the first time.
These are two of my all-time favorite Software Engineering books:
1. The Pragmatic Programmer
2. Clean Code
Read them in 2025. They will pay off for years to come.
These are two of my all-time favorite Software Engineering books:
1. The Pragmatic Programmer
2. Clean Code
Read them in 2025. They will pay off for years to come.
It's free.
Gilbert Strang is one of those generational professors. The type of person that will leave a positive mark on you.
ocw.mit.edu/courses/18-...
It's free.
Gilbert Strang is one of those generational professors. The type of person that will leave a positive mark on you.
ocw.mit.edu/courses/18-...
François Chollet about the just released OpenAI o3 model.
François Chollet about the just released OpenAI o3 model.
Works for free and pro users.
This option is enabled by default.
(You'll find this in your Copilot settings.)
Works for free and pro users.
This option is enabled by default.
(You'll find this in your Copilot settings.)
The good stuff keeps getting better!
Take 5 minutes and look into uv. I'm willing to bet you'll like it a lot.
The good stuff keeps getting better!
Take 5 minutes and look into uv. I'm willing to bet you'll like it a lot.
Start using an automatic formatting tool that's opinionated.
I haven't found one tool for Python that's better than black. It's fast, and I love the way it formats my code.
Start using an automatic formatting tool that's opinionated.
I haven't found one tool for Python that's better than black. It's fast, and I love the way it formats my code.
We are still far, far away from finding product-market-fit for all of the recent AI progress we've made.
Talk to people outside your online bubble:
99% of AI applications still use boosted trees and convolutional neural networks.
We are still far, far away from finding product-market-fit for all of the recent AI progress we've made.
Talk to people outside your online bubble:
99% of AI applications still use boosted trees and convolutional neural networks.
(h/t to @forrestbrazeal)
(h/t to @forrestbrazeal)
I understand they look weird for people new to the language, but they are Pythonic and everyone uses them.
Attached you'll see two examples. The second one is the way to go.
I understand they look weird for people new to the language, but they are Pythonic and everyone uses them.
Attached you'll see two examples. The second one is the way to go.
Your code must be self-explanatory. Comments are a crutch in many ways. They are hard to maintain, go out of sync easily, and often offer redundant information.
1/3
Your code must be self-explanatory. Comments are a crutch in many ways. They are hard to maintain, go out of sync easily, and often offer redundant information.
1/3
I can now ask ChatGPT to review the answers.
It took me 10 minutes before. It now takes me 10 seconds.
I can now ask ChatGPT to review the answers.
It took me 10 minutes before. It now takes me 10 seconds.
`dir` returns everything that's available from an object/library.
Super convenient when you don't know what exactly you can do with the result of a function, or don't remember the name of a specific property.
`dir` returns everything that's available from an object/library.
Super convenient when you don't know what exactly you can do with the result of a function, or don't remember the name of a specific property.
Start using semantic search in addition to your regular full-text searches.
This is a PostgreSQL query using OpenAI's embeddings to find relevant articles.
Results are magic.
Start using semantic search in addition to your regular full-text searches.
This is a PostgreSQL query using OpenAI's embeddings to find relevant articles.
Results are magic.
Same network structure. Different activation function.
ReLU introduces the non-linearity we need for the network to become much more powerful.
6/7
Same network structure. Different activation function.
ReLU introduces the non-linearity we need for the network to become much more powerful.
6/7
Look at the output here: it's all messed up.
We can't solve this problem with a single line, so we need to configure this network to find non-linear solutions.
5/7
Look at the output here: it's all messed up.
We can't solve this problem with a single line, so we need to configure this network to find non-linear solutions.
5/7