HackerTrans
TopNewTrendsCommentsPastAskShowJobs

zarakshR

no profile record

Submissions

Taxonomy and Genealogy of Programming Languages

hopl.info
1 points·by zarakshR·3년 전·0 comments

Systems Software Research is Irrelevant (2000) [pdf]

doc.cat-v.org
62 points·by zarakshR·4년 전·38 comments

The Nexus Ecosystem: Better (Research) Data Management

bluebrainnexus.io
1 points·by zarakshR·4년 전·0 comments

Windows File Manager (WinFile)

github.com
7 points·by zarakshR·4년 전·0 comments

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

2 points·by zarakshR·5년 전·3 comments

comments

zarakshR
·3개월 전·discuss
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
·작년·discuss
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
·작년·discuss
> 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
·작년·discuss
> 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
·작년·discuss
> 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년 전·discuss
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년 전·discuss
Continuation-passing style?
zarakshR
·3년 전·discuss
> 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년 전·discuss
How would that even work if git was released in 2005? Am I missing something?
zarakshR
·4년 전·discuss
And EB Garamond[0] if you want a free font.

[0] - https://fonts.adobe.com/fonts/eb-garamond
zarakshR
·5년 전·discuss
I can't wait for this comment to show up on n-gate.com
zarakshR
·5년 전·discuss
Wow, this is really helpful. Thank you!
zarakshR
·5년 전·discuss
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년 전·discuss
This is such a poorly made website. I love it!
zarakshR
·5년 전·discuss
>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년 전·discuss
The selection does not disapper if it ends on a parenthesis or whitespace. Odd