For any adults who have either never heard of Bluey, or never thought of watching a “kids” show, maybe try to an episode the next time you can’t figure out what to stream next. “Sleepy time” (season 2 episode 26) is one of the most renown, but they’re all pretty good! (https://www.bluey.tv/watch/season-2/sleepytime/)
To clarify my questions: - Who here uses LLMs to generate code for bigger projects at work? (>= 20k lines of code) - If you use LLMs for bigger projects: Do you need to change your prompting strategy to get good results? - What programming languages are you using in your code bases? - Are there other people here who experience that LLMs are no help for non trivial problems?
On Android phones. iPhone doesn’t have this privacy deficiency.
https://blog.verichains.io/p/technical-analysis-improper-use...
For example, having nested queries more than 2 levels is a no go for me (just like having nested inheritance is basically anti pattern)
Focus more on your interface. One way to avoid N+1 and nested query is to required parameter for related fields. For example
```
user(id: $userId) { {
id
friends {
id
...
}
```to
```
user(id: $userId) {
id
friends(id: $userId) {
id
...
}
```I went to a popular VN crypto website, put in their name and bank account number and how much I wanted to send them (and on what crypto network and token, as they support a bunch of them). The site spit out an address to send the tokens to with my wallet.
The transaction cost me $0.05, the conversion rates were totally fair and actually quite good, it only took a couple hours, and as an added bonus, didn't even require any sort of KYC because it was just a small amount of money.
For those of you dumping on crypto, I can tell you that it doesn't get any easier than that. There is no way that I can do something like that otherwise. We need more of this, not less.