Viewing profile — cixinlui
cixinlui
HN member- Joined
- Thu, Apr 08, 2021, 9:00 AM UTC
- HN karma
- 23
- Public activity
- 11 items
- HN profile
- View on Hacker News ↗
About cixinlui
No profile information was provided.
Recent public activity
-
comment
Comment #26751759
Do you think that the alternatives failed because they weren't 'spot on'? Perhaps they failed because it's a much harder problem than they recognized when they started out.
-
comment
Comment #26748284
I don't think it is correct that "they don't have the choice". Reliance on EUDAs in Excel is a well telegraphed problem for literally decades. There have been lots of attempts to s…
-
comment
Comment #26748133
If you think that there is 'no good reason' why excel users couldn't pick up some coding, and 'no good reason' why developers shouldn't make business reports, you should think abou…
-
comment
Comment #26739584
I didn't say it was a silver bullet... I said "Don't Use setup.py".
-
comment
Comment #26738368
The thing is that using setuptools is neither standard nor Pythonic. It isn't part of the standard library. It's a way of doing things that is broken, and has been specifically cal…
-
comment
Comment #26738158
Because of PEP 518.
-
comment
Comment #26736744
How does setuptools not count as a dependency? If you've never run into setuptools compatibility problems, you've either been much luckier than me, or you haven't done much with Py…
-
comment
Comment #26736707
72MB? On a development machine? Are you on dialup? Poetry doesn't fragment the ecosystem. Unlike setuptools it uses pyproject.toml, which can be read by other tools, and is the cor…
-
comment
Comment #26736682
I don't recognize this. I use poetry all the time, without setup.py and the local installs are editable. I have published half a dozen packages which don't have a setup.py and they…
-
comment
Comment #26736665
I know Python much better than I do rust or node, but I think the Python design decision was decent here: you can use different tools, but all of them should put the configuration …
-
comment
Comment #26736636
This is bad advice. Do not create a setup.py for a new package. (Keeping setup.py for an old package can be okay.) The author is correct that you want a tool such as flit or poetry…