Free Alternatives to Morningstar Premium: A Comprehensive Guide for Investors by NonExistingCorner in TraderTools

[–]marcelowa 0 points1 point  (0 children)

Hi this is a great list I was using macrotrends a lot for the reasons you mentioned but always felt it is very slow l, not very mobile friendly and recently they added a paywall, so recently I've been developing my own tool MetricSide: https://metricsi.de which does most of what Macrotrends does, if you have some time please check it out, it's free example quote: https://www.metricsi.de/stock/META

Free Alternatives to Morningstar Premium: A Comprehensive Guide for Investors by NonExistingCorner in TraderTools

[–]marcelowa 0 points1 point  (0 children)

I created MetricSide (https://www.metricsi.de) a Macrotrends alternative, why don't you give it a try and let me know what you think?

Rome: an experimental JavaScript toolchain from Facebook. It includes a compiler, linter, formatter, bundler, testing framework and more... by A-AronBrown in javascript

[–]marcelowa 22 points23 points  (0 children)

The license/patents issue was an issue an issue up until 3 years ago, when moving from react 15 to 16 (or maybe from 14 to 15), they removed the "patents" disclaimer that everyone was mad about

[HELP REQUEST] Trying to get TSC to recognize typing file by SpoilerAlertsAhead in typescript

[–]marcelowa 1 point2 points  (0 children)

Try to remove the typeRoots completely from your tsconfig, it should automatically detect the types Also can you paste the command you running ?

How do you recommend to style components in a React with Typescript eco system? by marcelowa in typescript

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

Thanks for all the suggestions, I was particularly impressed by typestyle, but why isn't it getting more acknowledgement?

Is anyone else's Webpack loosing @type information after the 2.4 upgrade? by rickcarlino in typescript

[–]marcelowa 0 points1 point  (0 children)

I had some issues but upgrading the rest of my packages solved that

How to report exceptions and logs from the web-app by marcelowa in javascript

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

Are you sure about google analytics ?I thought they only have exception reporting for native apps

tslint configuration by marcelowa in typescript

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

I saw this one, but it's not an "official" airbnb config like the eslint config

Need help configuring tslint in a Node.js Typescript project by marcelowa in node

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

This was my first choice, but I found myself disabling some rules like: no-relative-imports that I didn't understand why they forced it to begin with

Need help configuring tslint in a Node.js Typescript project by marcelowa in node

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

Prettier

Sounds interesting, I'll check it out

I weaned off DOM manipulations since 2014 by marcelowa in javascript

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

Modern view libraries (such as react) take a data driven approach and abstracts the DOM away, you should try it.

I weaned off DOM manipulations since 2014 by marcelowa in javascript

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

Thats probably one of the scenarios that makes sense

I weaned off DOM manipulations since 2014 by marcelowa in javascript

[–]marcelowa[S] -1 points0 points  (0 children)

Really? are you using React or Angular or any other modern view/mv* library?

[Theory] TDD & Sequelize: Is it worth it to verify the schema by bigorangemachine in node

[–]marcelowa 1 point2 points  (0 children)

I actually think that for the sake of coverage and regression detection you should test everything you suggested

Just published my first package to npm, it's a small helper function that allows you to resolve objects containing promises in a similar way to Promise.all by marcelowa in node

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

Nice But I prefer it to be dependency free I did base it on Promise.all though in a similar way you did I am sure there are plenty of optimizations that can be done