19
points
knlam
Joined 173 karma
- knlamThe best one is google ADK, I must say they are quite thoughful of all the use cases
- You want to use multiple providers, so if I am not happy with result from gpt, I can switch to perplexity or something else. The power of plug and play is very powerful when you are building agent/subagent systems
- Opening the essay with ~~Learning how to use LLMs in a coding workflow is trivial.~~ and closing with suggestion ~~ Copilot ~~ for AI agent is the worst take of LLM coding I ever saw
- Thank you, such a good episode. I adore bluey writing
- Copilot is just plain bad. The result is day and night compare with cursor + gemini 2.5 (of course with good prompting)
- Actually you can via private API, which Apple app use all the time but forbid other app to use
https://blog.verichains.io/p/technical-analysis-improper-use...
- In the other thread, HN said Israel can only pull this trick only once and they just did it the second time
- Working with GraphQL over 6 years, I have seen (and created) many mistakes mentioned in the article. GraphQL is not great but it has worked well for me, you just need to adapt & change mindset to create better interface for your graphQL endpoint.
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 love crypto. I even built an SDK to make crypto payment easy [0] However, KYC is there for a reason. Personally, I don't touch any crypto on/offramp service without proper KYC
- Now as a frontend developer I understand how folks complain the frontend landscape change so fast that it is impossible to keep up
- Love this! You just need to add auto evaluate code and done
- This is something crypto can solve. There I said it
- Typo is my bad. Thanks for pointing it out!
Regardless, there are callback and analytic, webhooks are being considered without compromising user identity. Sure, there are a lot of things to do
- 12 points
- At least in the case of Bernie Madoff, the SEC can say "no, it is illegal to run a ponzi scheme and in this case it should say what law the exchange broke to make it valid
- It 's aggressive passive
- I will save this comment whenever someone defend the apple wallgarden
- They improve a lot in the last 2 years, give it another try. The experience nowadays is pretty pleasant compare the plain RN project
- 1 point