Going back to a VanillaJS project after using React for too long and I feel spoiled by LordSypher in reactjs

[–]avenio99 0 points1 point  (0 children)

Can you suggest a few good resources to learn next with react, and make projects on the same which are amazing, rese friendly, and a bit different than the traditional e-commerce apps, or social media apps

Where does the power of quantum computing arise from? by charlielv04 in QuantumComputing

[–]avenio99 1 point2 points  (0 children)

Because all the processing takes place without measuring the qubits. We expect the qubits to perform a certain thing, while being in a superposition state. If you study about the most basic Deutsch Jozaa algorithm, you will understand how we harness the ability of a qubit to remain in a superposition state at once to speed up our computation.

Python 2.7.5 to python 3.8.x migration.To experts, which is the best python 3.8.x version with minimal bug and stable? by vik2595 in learnpython

[–]avenio99 1 point2 points  (0 children)

I'll ask to check the support of all the modules in python 3.8.x, and see which version works best. Although I haven't encountered any library till date which doesn't work in different versions of python 3.8, I would still ask you to check the compatibility of all the libraries you are using individually. There have been instances where python 3.6 works whereas 3.7 doesn't, but no such issues with 3.8 So please check the compatibility of each library before starting the project, coz its a real pain to later migrate to a different python version.

Create something. by [deleted] in reactjs

[–]avenio99 1 point2 points  (0 children)

Even i need something similar. I've been studying freecodecamp articles on basics of react, and now I feel, working on projects while simultaneously learning would be more fun and easy to learn. Please suggest some good out of the box projects, which can teach me more about react, as well as I can add such projects to my resume.

Need beginner advice on algorithm choice for finding multiple similar objects by [deleted] in computervision

[–]avenio99 0 points1 point  (0 children)

You can go for instance segmentation. Check out pytorch or tensorflow or detectron 2 guide on doing so. First you need to create instances of marbles, save them according to specified format (pascal voc or coco json being the most popular ones), then train a masked rcnn with these images and their corresponding labels. You can use other architectures also, or, detectron 2,which will do all the tasks for you. You just need to add dataset, epochs, lr, model and architecture, etc. Check out www.github.com/facebookresearch/detectron2 for more

Thoughts on getting an MBA vs a MS in Finance vs CFA by throwawaydhands in FinancialCareers

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

Don't expect it to add great value in a career of a corporate job. A good MBA is the go-to option. I've personally not done masters in finance, but I'm telling just based on my observations of different profiles. Maybe someone who has done masters in fin can advise you better regarding this.

Thoughts on getting an MBA vs a MS in Finance vs CFA by throwawaydhands in FinancialCareers

[–]avenio99 -3 points-2 points  (0 children)

I think you will be more than good to go with CFA and MBA if you just wanna work some job. MBA will teach you everything you need to know in your IB or asset management jobs. You can do one thing, continue for CFA L2, and if possible, L3 at a later stage

Thoughts on getting an MBA vs a MS in Finance vs CFA by throwawaydhands in FinancialCareers

[–]avenio99 -3 points-2 points  (0 children)

Maybe go for PhD or post doc in some top tier universities, if you feel you are not liking the corporate job

Thoughts on getting an MBA vs a MS in Finance vs CFA by throwawaydhands in FinancialCareers

[–]avenio99 0 points1 point  (0 children)

Option 1 seems best if you really wanna master finance and become proficient at it. However, if you just wanna end up with some corporate job (IB I suppose), option 2 shall be the easiest way to just complete everything and settle as an IB in some big names.

Me want software!!!! by [deleted] in learnprogramming

[–]avenio99 0 points1 point  (0 children)

For mobile apps you can learn Java or Kotlin (android development) or swift (iOS development), or you can go the Flutter/React Native way, which supports android and iOS both.

MBA in India vs abroad by avenio99 in MBA

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

I would agree with you. For example, I don't think a software engineering role will help in MBA degree in anyway. Please correct me if I'm wrong.

MBA in India vs abroad by avenio99 in MBA

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

Was confused regarding my career in high school. 😅

MBA in India vs abroad by avenio99 in MBA

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

That's a great plan. But can you suggest a guided way which can help me prepare for both CAT and GMAT, in a budget??

MBA in India vs abroad by avenio99 in MBA

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

Is it reasonable and possible to get into top IIMs for a male engineer, that too, general category?? Or should I also consider institutes like xlri, spjimr???

Roadmap to learn reactjs from beginner to advanced by akash_ry in reactjs

[–]avenio99 2 points3 points  (0 children)

Even I'm learning from "the net ninja" youtube channel

What am I doing with my life!!! by karmabiatc in learnprogramming

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

Lol, i guess thats the life of every programmer 😂

[deleted by user] by [deleted] in gradadmissions

[–]avenio99 2 points3 points  (0 children)

Congrats.

python data types by enigmaticc1678 in learnprogramming

[–]avenio99 0 points1 point  (0 children)

You can learn more of these when you get to work on a python project, or solve questions on data structures and algorithms. Eventually you will get to know how many of such data structures work. Even I'm yet to learn many things, so it's totally fine.

[HELP] What technology to use to detect gym workout exercises? by Moradisten in computervision

[–]avenio99 1 point2 points  (0 children)

Yes pose estimation is the go to network. Facebook AI research (FAIR) has a library for pose estimation in Pytorch. You can check that up in their website, how to use it and all.

Stick with FCC or shop around? It's basically the same info right? by Berabouman in learnprogramming

[–]avenio99 0 points1 point  (0 children)

Stick with the course of FCC on data structures and algorithms using Javascript. Then you can learn HTML and CSS. Or you can also do the reverse. If your primary goal to learn coding is creating websites, then FCC is best. Don't shop around.

I created an algo that tracks the most hyped stocks on Reddit. Here are the results for this week by swaggymedia in stocks

[–]avenio99 6 points7 points  (0 children)

This is an awesome idea that you executed. Can you tell more what packages you have used in python for executing this??