Viewing profile — kotlin2
kotlin2
HN member- Joined
- Wed, Oct 12, 2022, 3:21 AM UTC
- HN karma
- 231
- Public activity
- 109 items
- HN profile
- View on Hacker News ↗
About kotlin2
No profile information was provided.
Recent public activity
-
comment
Comment #33401586
Digital ocean doesn't charge traffic costs. I'm not sure if that was used in the article, but DO can provide significant savings for high-bandwidth services.
-
comment
Comment #33400892
People, even those at other big tech companies, unironically refer to working at Google as "retiring." Not sure 'big tech' is a great example to use when talking about productivity…
-
comment
Comment #33400840
Is there hard data on how deadly they are vs. other auto manufacturers? There is definitely a narrative that the cars are dangerous, but I'd like to see that quantified.
-
comment
Comment #33386934
You can also use green hydrogen in place of blue hydrogen, e.g. when making ammonia.
-
comment
Comment #33385924
I think LoC has been determined to be a bad productivity metric because it’s gameable and incentivizes bad behavior. However, that doesn’t apply here as the engineers didn’t know t…
-
comment
Comment #33383832
A world where your cash is held in British pounds? Why do you accept forex fluctuations but not security fluctuations?
-
comment
Comment #33383755
I’ve worked in big companies and I’ve worked in small companies. The one constant has been that writing code is required to make product changes. No code likely means no changes. M…
-
comment
Comment #33381375
Judging the sizes of the stacked pages from the last 60 days of code would probably be a pretty good indication of productivity. Perfect? No. Good enough? Maybe.
-
comment
Comment #33381106
Equity in Meta is liquid net worth, unless you're a materially important share holder. The stocks you hold right now can be converted into cash easy at any point in time. In what w…
-
comment
Comment #33381091
Large public companies aren't innovators. Innovations requires risk. Meta is a huge part of retirement portfolios and pensions, which are extremely risk averse. There is an expecta…
-
comment
Comment #33380276
Companies are valued based on future cash flows. A stable company typically has a P/E ratio of 20. Meta’s is around 10, which is an indication the market believes profits will cut …
-
comment
Comment #33380080
That seems really inconvenient to be honest.
-
comment
Comment #33374581
I don’t think it’s valid to use “only” with “e.g”. “e.g” means it’s an example, which implies the existence of other cases that satisfy the criteria. “Only” implies some uniqueness…
-
comment
Comment #33372190
Why not try to service it yourself? It could be fun to take it apart and reassemble it.
-
comment
Comment #33360223
I think the backups end up stored in a GCS bucket in your account and can be removed manually or with an object lifecycle.
-
comment
Comment #33358974
What languages allow such a construct? It seems like it would be super confusing if these two code samples produced different values: # One a = d["a"]["b"]["c"] # Two a = d["a"]["b…
-
comment
Comment #33358257
Ok, but what about the other 95% of emissions. We could just ignore what Russia does and still make a big impact.
-
comment
Comment #33357795
If d["a"]["b"] is 42, then how could d["a"]["b"]["c"] also be 42? What you want doesn't make sense semantically. Normally, we'd expect these two statements to be equivalent d["a"][…
-
comment
Comment #33357710
c = defaultdict(lambda: 42) b = defaultdict(lambda: c) a = defaultdict(lambda: b) a["a"]["b"]["c"] # --> 42
-
comment
Comment #33357459
Now do an associative array containing another associative array.
-
comment
Comment #33345807
I mean what was the difference between your outstanding mortgage principal and the value of the homes at the time of default?
-
comment
Comment #33345447
How much did you owe after the properties were sold?
-
comment
Comment #33344855
In most states, lenders have recourse. So if you stop paying your mortgage, the bank will foreclose on your home and then come after your other assets to make up the difference in …
-
comment
Comment #33338955
You could delist yourself from the phone book.
-
comment
Comment #33335990
Exactly. So your claim that: > So you can remove the ones that do not halt by inspecting them one by one and developing a specific algorithm for each one that determines if it halt…