HackerTrans
トップ新着トレンドコメント過去質問紹介求人

zarakshR

no profile record

投稿

Taxonomy and Genealogy of Programming Languages

hopl.info
1 ポイント·投稿者 zarakshR·3 年前·0 コメント

Systems Software Research is Irrelevant (2000) [pdf]

doc.cat-v.org
62 ポイント·投稿者 zarakshR·4 年前·38 コメント

The Nexus Ecosystem: Better (Research) Data Management

bluebrainnexus.io
1 ポイント·投稿者 zarakshR·4 年前·0 コメント

Windows File Manager (WinFile)

github.com
7 ポイント·投稿者 zarakshR·4 年前·0 コメント

Ask HN: Quick and high-level tutorials for Python – or any other language?

2 ポイント·投稿者 zarakshR·5 年前·3 コメント

コメント

zarakshR
·3 か月前·議論
I don't see how:

Racket:

  > (define (fact n)
      (if (= n 1)
          1
          (* n (fact (- n 1)))))
  > (fact 6)
  720
OCaml:

  # let rec fact = function
      | 1 -> 1
      | n when n > 1 -> n * (fact (n - 1))
    in fact 6;;
  - : int = 720
zarakshR
·昨年·議論
This is not relevant since this de-sugaring cannot be performed if `name` is recursive (i.e., if `term` refers to `name`), which `Y` is. So the author's derivation is still required in the pure lambda calculus.
zarakshR
·昨年·議論
> because PHP and Javascript will implicitly convert back and forth

If you can provide (valid!) methods `T -> U` and `U -> T` for two types, why wouldn't `T = U` hold? (Atleast for types where `=` makes sense)

This is the definition I am using:

> S is a subtype of T, written S <: T, if a value of type S can safely be used in any context where a value of type T is expected.

from Pierce's "Software Foundations"

Of course, you may not want to make `String <: Number` and `Number <: String` (and thus `String = Number`), because there is no sensible way to do so; but this is an issue with the way PHP/JS handles subtyping, not with the notion of subtyping itself and certainly does not apply to the example of nullable types.

Unfortunately, I am not familiar enough with C++ to comment on the other question, sorry!
zarakshR
·昨年·議論
> The point is you can't simply treat non-nullable as a subtype of nullable in general, because this case exists.

But surely, you can still use subtyping in other cases -- when it is already unboxed -- right?

Like so: `T <: T?` for all boxed `T`.
zarakshR
·昨年·議論
> The language can just have an implicit conversion rule for convenience

the presence of an implicit conversion rule `T -> T?` amounts to the observation that `T <: T?`, where <: is the subtyping relation

> make an unboxed integer nullable ...

I don't think any language allows this, in any case disallowing nullability for unboxed types amounts to the observation that `P !<: P?`, where !<: is "does not subtype"

I believe (unless I have misunderstood you) that both your examples are subsumed (heh) by subtyping
zarakshR
·2 年前·議論
Similarly, I was shocked to learn that models of aeroplanes don't even account for the possibility of the plane being blown up mid-flight by a stray anti-air missile.

It seems aerospace engineers are just like priests and counselors in the courts of ancient kings.....
zarakshR
·3 年前·議論
Continuation-passing style?
zarakshR
·3 年前·議論
> If I am in my normal raw intellect, I will begin going deep on some topic thats outside the range of normal human discourse. It will be hard for me to stop, because of my interest. Alcohol removes that to a large degree.

Peak HN.
zarakshR
·4 年前·議論
How would that even work if git was released in 2005? Am I missing something?
zarakshR
·4 年前·議論
And EB Garamond[0] if you want a free font.

[0] - https://fonts.adobe.com/fonts/eb-garamond
zarakshR
·5 年前·議論
I can't wait for this comment to show up on n-gate.com
zarakshR
·5 年前·議論
Wow, this is really helpful. Thank you!
zarakshR
·5 年前·議論
Under the description of The Co-Op it says "Players pay a membership fee to access resources like food, lodging, clean water, etc."

Did anybody think this through more than once?
zarakshR
·5 年前·議論
This is such a poorly made website. I love it!
zarakshR
·5 年前·議論
>It's a lousy argument to suggest that Chinese products are bad because Chinese culture does not promote attention to detail...

I would just like to point out that the GP did mention,

>...not culturally specific to Chinese...
zarakshR
·5 年前·議論
The selection does not disapper if it ends on a parenthesis or whitespace. Odd