Viewing profile — uranusjr
uranusjr
HN member- Joined
- Fri, Oct 11, 2013, 2:56 AM UTC
- HN karma
- 829
- Public activity
- 363 items
- HN profile
- View on Hacker News ↗
About uranusjr
No profile information was provided.
Recent public activity
-
comment
Comment #39379941
In the OG RFC 2396, each _path segment_ can specify parameters similar to query parameters, but using a semicolon to separate them to the main segment value instead of question mar…
-
comment
Comment #38866371
This happened just last year IIRC in Korea. Nothing was in serious danger (except maybe some travel schedules). A comment already described the mechanism and why that’s not really …
-
comment
Comment #38595952
Because merging into main better exposes the proposal to a more diverse crowd and attracts needed feedback. Especially when you’re managing multiple proposed features, it’s not via…
-
comment
Comment #38456007
Forwarding itself is trivial, just ~5 lines in __getattr__. The difficulty comes when you need to type check the thing. Fixing that would require some special treatment on the type…
-
comment
Comment #38410539
They offer educational content. From limited consumption I would not rate it as high quality. More like acceptable I guess.
-
comment
Comment #37999583
> The few people who do need it every day can probably work it out for themselves. People are much less sensitive to their own body odor than you may assume. Please default to taki…
-
comment
Comment #37853855
I don’t know the exact history, but the rest of the metric system is designed with a base unit and decimal derivatives. Assuming we want to keep the day length consistent (I can’t …
-
comment
Comment #37795616
I think the parent’s logic is the other way around: the rule of law isn’t overwhelmingly relevant in China, so it’s no surprise the VPN law isn’t enforced. You may want to contend …
-
comment
Comment #37723038
I’m pretty sure they started put as the exact numbers and were just shortened eventually for convenience. This kind of compound word shortening happens all the time in all language…
-
comment
Comment #37677658
I have this done to me a lot and honestly don’t feel a thing. People don’t really care about other people’s coding styles anyway (except they all suck); the thing got done, everyon…
- story
-
comment
Comment #37661391
Side note, but do you mean it reeks of a witch hunt? (Just making sure.)
-
comment
Comment #37616877
I’m really unsure about the Chinese milk scandal analogy. While the Vioxx incident is definitely terrible on its own and may indicate the US government and merchants do not take en…
-
comment
Comment #37608639
I believe it’s more like half of the Japanese gairaigo (Chinese excluded) come from English, not half of the entirety of Japanese.
-
comment
Comment #37530814
Welcome to the Python community, where type highlighting is a first class syntax feature, but actually checking it is optional (unlike the TypeScript compiler), and you get people …
-
comment
Comment #37481981
I’m glad he decided to invent an English Literature correspondent to pick on, and also the 1990s was a better society than one that votes to poison a disliked person.
-
comment
Comment #37462213
Technically the string return type is just a shorthand, IIRC render_template returns a Response object that sets Content-Type and other things appropriately. But yeah it’s pretty t…
-
comment
Comment #37461743
I used to mainly develop in C++ and implicit this was so frustrating. Nowadays it’s mostly Python and the explicit self is simply not an issue. (I also worked on Objective-C code a…
-
comment
Comment #37432823
There are multiple factors and I’m not sure what the exact cause is either. The relative difficulty to build a playable bot is one. A Go game being relatively long and taxing may b…
-
comment
Comment #37423562
> ERNIE’s opinions are surprising, to say the least. It believes the best American president is Richard Nixon To an American. Nixon was the first ever president to visit the Commun…
-
comment
Comment #37260622
The practice used to be prevalent throughout the Sinosphere but felt out of favour a bit in recent years.
-
comment
Comment #37257977
I’m not objecting to what you say. The latter part of my comment is simply considering cases where you only want to replace a part of the function (the author have some examples on…
-
comment
Comment #37255116
There are examples of decorators having no runtime effects, such as typing.overload. Bit comments are probably more flexible here since it allows arbitrary blocks, not just functio…
-
comment
Comment #37158270
With modern caching don’t you also only download the web app once as well? I feel the reason web is worse is more because the download happens right before you want to use it, not …
-
comment
Comment #37119302
Python also has the DBAPI specification, which defines what interface a library must support to be considered a database driver. The author claiming Go’s sql package encourages wri…