Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
nilliams
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
13 ms
·
1.
▲
by
nilliams
9y ago
The react ecosystem is massive, and includes impressive projects like the various backends/renderers: react-native, react-sketch.app, react-vr, react-pdf, ink, that have no equivalent in other frameworks (or at least to nowhere near th
2.
▲
by
nilliams
9y ago
> The only event that license terminated Patent grant terminated, not license
3.
▲
by
nilliams
9y ago
Looks like they're working on moving away from bower: https://github.com/Polymer/polymer/issues/326#issuecomment-3... A quick CDN get-started would be convenient I agree. There is Polymer-CDN for demos&#
4.
▲
by
nilliams
9y ago
And also this (cross-plat React Native for Windows/iOS/Android): https://github.com/Microsoft/reactxp
5.
▲
by
nilliams
9y ago
Yeah I don't have a stake/opinion, just posted that particular article because it's a recent, thorough take, by a lawyer.
6.
▲
by
nilliams
9y ago
They're referring to the 'patent retaliation clause', see: https://medium.com/@dwalsh.sdlr/react-facebook-and-the-revok...
7.
▲
by
nilliams
9y ago
Another premii fan here. Has some nice touches like the night mode mentioned and 'Appearance' settings (font/font-size/colour).
8.
▲
by
nilliams
9y ago
> Bootstrap is so 2015. BS 3 is still very valuable for responsive-site conventions within a team, especially if you use it 'properly' from Sass or LESS source. The main part looking dated at this point is the JS that still rel
9.
▲
by
nilliams
9y ago
> The plugin interface is a public interface too, right? It didn't say 'plugin interface'. It said 'internal changes' that could affect some plugins. The way I read that is some plugins could be relying on intern
10.
▲
by
nilliams
9y ago
> From the list of JS libraries they're using alone, I'm guessing it's going to get even fatter and laggier than it already was :( Why? Only 3 of the 'JS libraries' listed are actual run-time code (React, Redux,
11.
▲
by
nilliams
9y ago
Soon with the new webpack-cli, you'll just be able to 'webpack init': https://medium.com/webpack/announcing-the-new-webpack-cli-75...
12.
▲
by
nilliams
9y ago
Hell no :) The Amazon downloads seem to all be 44.1 khz mp3 (just downloaded an album of mine to check).
13.
▲
by
nilliams
9y ago
Webpack's HMR (hot reloading) of JS does work with create-react-app, but only if you use an external state store (like Redux), see [1]. The 'React Hot Loader' [2] module, which maintains local React component state is not i
14.
▲
by
nilliams
9y ago
Worth knowing most new vinyl records come with a copy of the digital download too. Amazon will also automatically add (most?) vinyl purchases to your Amazon Music Library, and allow download.
15.
▲
by
nilliams
9y ago
Here's Divvy doing this in 2010 [1], the question is if Divvy is related to the patent or if they too received a letter. [1] http://lifehacker.com/5715221/divvy-window-organizer-lands-o...
16.
▲
by
nilliams
9y ago
True for async code, but if you use something like ShellJS [1] (which would be an easy way to rewrite a bash script that was getting out of hand), all commands are synchronous, so error handling is just try/catch. [1] https:/
17.
▲
by
nilliams
9y ago
Awfully vague/FUDdy criticisms there: - dynamic require()'s can't be tree-shaken: same is true of other langs, e.g. Python. Perfectly understandable IMO as Node was designed for the server, in a time tree-shaking (largely des
18.
▲
by
nilliams
9y ago
In some cases here, he's talking about fixing bugs in a production. It's not so simple to attach a debugger to a live application serving 100s of requests. Break and you just 500'd all users. In others granted he's worki
19.
▲
by
nilliams
9y ago
Huh, I started that premise and I'm continuing to argue it. You might be thrown off by HN's busted comment nesting. If my last comment wasn't clear, I think the dent in revenue would be considerable for fully open-sourcing Su
20.
▲
by
nilliams
9y ago
Ah I missed that, sorry.
21.
▲
by
nilliams
9y ago
Huh? For an editor in the browser you don't send every keystroke and paint update over the network. The UI is effectively local, you would only need to send regular network updates for 'autosave', and it wouldn't be to k
22.
▲
by
nilliams
9y ago
Nice in theory but in reality, top Google result for 'no nag sublime' would be a snippet of how to git clone and patch out the nag, widely distributed from day one. At least with current ST the 'tutorials' for this tend
23.
▲
by
nilliams
9y ago
I think the developer behind Sublime Text is widely recognised as an outlier. >> "Sublime Text 2 is mostly coded in C++ and uses a custom UI toolkit." ... [0] How many other devs/teams are going to reasonably take that
24.
▲
by
nilliams
9y ago
Sublime, last time I used it, had a nag window every x saves(?) if unlicensed, which I'm sure encouraged a lot of people to pay. I doubt so many users would convert if it was totally open source and they could easily install a nag-free
25.
▲
by
nilliams
9y ago
Thanks!
26.
▲
by
nilliams
9y ago
Which Chromebook model are you using? That does sound good for $250
27.
▲
by
nilliams
9y ago
It's unfortunate if you've encountered that because there's really no good reason for it. Thankfully now however most/all major JS frameworks & libs are moving to/have moved to 'zero configuration' cli
28.
▲
by
nilliams
9y ago
Yeah I checked out eacharg in your codebase, looks tight. I learnt quite a lot from your code about how jQuery could be structured, nice job!
29.
▲
by
nilliams
9y ago
Heh, props, I'm not disappointed, and yes that's a much better callback! But that is not implemented in the 5 lines of code you linked to is it? :)
30.
▲
by
nilliams
9y ago
jQuery's addClass 'does more', it can also take a callback: $el.addClass((i, existingClass) => (i % 2 == 0) ? 'odd' : '')
More ›