Slime Breeder Mac OS

I’ve been a Lisp nut for years. I was first exposed to Lisp on my TRS-80, when I was about thirteen; Randy Beer had written a Lisp introduction in the March ’83 issue of 80 Micro, and I remember reading it again and again. I’ve used various flavors of Lisp for exploratory prototyping programming over the years, and have enjoyed using both Scheme and Common Lisp.

Getting a dialect of Common Lisp running on Mac OS X isn’t hard — in fact, if you’re just setting out, an excellent choice is LispWorks Personal Edition. I’ve recently gotten to the point, however, where I’ve wanted to do some work with the Common Lisp Interface Manager, which isn’t supported in LispWorks Personal Edition under Mac OS X, and set out to configure a Common Lisp installation on my MacBook from the ground up.

It wasn’t difficult, although it took some Googling to get all the pieces together; shortly after I finished, someone on the Bay Area Functional Programmer‘s mailing list asked about running Common Lisp on Mac OS X, and I put together my notes on the topic and replied. The list is fairly small — less than 300 members — and I promised them and myself that I’d organize the notes and provide them in a more accessible location.

What follows is a step-by-step installation guide to installing Steel Bank Common Lisp (SBCL) and McCLIM on a PowerBook G4; I undertook this from the initial notes I took configuring the MacBook. I chose SBCL because it’s well-supported by the open source community and works well with McCLIM; I have nothing against other Common Lisp implementations, including Clozure.Â

Slime Rancher is the tale of Beatrix LeBeau, a plucky, young rancher who sets out for a life a thousand light years away from Earth on the ‘Far, Far Range’ where she tries her hand at. August 16, 2020 Slime Rancher is a charming, first-person, sandbox experience. Play as Beatrix LeBeau: a plucky, young rancher who sets out for a life a thousand light years away from Earth on the ‘Far, Far Range.’. Slime Time is a bullet-hell shooter where you use the backfire of your weapons to move. Use your laser-jetpack to jump and your plasma-rifle to steer as you navigate a sea of bullets, destroying enemies along the way. (run to unpack 'Slime Forest' folder containing launch icons) Windows Updater (run to update your old version) Mac OS X Demo; Note: Apple gives a similar warning message to Microsoft, as explained above. Depending on the version of Mac OS you run, you may need to change your security settings to run the game, as in this YouTube video. Our software library provides a free download of Slime Volley 2.4.2 for Mac. The size of the latest downloadable setup file is 3.7 MB. Our built-in antivirus checked this Mac download and rated it as 100% safe. The actual developer of this free Mac application is Come Bernigaud. The software lies within Games, more precisely Arcade.

A word of warning is in order: I’m comfortable with Common Lisp, but relatively unfamiliar with how Common Lisp programmers handle package distribution. I get the basic idea behind ASDF, of course, but I’m not seasoned in its use. Consequently, I had a get-things-working-and-clean-up-later mentality when I undertook my first SBCL-McCLIM configuration, and this largely remained when I wrote what follows. Other Lisp developers may have better ways to organize their working environments, and I’d welcome positive comments (drop me an email, and we’ll figure out how to incorporate your feedback).

Starting out, you should have a relatively up-to-date Mac OS X box (I’ve done this on Mac OS X 10.4.x and 10.5.x systems). When you’re done, you will have installed Carbon Emacs, SLIME, SBCL, and McCLIMÂ configured to work with the X Windows server Mac OS X provides, along with darcs.Â

Carbon Emacs

Carbon Emacs on Mac OS X provides you with an Emacs instance running as a Mac OS X application. I like it for general editing, as well as the obvious purpose of giving me a place to run SLIME and do my Lisp development.

  1. Get Carbon Emacs from its home page. If you need a version for a version of Mac OS X other than 10.5, check here.
  2. Mount the disk image you download, and copy Emacs.app to your Applications folder.

Steel Bank Common Lisp

  1. Download SBCL. Choose either X or P on this page for the X86 or PPC build, respectively.
  2. Unpack the distribution, and open a Terminal to the directory where you’ve unpacked the distribution.
  3. Install per the INSTALL instructions. I used the default options, placing SBCL in /usr/local by issuing:

At this point in time, you should be able to run SBCL from the shell.

Breeder

SLIME

SLIME in Carbon Emacs is swell.

  1. Download SLIME. I used CVS in the terminal, stashing the whole thing in a hidden directory. If you use a lot of emacs packages, you may well already have a directory for them, and you can put SLIME there as well.
  2. Wire SLIME up to your emacs installation. I followed the instructions in the SLIME documentation.
    In a nutshell, it says to add the following to your ~/.emacs:Â Â Â Â

    where
    /usr/local/bin/sbcl is the path to SBCL you specified in the previous section, and
    ~/.slime is the path to the slime directory you specified in the previous step.

You can stop at this point if you don’t want to work with McCLIM; you have a working SBCL
environment using Carbon Emacs and SLIME. To use SLIME, start emacs from the Terminal or
Carbon Emacs and run SLIME using M-x slime.

darcs

Some of the stuff you need for McCLIM is kept in a darcs repository, so you first need to get and install darcs. I used one of the pre-built binaries. Make sure that however you do this, darcs is in your path when you’re done installing, of course.
Â

McCLIM

I followed these steps  to build and configure McCLIM from source.

  1. You’re going to use ASDF to get various Common Lisp packages, and you need a place to put the resulting files, as well as to tell SBCL where that place is. Make a directory ~/lispsystems in your home directory, and configure SBCL by adding the following to your ~/.sbclrc file:
  2. Fetch the McCLIM sources.
  3. Fetch McCLIM’s dependencies: the Common Lisp Library for X, spatial-trees, and flexichain:
  4. Build the McCLIM system. Fire up Carbon Emacs, run SLIME using M-x slime, and enter:

    Be prepared to wait a while as the system builds for the first time.Â

  5. To see if everything works as expected, you can build the samples:
  6. To play with the samples:

You also have the option of getting McCLIM using clbuild, as this page describes. That worked for me under Mac OS X 10.5, but did not under Mac OS X 10.4, and I didn’t bother to investigate what was different.Â

Slime Breeder Mac Os X

Good luck and happy hacking!

Emacs

Emacs is a very flexible and extensible editor that has been around for a long time. Due to its history and huge community, it is capable of covering pretty much any area of programming and more.

Bundled with Emacs are some very useful packages, the major ones being Slime, Magit, and Company.

SBCL

SBCL is one of the fastest and most capable Lisp implementations available today.

Quicklisp

Quicklisp is the standard Lisp package manager that allows you to retrieve and manage over a thousand libraries with a few keystrokes.

Slime Breeder Mac Os Download

Git

Slime Breeder Mac Os 11

Git is perhaps the most widely used version control system today. It allows you to manage changes in code over small and large projects fast and efficiently.