Your SAS Studio instance has an autoexec - this is a place for code that will run automatically at the start of your session. Just choose Options / Autoexec File and paste your code into the window.
What to put there?
Well you could add these two lines of code and make the entire sasjs/core library available to your session!
filename mc url "https://raw.githubusercontent.com/sasjs/core/main/all.sas";
%inc mc;
You might also put your hackathon specific setup scripts and macro variables there, so that they are always active when reloading your session.
Thanks @AllanBowe ,
I require "my" team ( @SomnathP ) to include this in their autoexec. 😉
If they are looking for documentation on this MacroCore library
, is this the best place to send them to : https://sasjs.io/sasjs-core/ ??
Also a tip for my co-mentor : @surajkamath
See also here :
SAS open-source treasures from around the world: SASjs
By Leonid Batkhan on SAS Users February 16, 2022
https://blogs.sas.com/content/sgf/2022/02/16/sas-open-source-treasures-from-around-the-world-sasjs/
Thanks,
Koen
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Watch the 2024 SAS Hackathon Awards Ceremony and experience the excitement all over again!
Find more tutorials on the SAS Users YouTube channel.