Seems quite similar to https://sizzy.co/
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 prevent apps including Hermes from…
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]…
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 access to render prop arguments. (although you…
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 a terrible idea for mobile devices…
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 of TypeScript users. I'd love to see…
Its called literate programming; for example https://wiki.haskell.org/Literate_programming
Some examples of "transpilers" targeting Javascript but writen in other languages: https://github.com/google/closure-compiler https://github.com/BuckleScript/bucklescript https://github.com/fastpack/fastpack Seems like…
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 and suddenly there were massive shootouts…
the `=>` de-sugars to: var currentUrl = function(_) { return window.location.href; } the underscore is used so they don't have to type `() =>` instead
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 loanwords and each character represents a…
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
``` var dividers = { 2: function divideBy2 (lhs, unused) { return lhs >> 1 }, 4: function divideBy4 (lhs, unused) { return lhs >> 2 }, undefined: function divideByNumber (lhs, rhs) { return lhs / rhs } } ``` Does this…
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. In addition to that the person who…
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've noticed that it is indeed difficult…
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 and super fast while also being, close…
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 will? This way it would probably still…
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's a confusing pattern though...
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 also adding them to `el` object but…
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 someone explains what this does and why it…
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 that most of EU's research funding for…
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 Rails? Also if you'd have taken a few…
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("Connection: close"); error_reporting(0);…
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 like an awesome project) but i have very…
The original poster is referring to an incident that happened in Cologne around new years; supposedly there was a "mass raping" (as some newspapers put it) which was soon blamed on the large amount of "fresh" immigrants…
Seems quite similar to https://sizzy.co/
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 prevent apps including Hermes from…
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]…
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 access to render prop arguments. (although you…
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 a terrible idea for mobile devices…
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 of TypeScript users. I'd love to see…
Its called literate programming; for example https://wiki.haskell.org/Literate_programming
Some examples of "transpilers" targeting Javascript but writen in other languages: https://github.com/google/closure-compiler https://github.com/BuckleScript/bucklescript https://github.com/fastpack/fastpack Seems like…
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 and suddenly there were massive shootouts…
the `=>` de-sugars to: var currentUrl = function(_) { return window.location.href; } the underscore is used so they don't have to type `() =>` instead
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 loanwords and each character represents a…
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
``` var dividers = { 2: function divideBy2 (lhs, unused) { return lhs >> 1 }, 4: function divideBy4 (lhs, unused) { return lhs >> 2 }, undefined: function divideByNumber (lhs, rhs) { return lhs / rhs } } ``` Does this…
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. In addition to that the person who…
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've noticed that it is indeed difficult…
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 and super fast while also being, close…
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 will? This way it would probably still…
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's a confusing pattern though...
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 also adding them to `el` object but…
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 someone explains what this does and why it…
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 that most of EU's research funding for…
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 Rails? Also if you'd have taken a few…
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("Connection: close"); error_reporting(0);…
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 like an awesome project) but i have very…
The original poster is referring to an incident that happened in Cologne around new years; supposedly there was a "mass raping" (as some newspapers put it) which was soon blamed on the large amount of "fresh" immigrants…