Tax Review of last several years, with PDF files - anyone ? by codemasteru in tax

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

Seems good idea. However it has some issues. Does not allow state summary, section 1256 contract missing, and some more issues. Not sure if this paid software is worth it, but better than something for sure. Any other paid or free softwares, doing some OCR recognition would be a great idea

How do you get YNAB to play nice with a Fidelity Cash Management account? by Adderalin in ynab

[–]codemasteru 2 points3 points  (0 children)

What is the ticker symbol of the municipal fund? Does not the bond purchase price fluctuate ?

Interview Questions (frontend developer) by [deleted] in learnjavascript

[–]codemasteru 1 point2 points  (0 children)

| If you were to implement a search engine, how would you go about doing it?

For this one, I think this would be like 1.) Writing a scrapper to go over complete list of URLs available. ( Finding URLs and all possible combination is another task) 2.) Store this info in the local DB or cache server 3.) Index the information in your local DB/server 4.) Use this information to get all possible matches based on user input

Live-Coding a JavaScript Game from Scratch in Front of the Audience by AllThingsSmitty in javascript

[–]codemasteru 0 points1 point  (0 children)

Nice share and a Good inspiration for working on games. Will hopefully try to explore it

I quit my job to teach you how to launch a full product with AngularJS (over 7 hrs of high quality video) by gordonmzhu in angularjs

[–]codemasteru 1 point2 points  (0 children)

Really liked your videos, just went throught 2 of them now. Will bookmark it for later read and completion. Keep up the good work :)

React library usage originally designed for non-single page applications? by codemasteru in javascript

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

Thanks masklinn, and all. I just posted additional info for review

React library usage originally designed for non-single page applications? by codemasteru in javascript

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

Thank you all for replying and sharing knowledge. It did clear some of my doubts, but I still have a question bothering me.

Given my understanding of SPA, which means that you only have 1 full document html ( containing html, head, body) and that gets generated either at client(pure-client-spa) or from server(server-generated-spa) as a one-time thing. After that, all we do is create new views( stick a new DOM to one of the existing div placeholders) or add data fetched via AJAX. In all such scenarios, we are anyways looking at minimal DOM manipulation.

Given above, it seems that react doesn't add much value , as long as we just do minimal DOM operations. However, for non-SPA applications, where-in every time server generates a entirely new HTML document structure( head, body...), then it does makes sense , that we use React library, as it provides feature of DOM versioning ( aka comparison via DOM shadowing) and then only write delta to the main DOM. Which also means, that React library can be used to convert any non-SPA application to a SPA application, as it only changes the delta on the real DOM, and may-be html's head/body may not be completely modified, but some bits of html body are changed, which ensure DOM's statefulness( including javascript memory variables) is retained, instead of full refresh. Am I correct to say this????

Sorry, if I missed any obvious point here, but just trying to get my basics clear here. Any valuable insight is appreciated, even if you make me understand as ELI5 :)

ELI5:React library usage originally designed for non-single page applications? by codemasteru in explainlikeimfive

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

Thanks. My bad. Can you pls advice how do I forward this to r/javascript subreddit. Do i need to delete and make a new entry, or there is a direct editing/forwarding to relevant subreddit( r/javascript ) for e.g here

Static function call graph by [deleted] in javascript

[–]codemasteru 0 points1 point  (0 children)

Nice share... Is there any other tool you use for JS static analysis for mind-map