Apps¶
Below are a collection of Apps and Tools that can be deployed on either / both SAS 9 and SAS Viya platforms.
Fun and Games¶
Sonic the Hedgehog on SAS¶
A SASjs wrapper for this remake of the sega classic! Works on SAS 9 only (due to default CSP settings on Viya).
Source: https://github.com/allanbowe/sonic
Deployment:
filename playme url "https://raw.githubusercontent.com/allanbowe/sonic/master/sonic.sas";
%inc playme;
RockRoller¶
Dodge trees to see how far you can roll this rock in this infinite game! Works on both SAS 9 and Viya.
Source: https://github.com/macropeople/rockroller
SAS Streamed SAS Rap¶
Run the code below (SAS9 or Viya), and open the link in a browser to hear a SAS streamed SAS Rap by Thiago De Souza
filename playme url "https://sasjs.io/rap.sas";
%inc playme;
source: https://github.com/allanbowe/sasrap
Tools¶
Viya Client Token Generator¶
The following code (Viya only) will create an app for generating a Client ID + Secret with various configuration options.
filename vt url "https://raw.githubusercontent.com/sasjs/viyatoken/master/runme.sas";
%inc vt;
Run the above, then open YOURSERVER/SASJobExecution?_PROGRAM=/Public/app/viyatoken/clickme
Source: https://github.com/sasjs/viyatoken
Viya File Uploader¶
This app will let you choose a local file and upload it to a directory on the Viya server. It returns a directory listing.
To deploy:
filename mc url "https://raw.githubusercontent.com/sasjs/fileuploader/master/runme.sas";
%inc mc;
Run the above, then open YOURSERVER/SASJobExecution?_PROGRAM=/Public/app/fileuploader/clickme