Run your R calculations without leaving Telegram ๐
๐ Link - https://t.me/rcompilerbot
โ๏ธUsage: Start bot and send him any R script. Example: print("hi")
๐No image/plot support. Calculations only!
๐ Bot is on Alpha stage
๐จโ๐ปContact admin: @Said_Alphv
Generally, infrastructure is not complexed. When you send code to bot, it does preprocess to raw text and sends output to temp .R file that is created inside /tmp/. For each user unique temporary folder generated with built-in encryption. Example is User A executes script -> new temp.R created in /tmp/abcde123, but for User B temp.R will be created in /tmp/defgh345 as an example. Execution is working based on subprocess module and spawning R language interpreter from system and specifying temp.R as argument. Everything works under Docker container in safe environment, bot has built-in loop protection but I am working on fixing detailed safety issues and would appreciate any kind of pull requests with bugs and etc.