Arc Forumnew | comments | leaders | submitlogin
2 points by akkartik 4451 days ago | link | parent

Sorry about all the trouble. You might have an easier time with the wiki at http://sites.google.com/site/arclanguagewiki as a starting point. nex3/arc is bleeding edge since anyone can commit to it, and the install instructions on this site are out of date. Use arc 3.1 and racket as the wiki says; life will be much simpler.


1 point by kinleyd 4451 days ago | link

:) Thanks for the sympathy, and for the help. I am looking forward to some great times with Arc.

BTW, just looking ahead a bit, is it possible to run Arc on a shared hosting website? Not being mainstream, I don't see hosting services including Arc as an option, so I'd be keen to know if somehow it is technically feasible to set it up on a shared hosting website without having admin access to the box itself. I figure it would probably not be possible, in which case what would be the best options to develop on Arc for shared hosting situations?

-----

3 points by rocketnia 4451 days ago | link

I've been in that boat, wanting to use Arc on a shared host. I ended up choosing to write a static site generator in Arc, which wasn't such a bad way to go. Unfortunately, by the time that generator had few enough hacks and dependencies I was comfortable enough with releasing it, it was in JavaScript! :-p https://github.com/rocketnia/chopsgen/blob/master/chopsgen.j...

Speaking of plugging of my own JavaScript stuff, one way to use (a subset of) Arc with a shared host is to run it client-side with Rainbow.js: https://github.com/rocketnia/rainbow-js

I haven't used Rainbow.js for anything yet myself, and because of that I haven't yet bothered to have it load the standard Arc libraries automatically. Because of that, the barrier to entry is probably pretty high at the moment.

An alternative, older option is Arc-Lite, a project to implement Arc 2 in JS. It was developed back when Arc 3.1 didn't exist. I don't know how usable that is for Arc projects.

-----

1 point by kinleyd 4451 days ago | link

Heh, thanks rocketnia. I did have a feeling it would incline toward client-side Arc in Javascript.

A static site generator in Arc also sounds interesting. I know that's the direction the Jekyll folks have taken, and doing something like Jekyll with Arc generated static code would be of interest to me. Let me tuck away this thought as I get up to speed with core Arc.

-----

1 point by akkartik 4450 days ago | link

Is there an example app that demonstrates how to use it?

-----