Android Tablet Scripting for Basic Text Analytics and Discrete Modeling

What language / ideal would you use to use an 8 inch Android tablet to process text files and output the result to a file.

I tried Cloud 9 as well as ssh-to my VPN, but 8 "is a bit for that.

My requirements are not that high:

  • String manipulation, including expressions in expressions.
  • Data structures such as lists and maps are desirable.
  • Random numbers

Thanks for any suggestions!

(I'll try Paul Laughton BASIC! ... It's been decades since I last wrote material in QBasic, Amiga Basic, and Casio basic, but it might work for this purpose)

Update: Tried the main one! and look forward to experimenting with the suggestions below.

First edit shows on 8-inch tablet without Bluetooth keyboard

+3


source to share


2 answers


As an IDE, I think you can't get past DroidEdit . It has a great minimal interface with file tabs and Dropbox and SFTP support. On the language side, I prefer Python for all the tasks you listed, but DroidEdit supports syntax for over 100 languages.



DroidEdit can compile / run code remotely over SSH and return results. In addition, it also supports SL4A to run various scripting languages ​​directly on Android.

+3


source


ruby-language is an open source, dynamic language focused on simplicity and performance. It has an elegant syntax that is natural to read and easy to write, allowing you to meet and exceed the requirements you have specified

Ruboto IRB allows interactive Ruby to run on Android. Edit, save and run scripts on your phone. Great for teaching, prototyping, and small applications. Ruboto IRB takes the power of JRuby to open up Android APIs. Allows you to write and run scripts.

It's available on play , but if you are confident with Android software, you would rather start with ruboto-irb to install the pre-made binary package. These packages can be found at https://github.com/ruboto/ruboto-irb/tree/master/dist .



additional helpful documentation:

+2


source







All Articles