Viewing profile — dianeb
dianeb
HN member- Joined
- Thu, Sep 27, 2018, 4:29 PM UTC
- HN karma
- 32
- Public activity
- 21 items
- HN profile
- View on Hacker News ↗
About dianeb
No profile information was provided.
Recent public activity
-
comment
Comment #41451675
Define what you mean by "everyone" -- there are times where the cost of immutability can be overwhelming, such as in high traffic systems with overly complex data structures which …
-
comment
Comment #41451597
It's really difficult to plagiarize if you write the paper or take the exam in class using paper and pen-or-pencil. It's also difficult to plagiarize if the teacher/professor/TA ac…
-
comment
Comment #38917126
I made a mistake. I'd like to blame it on my new mouse, but it was me. Thank you for pointing it. I regret the error and shan't make it again.
-
comment
Comment #38915815
@dang, the "comments" (other than this one) are all from a bot.
-
comment
Comment #38766376
This construct: string longestLine = [ argmax(line.strip.length) line for line in text.split("\n")]; print(longestLine); looks problematic to me -- are the brackets indicating scop…
-
comment
Comment #38766166
As interesting as this article is as a comparison to a 40 year old supercomputer, the reality is that computers really are artifacts of an era and their place in the progress or re…
-
comment
Comment #38766046
Once upon a time, NCR's mainframe language was called Neat (the version I briefly used was called Neat/3 which was a low-to-mid-level language if memory serves. I was writing compi…
-
comment
Comment #36452377
Actually, it's also the job of lead or senior engineers who have to teach their experienced and educated teammates how to read and write a state diagram and how to use it in order …
-
comment
Comment #35471217
Sure, this fits the way software evolves on the circle of dumb. It goes something like this: What a great idea!... (a little later) Hmmm. That's a problem... (later) We need someth…
-
comment
Comment #35471012
For those who prefer reading books, there's always the precursor: _The_Nine_Tailors_ by Dorothy L Sayers. If you can find it, I believe there was a program or series called somethi…
- story
-
comment
Comment #35145156
MedicareAdvantage is one of those things where people say, "Oh. It's Medicare and it has all this extra stuff!" because living on basic Medicare is expensive and finding appropriat…
-
comment
Comment #35144783
There is nothing useful here. Don't waste your time.
-
comment
Comment #33025428
Yes architecture is important. Yes, there are various software models that may fit in the general case. Seeing this short list is semi-useful, but the key is knowing the problem yo…
-
comment
Comment #33025061
Alas, the language is incredibly verbose in and of itself and the plethora of examples continue to be incredibly verbose. From _Java in a Nutshell_ to the latest documentation, the…
-
comment
Comment #32359217
In C, you get what you pay for. When the platform changes, it's not unreasonable to recompile in order to take advantage of new hardware features. The OS is certainly different, ev…
-
comment
Comment #19598626
Generalizations are such fun; when you say, "The intellectual rigor just isn't there in any humanities classes because most of the students shouldn't be in college at all" I think …
-
comment
Comment #19257156
Well, "better" is a loaded word, and you need to remember that C++ is not a superset of C. The two languages intersect in a fairly large subset of C, but there are parts of C++ tha…
-
comment
Comment #19247529
Somewhat surprisingly, clang 10's long double on a mac is implemented with 64 mantissa digits (bits) (LDBL_MANT_DIG = 64) so the information as presented is correct for clang on a …
-
comment
Comment #19240325
I wrote C compilers for several large companies in the 80's and 90's. Everyone in a compiler group had something like this if for no other reason than to demonstrate why "bugs" wer…
-
comment
Comment #19240137
This is Intel's 80-bit floating point. The reason the size is 128 is that it needs to align on a word boundary.