Preferences

knlam
Joined 173 karma

  1. The best one is google ADK, I must say they are quite thoughful of all the use cases
  2. 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
  3. 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
  4. Thank you, such a good episode. I adore bluey writing
  5. Copilot is just plain bad. The result is day and night compare with cursor + gemini 2.5 (of course with good prompting)
  6. 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...

  7. In the other thread, HN said Israel can only pull this trick only once and they just did it the second time
  8. 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
    
        ...
    
      }
    
    ```
  9. 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

    [0] https://1pay.network

  10. Now as a frontend developer I understand how folks complain the frontend landscape change so fast that it is impossible to keep up
  11. Love this! You just need to add auto evaluate code and done
  12. This is something crypto can solve. There I said it
  13. 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

  14. 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
  15. It 's aggressive passive
  16. I will save this comment whenever someone defend the apple wallgarden
  17. They improve a lot in the last 2 years, give it another try. The experience nowadays is pretty pleasant compare the plain RN project

This user hasn’t submitted anything.