RStudio,a new IDE for R
rstudio.org
RStudio,a new IDE for R
1–10 of 36 posts
Re: RStudio,a new IDE for R
#2I was looking for the Buy button when I saw the link to github.
Re: RStudio,a new IDE for R
#3Re: RStudio,a new IDE for R
#4Edit: Found the answer on their blog:
> RStudio is also a company, and we plan to sell services (support, training, consulting, hosting) related to the open-source software we distribute.
Re: RStudio,a new IDE for R
#5Re: RStudio,a new IDE for R
#6Very slick UI. How is this done? Is the main UI HTML/Javscript or QT? I guess it's good that I can't immediately tell.
Re: RStudio,a new IDE for R
#7https://github.com/rstudio/rstudio/tree/master/src/cpp/core/...
Can anyone familiar with writing web servers in C comment on this? For instance, how full featured is it? How useful is the code for learning about web servers?
Re: RStudio,a new IDE for R
#8Very slick UI. How is this done? Is the main UI HTML/Javscript or QT? I guess it's good that I can't immediately tell.
Thanks! It's HTML/Javascript. (Note that you can use it as a webapp, we couldn't do that with Qt obviously)
Care to expand on how Qt, GWT, pure Javascript mix? I think you guys have really pulled off something great in terms of cross platform support and the web.
Re: RStudio,a new IDE for R
#9I was browsing through the web server implementation: https://github.com/rstudio/rstudio/tree/master/src/cpp/core/... Can anyone familiar with writing web servers in C comment on this? For instance, how full featured is it? How useful is the code for learning about web servers?