8 Matching Annotations
- May 2022
-
news.ycombinator.com news.ycombinator.com
-
typeof v === "number"
Using triple equals to check the results of
typeof
is totally unnecessary, and a sure sign that someone, somewhere has unthinkingly adopted some dubious advice; it's a code smell/red flag.A standard equality comparison (using
==
) does exactly the right thing while also avoiding association with questions/doubts about the quality of the surrounding code.
-
-
news.ycombinator.com news.ycombinator.com
-
The older I get, the more important I think it is to get set up with a simple(ish) development environment where I can easily reproduce bugs, develop features and so on.
Tags
Annotators
URL
-
- Mar 2022
-
people.csail.mit.edu people.csail.mit.edu
-
Lesson: use === and !==
No. Actual lesson: know your types.
-
- Apr 2020
-
www.w3.org www.w3.org
-
subject-predicate-object triples
-
- Jun 2019
-
Local file Local file
-
Finally, theTriple Composeris the most expressive way of creating structureddata, providing a specific GUI for editing semantic statements (triples) in theform of subject-object-predicate
-
- Nov 2018
-
www-nejm-org.ezp-prod1.hul.harvard.edu www-nejm-org.ezp-prod1.hul.harvard.edu
-
. The “triple threat” leader— skilled clinician, researcher, and educator — wasthe paradigm of exceptional faculty achievement (orfantasy) for more than a generation. Balancing aproductive research career with teaching and clinicalcare was easier when academic health centers wereless accountable for the quality and cost of clinicalcare than they are now.
-
- May 2017
-
marconisociety.org marconisociety.org
-
The Triple Feedback Loop offers a compass by aligning the information flows in a framework for operating a network of disparate players with different goals who work together on an overarching goal.
-
- Aug 2015
-
people.csail.mit.edu people.csail.mit.edu
-
In this scheme, if a sub-ject is related to multiple objects by the same prop-erty, then each distinct value is listed in a successiverow in the table for that property
Sound like [Apache CouchDB]'s map/reduce output to anyone else?
-