Viewing profile — mont_tag
mont_tag
HN member- Joined
- Thu, Aug 08, 2024, 2:09 AM UTC
- HN karma
- 269
- Public activity
- 63 items
- HN profile
- View on Hacker News ↗
About mont_tag
No profile information was provided.
Recent public activity
-
comment
Comment #48436318
Knight Capital
-
comment
Comment #48339399
> Why? While it seems obvious that some students should be redirected to remedial classes, the evidence is that very few students made it past those courses. IOW, the obvious solut…
-
comment
Comment #48339316
You've done a nice job articulating why people support equity programs. The sticking point is that there is a big difference between theory and practice. We end up with elimination…
-
comment
Comment #47629377
That sounds like what happened at Boeing.
- comment
-
comment
Comment #47576840
If the service is free, you are the product :-)
-
comment
Comment #46239857
Note that Python already offers MappingProxy that wraps a dictionary to hide mutating methods. People hardly ever use this tool. That suggests that there isn't much of a need for a…
-
comment
Comment #46006029
All good suggestions. However, the last one should have also mentioned functools.cache and functools.lru_cache.
-
comment
Comment #45791032
Do you want to take advantage of having multiple cores? * Processes do this right out of the box. * Threads only do this on Python's new GIL builds. * Async, not so much.
-
comment
Comment #45060450
History of women in the Python world: In 2006, the first two women were voted in as PSF fellows, Laura Creighton and Anna Martelli Ravenscroft. In 2008, there were two women on the…
-
comment
Comment #44895184
Crypto did pretty well during that timeframe. Likely, they didn't pivot hard enough to offset losses to the core business.
-
comment
Comment #44793901
Python's key-functions nicely encapsulate the whole process.
-
comment
Comment #44789429
One place where Visual development tools almost always win is in problem domains that are intrinsically visual (think CAD, form designers, etc)
-
comment
Comment #44789403
A notable exception is MS Access. It was a huge productivity win. It did not work well with version control but otherwise, it let developers rapidly develop and maintain moderate s…
-
comment
Comment #44735920
No, that is not the recommendation. People routinely and reliably inherit from dict. The UserDict class is mostly defunct and is only still in the standard library because there we…
-
comment
Comment #44677004
> IMO it's not the recording of ideas that is thinking, but rather the act of putting thoughts into language. I agree with you but that article itself says, "for example, handwriti…
-
comment
Comment #44620865
Also shift in organizational investment away toward AI and away from earlier hotness.
-
comment
Comment #44372062
Grace Hopper technology: A well formed Python program shall define an ENVIRONMENT division that specifies the environment in which the program will be compiled and executed. It out…
-
comment
Comment #44294520
> Scientists genetically engineer a lethal mosquito STD to combat malaria Nothing could possibly go wrong.
-
comment
Comment #43859392
This makes me happy. It was such an obvious right thing to do, but it took so long to come to fruition. Next, it would be great if published standards were freely available. It is …
-
comment
Comment #43755606
No, it would fail upstream before the template post-processing even begin. The template object itself could not be formed because the each name must be a visible variable name. Thi…
-
comment
Comment #43753538
How does this Python docs example work with t-strings? cur.executemany("INSERT INTO movie VALUES(?, ?, ?)", data) Can SQLite3 cache the query as it does now?
-
comment
Comment #43682599
ISTM software engineers have been living in a privileged and elite world. They are then utterly shocked to be treated like employees are treated elsewhere. Pretty much anywhere if …
-
comment
Comment #43539769
> Even the JS standard library struggles with this. You just have to remember that .sort() modifies the array in place ISTM that there are almost always some kinds of mutable data …
-
comment
Comment #43539674
Interestingly, I encountered exactly this issue this week. It was mystifying for a short while but easily hunted down. Perhaps lint tools would have been of help.