Frectonz
The only AI expert who still has his head on straight. https://youtu.be/5t1vTLU7s40
YouTube
Transfer learning proves LLMs arenβt stochastic parrots β Trenton Bricken & Sholto Douglas
Full episode out this Thursday.
Website: https://www.dwarkeshpatel.com/
Apple Podcasts: http://apple.co/3RFuS7b
Spotify: http://spoti.fi/3APeQ3L
Follow me on Twitter: https://twitter.com/dwarkesh_sp
Website: https://www.dwarkeshpatel.com/
Apple Podcasts: http://apple.co/3RFuS7b
Spotify: http://spoti.fi/3APeQ3L
Follow me on Twitter: https://twitter.com/dwarkesh_sp
Frectonz
Has anyone forked the golang compiler to add sugar for error nil checks if err != nil { return nil, err } I think this would be a good syntax sugar for it, through a new keyword try err
trying to add try but they use the word try in the go standard library, this will be a dirty hack
π1
Frectonz
trying to add try but they use the word try in the go standard library, this will be a dirty hack
search and replace ππ
Frectonz
Has anyone forked the golang compiler to add sugar for error nil checks if err != nil { return nil, err } I think this would be a good syntax sugar for it, through a new keyword try err
making good progress, this thing might actually work
π3
Frectonz
making good progress, this thing might actually work
well that was a doozy, doing the type check was difficult but finally figured it out, next step, rewriting the ast
The only people that should work on open source software are people who have been hired at a FAANG and want to do something a little bit better than changing the color of a button.
π5
Cool website to check which HTML elements or CSS declarations you can include in an email.
https://www.caniemail.com/
https://www.caniemail.com/
Caniemail
Can I emailβ¦
Support tables for HTML and CSS in emails
π2
I also don't use github copilot, here is why
1. I don't use vscode don't want to set it up in neovim.
2. It flat out gave me wrong suggestions like for elm, ocaml and nix.
3. I observed that when i was doing some obvious repetitive code, i would write out a couple of words and wait for copilot to finish it and that was annoying.
4. Copilot seemed more and more like a way to type faster than a way to actually solve problems.
5. And the main reason i stopped, it 100% impedes you from entering the flow state, and i am addicted to the flow state.
If i want help with something i just ask chatgpt.
1. I don't use vscode don't want to set it up in neovim.
2. It flat out gave me wrong suggestions like for elm, ocaml and nix.
3. I observed that when i was doing some obvious repetitive code, i would write out a couple of words and wait for copilot to finish it and that was annoying.
4. Copilot seemed more and more like a way to type faster than a way to actually solve problems.
5. And the main reason i stopped, it 100% impedes you from entering the flow state, and i am addicted to the flow state.
If i want help with something i just ask chatgpt.
π8
This media is not supported in your browser
VIEW IN TELEGRAM
old meme but still funny
Frectonz
well that was a doozy, doing the type check was difficult but finally figured it out, next step, rewriting the ast
So apparently the go compiler does type checking twice, it first type checks the parsed syntax tree then it also type checks the AST.