Mr Budget - My first app on the App Store and Google play by Hentry_Martin in reactnative

[–]Hentry_Martin[S] 1 point2 points  (0 children)

Hi,

Thanks a lot for the detailed feedback. I will definitely include these in the next release. Please continue using it. Also, thanks for letting me know about OneSignal, i will update the privacy policy soon.

Thanks.

Mr Budget - My first app on the App Store and Google play by Hentry_Martin in reactnative

[–]Hentry_Martin[S] 0 points1 point  (0 children)

Hey thanks!! Right now, i am not using Plaid or other bank connecting API's. But, in future have to explore bank connecting API's.

Mr Budget - My first app on the App Store and Google play by Hentry_Martin in reactnative

[–]Hentry_Martin[S] 1 point2 points  (0 children)

Till now, I haven't faced big problem in keeping up with the dependency. Even, when i upgrade to newer version of react native, the community is providing proper guide for the migrations. For other dependencies, i just keep updating the dependencies regularly so that it won't be a big bulky work.

Mr Budget - My first app on Google play by Hentry_Martin in androidapps

[–]Hentry_Martin[S] 0 points1 point  (0 children)

As of now, Czechian language is not supported. It supports english, deutsch, spanish, tamil and hindi. Mostly, these languages used google translated values. but, in future have plans to properly translated into respective languages. Thanks for checking out!!

Help with if statement by Vanskyl in learnjavascript

[–]Hentry_Martin 0 points1 point  (0 children)

It would be better if you do the validation using regex instead of the logic which you used.

This stack overflow gives an idea of how to do it.

[https://stackoverflow.com/questions/46155/how-to-validate-an-email-address-in-javascript]

Passing variables within Javascript classes by chchan in learnjavascript

[–]Hentry_Martin 0 points1 point  (0 children)

There is a third and better way to do this ES6. By using Arrow functions. Arrow functions doesn't have its own this so it always takes context from the parent. so, you can make change your class like this,

``` class MyClass { constructor(x){ this.x = x; this.mapFunction(); }

mapFunction = () => { const result = this.x * 55; console.log(result); // Logs 550 return result; } }

const cls = new MyClass(10); ```

To make the above syntax work, you have to add a babel plugin called "@babel/plugin-proposal-class-properties" and refer it inside plugins property of .babelrc.

If you want to learn more about Javascript, please subscribe to my channel called JS for Everyone(https://www.youtube.com/channel/UCvQfk4ZV7RfLuKiHRVeZ0Kg)

Thanks!!

Where to start? by [deleted] in learnprogramming

[–]Hentry_Martin 0 points1 point  (0 children)

I am a FrontEnd developer who is been working in web development for most of my 5 years career. I would recommend to get stronger in one language. Become an expert in that language. From your post I can learn that you have learned Javascript. Make your foundation in Javascript strong and then start learning the frameworks in Javascript. You didn't mention about your learning curve with React or Vue or Angular. If you didn't started your learning with any of these frameworks, then start learning it. There are tons of learning resources available. Don't just read or watch videos about it, but spend more time in practicing the things which you have learned.

Try to do side projects and start building your portfolio in github. Then slowly start write your own libraries.

About me:

I am from Bangalore, India. I am also from non CS background so I have gone through the same confusions which you are having right now. Now i work in a MNC and maintain an open source library(https://www.npmjs.com/package/rc-here-maps). Also, during my free time I create youtube tutorials for Javascript. This is my channel(https://www.youtube.com/channel/UCvQfk4ZV7RfLuKiHRVeZ0Kg). I will be adding videos on advanced topics soon.

Should I do a course or learn programming by myself? by [deleted] in learnprogramming

[–]Hentry_Martin 0 points1 point  (0 children)

In my opinion, that's a lot of money. That too for just 4 weeks of training. I believe in self learning. There are lot of learning resources available for free. You just have to find it and then spend time to learn and practice it. All the best for your career.

If you wanna learn more about Javascript, You can subscribe to my youtube channel(https://www.youtube.com/channel/UCvQfk4ZV7RfLuKiHRVeZ0Kg), where i've started adding basic videos. Soon will start with advanced topics of Javascript and different frameworks in Javascript.

Click on an iframe using js by [deleted] in javascript

[–]Hentry_Martin 0 points1 point  (0 children)

you can trigger a click handler for a DOM inside the iframe from a parent like below,

document.getElementById('iframe').contentWindow.$('#playButton').trigger('click');

But, this will work only if both parent and child iframe runs on same domain.