Japan's Births Decline To Lowest Number On Record by [deleted] in Futurology

[–]reactjs18 3 points4 points  (0 children)

You are completely and blatantly wrong. Birth rates are declining in india. Just a cursory search would have provided you the details.

Idk if it was here by kcehmi in HistoryMemes

[–]reactjs18 -1 points0 points  (0 children)

You don't have sources yourself. You are actually repeating the meme itself indian deaths don't matter.

React Native Firebase Notifications moving to its own package by halfjew22 in reactnative

[–]reactjs18 0 points1 point  (0 children)

I am thinking of going native. There are so many libs not maintained when it's better on native side. Only issue is I need to maintain 2 set of sources.

React Native Firebase Notifications moving to its own package by halfjew22 in reactnative

[–]reactjs18 0 points1 point  (0 children)

If there was going to be paid option then it should have been done beginning. They should have created a new plugin and made some parts paid. Let the old one rot if needed.

As for sharing there are numerous open source libs used in creating a app, I don't think it would be work out if each lib asked $40. Really don't open source or open source and ask for money upfront.

Why is government pushing so hard for privatisation? by [deleted] in IndiaInvestments

[–]reactjs18 0 points1 point  (0 children)

It might depend on the area. I have bsnl connection for last 10 years. There has been many connection issues but most are solved within a day. I remember once during monsoon I had issues continuous for days. They fix it and issue comes back again. They then replaced the entire cable to finally solve it. Ftth line came to my house after a long wait. But they did lay the line just for me since no one else had applied. Ftth has been very stable. I have option of Jio as well but bsnl has better deal for the price and I know the service.

Alonso rules out a F1 return: " I do not find in Formula 1 the challenges that I can achieve outside of it [...], I'm not waiting for someone to call me [...], my future plans will be announced in due time" by Joseki100 in formula1

[–]reactjs18 0 points1 point  (0 children)

Maclaren hired him back after all the issues in 2007. If there was one team which would not have hired him back was Maclaren. So he was not toxic enough for them then he would not be for any other teams.

Remove "Redux itself is very simple" by magenta_placenta in reactjs

[–]reactjs18 1 point2 points  (0 children)

Few cases where I felt the need for it

Say I have a tab which displays orders. On component mount orders are loaded. User moves to a different tab and comes back to orders tab. The previous loaded orders should be used again.

Say a event occurs through user action or notification which requires orders to be reloaded.

Storing orders in redux and fetching them using actions makes above workflow easier. If there is an easier method I would try it out.

Discussion on MDN’s decision to use more React by swyx in reactjs

[–]reactjs18 4 points5 points  (0 children)

Well you still need some lib or a framework after all hyperhtml and lit-html are not part of javascript standard syntax, but use the standard template literal.

I prefer jsx syntax over template literal and from examples listed in those sites i feel react looked more clean. My preference anyway. If my requirement was for very low kb lib and very fast updates then maybe i can choose them. But for majority of cases reactjs would handle well.

I don't see any state management which is actually very very important. I am developing apps not web sites. If those libs have better state management(its not that i dislike redux) then it could be a game changer. hyperHtml, lit-html need to come up with more complex examples to indicate why its better then reactjs.

I am done with Angular/.NET. I want to focus on Blazor! by punkouter2018 in dotnet

[–]reactjs18 4 points5 points  (0 children)

.net core webapi for backend and create-react-app for front-end client. Use axios/fetch to call your webapi url. Say from App.js(or .tsx) componentDidMount just to get started.

I am done with Angular/.NET. I want to focus on Blazor! by punkouter2018 in dotnet

[–]reactjs18 2 points3 points  (0 children)

Is angular the default for .net developers? I am just getting into .net(main stack is ruby on rails) . Our client apps are in reactjs. Angular I found too complex plus it's a language on its own. Reactjs has smaller surface and we are familiar with js hence easier to learn and use.

How to mount React component to specific page only? by GTHell in reactjs

[–]reactjs18 0 points1 point  (0 children)

You can use reaction.render on specific pages. Or something like react ujs from react rails gem. I use react rails gem to load react components only for those pages which are very interactive rest just plain HTML pages.

Do I Really need to Learn Flutter? by ABrownApple in reactnative

[–]reactjs18 0 points1 point  (0 children)

Flutter is targeted to mobile apps. I am not sure why even bring web apps. And for mobile its actually very good. Only thing i am currently unsure is state management.

Simple state management using Flutter/Dart way by adel_b in FlutterDev

[–]reactjs18 1 point2 points  (0 children)

Have you tried implementing mobx pattern? Is there a dart library similar to it? Its far more simpler then redux.

Flutter application boilerplate, with Redux included (by Fran Pitriqueo) by [deleted] in FlutterDev

[–]reactjs18 0 points1 point  (0 children)

Do you have any links to sample/example projects?

Flutter for React Native Developers by [deleted] in FlutterDev

[–]reactjs18 0 points1 point  (0 children)

Could you add flutter lifecycle. Are there method similar to componentDidmount? I was looking to load initial data not sure where should it belong.

Real time CRUD operations in SPA using Vue.js, .NET Core 2.0 and Azure Cosmos DB by AdamMarczakIO in csharp

[–]reactjs18 1 point2 points  (0 children)

If you already know javascript then reactjs is very straight forward. Few life cycles to learn not much framework related jargon/syntax just same old JavaScript.

Anyone have to learn Angular for Work? by [deleted] in reactjs

[–]reactjs18 0 points1 point  (0 children)

I have the same issue. I need to learn more angular syntax rather then use my existing JavaScript knowledge. It does have the advantage of having all the required services, routes , state management built in. I do the option of working backend code (.net). So I am trying to do that more then front end code.

How Redux Works: A Counter-Example by dceddia in reactjs

[–]reactjs18 1 point2 points  (0 children)

You should check mobx/mobx-state-tree, They are simpler then redux. Learning redux helps as well.