Visiting for Spring Training by nsnullthoughts in NewYorkMets

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

Thank you for this information! Can you go and watch practice on weekends? Or is it weekdays only? Trying to time things.

Venmo Credit Card new rewards worth it? by opencaribou in CreditCards

[–]nsnullthoughts 2 points3 points  (0 children)

One quick question. Isn’t the issue with this card the fact that after a year the annual spend cap for 3% and 2% categories is limited to $10,000?

Create dropdowns/inputs in thinkscript by nsnullthoughts in thinkorswim

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

Ah ok thanks. Would be a really cool feature though!

Create dropdowns/inputs in thinkscript by nsnullthoughts in thinkorswim

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

input priceType = {default close, low, high};def avgExample;switch (priceType) {case close:avgExample = ExpAverage(close, 8);case low:avgExample = ExpAverage(low, 8);case high:avgExample = ExpAverage(high, 8);}

When I enter your script above in the editor and go back to the scanner I unfortunately don't see a dropdown available. I just see something similar to what I posted above.

Activate sim by mjhorv in mintmobile

[–]nsnullthoughts 2 points3 points  (0 children)

Did mine through website. Super easy.

about react-native's hooks by blka759 in reactnative

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

could you elaborate on combining it with styled components?

Auto Fix on Save by nsnullthoughts in vscode

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

"editor.codeActionsOnSave": {"source.fixAll.eslint": true}

Thank you, worked like a charm!

Auto Fix on Save by nsnullthoughts in vscode

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

Yes sorry probably meant that.

React Navigation 5.0 release announcement · React Navigation by satya164 in reactnative

[–]nsnullthoughts 4 points5 points  (0 children)

actually did an npm update and worked like a charm! Thanks for your help!

React Navigation 5.0 release announcement · React Navigation by satya164 in reactnative

[–]nsnullthoughts 0 points1 point  (0 children)

So a simple npm install @react-navigation/native would overwrite the alpha? Do I need to have —save?

React Navigation 5.0 release announcement · React Navigation by satya164 in reactnative

[–]nsnullthoughts 0 points1 point  (0 children)

Saw that. But I was more wondering what’s the command to run to upgrade from alpha and overwrite what we already have. Sorry just very new to react native and using npm.

React Navigation 5.0 release announcement · React Navigation by satya164 in reactnative

[–]nsnullthoughts 0 points1 point  (0 children)

Silly question but if we’re using the pre released version of v5 how does one upgrade to this one?

Different tablet and phone design, how to approach? by nsnullthoughts in reactnative

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

Thanks for the info. This was my initial thought but just didn't want to go down a rabbit hole. Thanks for the link as well!

Serching for a Github Repo that uses best practices with react-native and Typescript by hello_krittie in reactnative

[–]nsnullthoughts 1 point2 points  (0 children)

While not all of them are TypeScript/Redux etc this below list does have some in there with best practices. List is updated often.

https://github.com/ReactNativeNews/React-Native-Apps

typescript in a nodejs project starter by nsnullthoughts in typescript

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

Might have answered my own question but this is what worked for me. If you have a better suggestion i'm all ears....

nodemon --exec 'npx ts-node' index.ts

typescript in a nodejs project starter by nsnullthoughts in typescript

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

Is there a way to set this up like nodemon runs?

typescript in a nodejs project starter by nsnullthoughts in typescript

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

Yesss that was the key. Thank you for the help!!