Viewing profile — mcdoker18
mcdoker18
HN member- Joined
- Thu, Mar 05, 2020, 7:53 PM UTC
- HN karma
- 9
- Public activity
- 9 items
- HN profile
- View on Hacker News ↗
About mcdoker18
No profile information was provided.
Recent public activity
-
comment
Comment #25837135
Interesting, how many there are such 3rd party's products that AWS offers as a service? Who will be the next for license changing, Redis?
-
comment
Comment #25813902
The most significant value of Jetbrain IDEs is that all programming languages have good support. I switched between Java, Python, JS, Typescript, C, Golang, and so on regularly. Fo…
-
comment
Comment #25810509
Good advice! A small addition in the third point: you can create a separate interface for HTTP errors, for example: type HTTPError interface { GetHTTPCode() int } func ServeHTTP(w …
-
comment
Comment #25810405
I prefer the same approach, but I'd create a separated struct, such as TaskFilter, and using a pointer because zero ID or empty tag can be valid values.
-
comment
Comment #25805086
As BE, I was surprised how many FE developers use PWA. I need to take a look at this technology. By the way, I am happy that the usage of typescript increases over time.
-
comment
Comment #25802933
I wonder why no one has not mentioned tests. For me, the tests are more valuable for system or service understanding than, for example, documentation. But the best scenario when yo…
-
comment
Comment #22512723
Only Azure doesn’t charge for the k8s control plane, that is the most surprising thing for me.
-
comment
Comment #22512651
I know that it's a valid expression, but are there any use cases for it?
-
comment
Comment #22497923
Can someone explain the meaning to use 'x == NULL' expression? Why does not PostgreSQL prohibit usage of this expression?