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