Live data from Hacker News

Viewing profile — orif

orif

HN member
Joined
Thu, Jun 25, 2015, 9:13 PM UTC
HN karma
22
Public activity
8 items

About orif

No profile information was provided.

Recent public activity

  1. comment
    Comment #34296611

    I don’t think Aral will be coming back to its original size. Once Afghanistan starts developing it will start consuming more water from Amudarya, and Central Asia’s population is s…

  2. comment
    Comment #34296551

    Actually, the Russian textile industry needed cotton, they were a major customer of US cotton, then they saw an opportunity to grow cotton in Turkestan. So they started growing cot…

  3. comment
    Comment #30630850

    Actually, I would prefer a C/C++ dialect in TypeScript’s type notation. Parsing time/complexity would reduce drastically, and would allow type inference.

  4. comment
    Comment #30203603

    Just check .NET Framework 4 to .NET Core transition. You can dig MSDN blogs. While Go should be lauded for their performance improvements, it should not be done by reducing other l…

  5. comment
    Comment #23141229

    I own a Surface Book 2 as well. At work I use MBP 16. And before that I used ThinkPad W520 for 6 years. SB2 is the best laptop. There are issues like glossy screen or not repairabl…

  6. comment
    Comment #23141179

    Sketch app was one of the most useful apps in Windows 10. It was snappy and just one click away. Hate its replacement, wish they at least let us to keep Sketch app instead of just …

  7. comment
    Comment #14473539

    TypeScript would complain about that snippet too. function getOptions() { return { num: 42, str: "val" }; } var __options__ = getOptions(); type Options = typeof __options__; var o…

  8. comment
    Comment #13312050

    For packages with default export, you can use synthetic imports options in tsconfig. For non-js imports, you can create global module declarations (like the below snippet): declare…