Viewing profile — tjallingt
tjallingt
HN member- Joined
- Sun, Mar 29, 2015, 5:01 PM UTC
- HN karma
- 160
- Public activity
- 40 items
- HN profile
- View on Hacker News ↗
About tjallingt
No profile information was provided.
Recent public activity
-
comment
Comment #43471935
Seems quite similar to https://sizzy.co/
-
comment
Comment #20412793
Looking really cool! Hope there will be talks about implementing this and the benefits that it will bring. Is this also coming to IOS or are there app store regulations that would …
-
comment
Comment #19014012
theres the AbortController [1] that can be used on a few new promise based APIs such as the Fetch API [2] [1] https://developer.mozilla.org/en-US/docs/Web/API/AbortContro... [2] ht…
-
comment
Comment #17978489
React team members seem to be hinting at some sort of official "adopt" ( https://github.com/pedronauck/react-adopt ) api which would allow for a slightly nicer way of getting acces…
-
comment
Comment #17709348
Would be interesting if it would be possible to take the Rust approach and guarantee at parse/compilation time that the DOM interactions are safe without runtime overhead. Probably…
-
comment
Comment #17588762
The graphs for major programming languages shows a decline in the number of monthly active users using JavaScript, interestingly this decline seemingly coincides with the incline o…
-
comment
Comment #17196252
Its called literate programming; for example https://wiki.haskell.org/Literate_programming
-
comment
Comment #17177080
Some examples of "transpilers" targeting Javascript but writen in other languages: https://github.com/google/closure-compiler https://github.com/BuckleScript/bucklescript https://g…
-
comment
Comment #17161597
I agree so much. The first season was amazing with the split story line between the main crew and Miller on Ceres but it all went downhill when the proto-molecule was introduced an…
-
comment
Comment #15899466
the `=>` de-sugars to: var currentUrl = function(_) { return window.location.href; } the underscore is used so they don't have to type `() =>` instead
-
comment
Comment #15678742
Not a Japanese reader so i can't fill you in on what exactly the characters mean but they are characters from the Japanese katakana script. Katakana are generally used for loanword…
-
comment
Comment #14451452
How funny, I recently started working and also opted for a 36 hour work week and use it to get fridays off every other week :D
-
comment
Comment #14063002
``` var dividers = { 2: function divideBy2 (lhs, unused) { return lhs >> 1 }, 4: function divideBy4 (lhs, unused) { return lhs >> 2 }, undefined: function divideByNumber (lhs, rhs)…
-
comment
Comment #13853549
All he said was that they refunded the guy, seems like information that is pretty OK to share publicly especially in response to the claim that their customer support was terrible.…
-
comment
Comment #13398716
Except that if you use a western keyboard you still need to learn Pinyin or Romaji in order to be able to type the language. In my own attempts to learn a little bit of Japanese I'…
-
comment
Comment #13300606
Interesting read, although the shtick got a bit old near the end. I really wonder how this compares to inferno.js as that has some real optimisation magic to make it super small an…
-
comment
Comment #13288154
Fair warning: I don't know much about compilers. Maybe it's an idea to make this a native Typescript compiler as it will profit much more from being compiled than pure JavaScript w…
-
comment
Comment #12378954
That is a great explanation and after looking at the source code and reading the example more closely that is indeed what appears to happen. I do think that, albeit very clever, it…
-
comment
Comment #12378934
Aah of course; By reading the source code of the children function I figured the array of elements returned was appended to the parent element. The strange thing was that it was al…
-
comment
Comment #12378891
I've never seen this before: children(el => [ el.email = input(props({ type: 'email' })), el.pass = input(props({ type: 'pass' })), el.submit = button(text('Sign in')) ]) Can someo…
- comment
-
comment
Comment #12196618
I found this online: https://royalsociety.org/~/media/policy/projects/eu-uk-fundi... Seemingly this is a pretty unbiased source (but who knows nowadays). In that document it states…
-
comment
Comment #12194946
Since you've posted a few comments with this same sentiment a few times in this thread; can you expand on why you feel people would need to learn Ruby before getting started with R…
-
comment
Comment #12151372
I have some questions about two things in the exploit code that puzzled me: my $php_code = 'eval(\' header("X-Accel-Buffering: no"); header("Content-Encoding: none"); header("Conne…
-
comment
Comment #11992667
Hey, maybe this isn't the right place but i wouldn't know where else to ask this question: I'd like to get into Rust development and maybe help out with Servo (because it seems lik…