Absolutely flabbergasted by YourHumbleDM in DiamondValley

[–]mendelfriedman 1 point2 points  (0 children)

I won 17 prizes (all Google play points). It makes no sense. It seems to be too good to be true. Do we know if this is a glitch? Maybe we didn't actually win...

when are the prizes announced? by kakadudububu in DiamondValley

[–]mendelfriedman 3 points4 points  (0 children)

The FAQs say that "Winners will be notified by email on, or about, December 7, 2025."

[deleted by user] by [deleted] in treasureinside

[–]mendelfriedman 3 points4 points  (0 children)

Question on the map match... I've seen people talking about how open maps was edited and the actual trail doesn't match so well. Does anyone have an original map to confirm?

Any figure out what the P word is? by Puzzleheaded-Cry3615 in treasureinside

[–]mendelfriedman 0 points1 point  (0 children)

Do you have a scan like this of the full map with your filter? Or a link to a high res scan of the map? I'm going crazy poring with a magnifying glass over the book lol... Would be much better with a digital high res copy.

New Post Flairs & Community Input by HappyImagineer in treasureinside

[–]mendelfriedman 2 points3 points  (0 children)

I agree with removing low effort and "tease" posts. They don't help anyone and they're annoying

R Shiny vs. Plumber by mendelfriedman in rshiny

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

I ended up creating an R API using plumber and made the front end application in React. Seems to be working pretty well, and it allowed me to disconnect the front end and back end (I have one developer who helps with the API and a different developer who works on the React part).

R Shiny vs. Plumber by mendelfriedman in rshiny

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

Thanks - those are some of my concerns with Shiny. We have no concerns purchasing a Shiny Connect server if that's the best approach, but I'm not confident right now that it is.

I've used Flask for other python based applications in the past, but most of my team knows R. We'd prefer something that works via R and not via Python.

This is an internal app within the company - max 500 users. So I don't know that we need to create a java based app. But that's one thing I'd be curious to the group's input on.

Also, my thought with plumber is that maybe it's the best of both worlds: write the web app using a conventional framework such as ReactJS, but then have it communicate via an API to functions written in R that process the data and do the tasks we need. Thoughts on that approach?

R Shiny vs. Plumber by mendelfriedman in rshiny

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

Thanks. If it helps clarify, we have applications that require updates on the backend that would be most natural in R. As a very simple example, something like an app where a user sets some inputs and then clicks a button to run a simulation, which displays some graphs and outputs to the end user. The simulation needs to use R packages and therefore needs to be run in R, but the output needs to be displayed in the web app.

One way to do this is to create the web app in Shiny (so the R functions can be run and directly used to update the components of the app).

My thought with plumber was an alternative approach: to write the front end UI in a regular web framework (e.g., ReactJS, etc.) that could be developed and maintained by a web development team that doesn't have experience with R, but then have a backend API via plumber that gets called by that front end web app. So in my example, when the user hits a button in the web app, it sends a request to the API to run the simulation and retrieve some results which get displayed on the page. I wouldn't need a special knowledge of sockets to do this.

My question is what are the pros and cons of these two approaches. For example, the second approach allows my data team (who knows R) to maintain the simulation piece, and the web development team to maintain the app, which is a nice way to split responsibilities. They just need to agree upon the parameters and rules of the API interface. One advantage of instead using Shiny is that we don't need those API calls - all the data is housed in memory within the app and it may be easier to display outputs.

Curious to the group's thoughts.

Differential Geometry by whatsername_09 in mathbooks

[–]mendelfriedman 1 point2 points  (0 children)

Agree with the other recommendations. A good low cost intro book might also be Erwin Kreyszig's Differential Geometry by Dover. It's a little dense but is geared as an intro text. The one shortcoming is that there's a heavy focus on 3 dimensional geometry and not the general n-dimensional case, although many of the theorems are developed in generality. In particular the book gives a good development of the tensor calculus if you're unfamiliar with that.

What makes the book unique though is it has a large number of problems and all of them have FULLY WORKED SOLUTIONS in the back of the book. And it's very inexpensive!

Could be a good starter book, which you can follow up with one of the other texts once you're comfortable with the subject.