Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
dianeb
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
dianeb
2y ago
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 you are required to use because someone who should
2.
▲
by
dianeb
2y ago
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 actually wanders around the room during t
3.
▲
by
dianeb
3y ago
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.
4.
▲
by
dianeb
3y ago
@dang, the "comments" (other than this one) are all from a bot.
5.
▲
by
dianeb
3y ago
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 scope? an array? something e
6.
▲
by
dianeb
3y ago
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 regress of technology is possibly valid. Today's world&#
7.
▲
by
dianeb
3y ago
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 compilers.) My memories of a language with that name
8.
▲
by
dianeb
3y ago
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 to show them why the code/service in question is
9.
▲
by
dianeb
3y ago
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 something to run apps in the browser. I wonder if WASM wou
10.
▲
by
dianeb
3y ago
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 something like _Lord_Peter_Wimsey_ that aired on PBS that may
11.
▲
Artificial Intelligence Not Sentient – Yet
(upi.com)
1 points
by
dianeb
4y ago
|
0 comments
12.
▲
by
dianeb
4y ago
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 appropriate physicians can be daunting because of high
13.
▲
by
dianeb
4y ago
There is nothing useful here. Don't waste your time.
14.
▲
by
dianeb
4y ago
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 you wish to solve and how it fits within an organization. Th
15.
▲
by
dianeb
4y ago
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 examples all tend to be of the form: UnbelievablyLongClass
16.
▲
by
dianeb
4y ago
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, even if it's still called "Whatever OS",
17.
▲
by
dianeb
7y ago
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 you are conflating rigor with substance.
18.
▲
by
dianeb
8y ago
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++ that are not the same. I would claim that C++ is re
19.
▲
by
dianeb
8y ago
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 MacBook Pro 2017 with a 2.8 GHz Intel Core i7. So, is t
20.
▲
by
dianeb
8y ago
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" weren't bugs but "features"
21.
▲
by
dianeb
8y ago
This is Intel's 80-bit floating point. The reason the size is 128 is that it needs to align on a word boundary.