Viewing profile — whitefish
whitefish
HN member- Joined
- Mon, Dec 26, 2016, 2:18 AM UTC
- HN karma
- 67
- Public activity
- 27 items
- HN profile
- View on Hacker News ↗
About whitefish
No profile information was provided.
Recent public activity
- story
-
comment
Comment #16277116
On the one hand I am glad they are continuing to enhance TypeScript. On the other hand I am concerned that TypeScript is becoming a very bloated language. If you have seen the late…
-
comment
Comment #15847690
If that’s bizarre consider the fact that Microsoft does credit check on employees every two years, as a condition of employment, and you can be fired if something really bad shows …
-
comment
Comment #15741751
Sorry, that’s not making sense. In the MVC I am used to there’s only one controller active at one time and that controller owns the entire screen.
-
comment
Comment #15741384
If your model layer objects are firing events you have problems already because it obscures the call graph. I try to avoid that style. The controller should update the model object…
-
comment
Comment #15605041
Can you put a breakpoint in the template? In .tsx templates you can. Templates frequently need loops and conditionals. In the case of .tsx this logic is in TyprScipt so you can deb…
-
comment
Comment #15381287
So basically you prefer something more along the lines of Model View Controller. Me too. When React was first released it was advertised as “the ‘V’ in MVC”. Unfortunately the deve…
-
comment
Comment #15350823
Have you considered using MVC? It works well. Search the complementary tools page of React.
-
comment
Comment #15279064
JSX standard is independent of React and can be used with Web Components. Also, HTML import is unnecessary to use Web Components. The key technologies in Web Components are ShadowD…
-
comment
Comment #15208824
Which Javascript MVC framework did you use? Some people who used Angular hated it and conclude that MVC is horrible. No, Angular is horrible, not MVC.
-
comment
Comment #15208086
None of these problems are unique to web development. How do you solve these problems in iOS? In iOS you use MVC, and the Application object holds the state as a tree. MVC has a be…
-
comment
Comment #15207417
Redux is unnecessary complexity. Anyone considering it, please do yourself a favor: check out an MVC framework and see how simple it is. Remember, when React first came out they de…
-
comment
Comment #15199778
Note that JSX is not limited to React. You can use JSX (or TSX in the case of Typescript) as a better replacement for Moustache or Handlebars. See here: https://github.com/wisercod…
-
comment
Comment #14655217
Real estate agents (in the USA at least)
-
comment
Comment #14375819
If you want to go with MVC use this: https://github.com/Rajeev-K/mvc-router
-
comment
Comment #14355295
This will lower salaries in India for IT professionals. As a result outsourcing to India will become more attractive.
-
comment
Comment #14337984
Should hospitals such as UK's NHS and other such organizations use dumb terminals (or chromebooks) instead of Windows? That way data is centralized on servers where it is easy to b…
-
comment
Comment #14331512
Routers can and should be independent of View technology. Here's one that works well for React but is independent of React: https://github.com/Rajeev-K/mvc-router The MVC model is …
- comment
-
story
Ask HN: How much have you saved for retirement?
This blog post says as a Software Engineer working in the US you should have $4 Million in savings to have the same income, in retirement, as a fresh software engineer. http://chas…
- story
-
comment
Comment #14232735
Who here is old enough to remember Larry Ellison's Network Computer? Chromebook is the realization of Larry Ellison's vision. Back in the mid 90's Larry Ellison said, "we need comp…
-
comment
Comment #14184480
Those who think React + ReactRouter + Redux is too complex -- you're right. But there is an easier way to use React: MVC. React is the V in MVC. https://github.com/Rajeev-K/mvc-rou…
-
comment
Comment #14068485
You can use JSX for Web Components too, see: https://github.com/wisercoder/uibuilder There is no need for a complex framework like React. Web Components + JSX is better than React.…
-
comment
Comment #14065251
I'd like to see React support shadow-dom and web components. Not holding my breath however, since Facebook considers web components to be a "competing technology". Unlike real web …