HN user

pwaivers

534 karma

Software developer in the financial industry.

Posts5
Comments160
View on HN

Please read the rest of the article. It discusses how China could force TSMC to stop producing chips. It even covers the US foundry, and why it won't make a difference.

Thanks for this article, dolftax! I followed all the examples on my machine with no problem, and I learned some new stuff.

I have a question: how difficult is it to implement the ast? It seems like that the bulk of the work for this static code analysis.

What source do you have that Canada has disproportionate contributions, compared to the US? The Wikipedia page doesn't say that.

AirPods 7 years ago

I've never had latency issues while talking on the phone using my AirPods.

"After pulling a few strings to get into the Takaoka plant, you will see the Gordian knot become untied."

Um... the Gordian knot was not untied, but rather cut by a sword. It's supposed to be a bold, out-of-the-box solution to a seemingly impossible problem. I don't know if the author of the article chose the wrong word on purpose.

To be more elegant, you can remove the "dp" array. If you want to keep track of the full list, then you only need to keep track of "dpl". Here is code that I wrote and it works:

  n = 10
  denom = [1, 3, 4]
  dpl = [[] for i in range(n+1)]
  def f(n):
      if dpl[n]:
          return dpl[n]
  
      if n <= 0:
          return []

      ans = list(range(n))  # this is the max size possible
      for i in denom:
          if n-i >= 0:
              new = f(n-i) + [i]  # append i to the end of the array
              if len(new) <= len(ans):
                  ans = new

      dpl[n] = ans
      return ans

  if __name__ == "__main__":
      sol = f(n)
      print(sol)

"We found Spotify’s claims about Apple Watch especially surprising. When Spotify submitted their Apple Watch app in September 2018, we reviewed and approved it with the same process and speed with which we would any other app. In fact, the Spotify Watch app is currently the No. 1 app in the Watch Music category."

A) I don't see it on the watch store, and B) that is a long time to finally get on the watch store!

This is great. Thank you for posting.

What humans do you have tagging the images, after the AI portion? Are they the 13 employees you have now?

Do you think that you will need to focus on a couple of verticals, so that your AI will have more of an impact?

...and they are clearly profitable enough if they can buy Super Bowl airtime.

This is not a good reason to limit how much money an app developer makes. You want to make the play field fair, regardless if there are some companies making a lot of money.

Graying Out 7 years ago

I don't think the IM era is over. Now, there is Slack, Facebook Messenger, and Google Hangouts. These have some very cool features and you can easily set up a chat with all your friends.

Better yet, design your interview question to be missing important details. This will give candidates the opportunity to discover the need for these details when they get to them and ask for them at that time. If the candidate never asks questions, great! You just identified a serious red flag you would have been hard pressed to find otherwise.

This is just another way to ask trick questions. You are purposely leaving out important information. I don't think this is a bad thing, but it is stressful to answer these questions.

What are some traits shared by the best programmers you know? I'd wager things like introversion, thoughtfulness and detail orientation show up on your list.

I would not put introversion on that list. Great engineers can be either extroverted or introverted. It is irrelevant to quality of coding.

The famous books probably get rented more quickly.

They say in this article that public interest largely drives what the library buys. Even if you consider a book "trashy", it still may be very popular and culturally relevant.

Betteridge's law of headlines is an adage that states: "Any headline that ends in a question mark can be answered by the word no."

The article says that the "insect apocalypse" is not going to happen, despite pretty strong evidence of insect decline. So Betteridge's Law does hold here.