<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://tech.uvoo.io/index.php?action=history&amp;feed=atom&amp;title=Chicken-scheme</id>
	<title>Chicken-scheme - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://tech.uvoo.io/index.php?action=history&amp;feed=atom&amp;title=Chicken-scheme"/>
	<link rel="alternate" type="text/html" href="https://tech.uvoo.io/index.php?title=Chicken-scheme&amp;action=history"/>
	<updated>2026-04-26T01:19:02Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.2</generator>
	<entry>
		<id>https://tech.uvoo.io/index.php?title=Chicken-scheme&amp;diff=105&amp;oldid=prev</id>
		<title>imported&gt;Justin: Created page with &quot;# Tools  Command line tools are written in chicken scheme.  ## Why Chicken Scheme?  1. Need to create small unix friendly tools.  2. Need good cross-platform support for files...&quot;</title>
		<link rel="alternate" type="text/html" href="https://tech.uvoo.io/index.php?title=Chicken-scheme&amp;diff=105&amp;oldid=prev"/>
		<updated>2019-01-14T22:59:01Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;# Tools  Command line tools are written in chicken scheme.  ## Why Chicken Scheme?  1. Need to create small unix friendly tools.  2. Need good cross-platform support for files...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;# Tools&lt;br /&gt;
&lt;br /&gt;
Command line tools are written in chicken scheme.&lt;br /&gt;
&lt;br /&gt;
## Why Chicken Scheme?&lt;br /&gt;
&lt;br /&gt;
1. Need to create small unix friendly tools. &lt;br /&gt;
2. Need good cross-platform support for filesystem, http, etc.&lt;br /&gt;
2. Alpheus and Justin like Lisp.&lt;br /&gt;
&lt;br /&gt;
From [FAQ](https://wiki.call-cc.org/man/4/faq)&lt;br /&gt;
&lt;br /&gt;
- CHICKEN is portable because it generates C code that runs on a large number of platforms.&lt;br /&gt;
- CHICKEN is extensible, since its code generation scheme and runtime system/garbage collector fits neatly into a C environment.&lt;br /&gt;
- CHICKEN offers better performance than nearly all interpreter based implementations, but still provides full Scheme semantics.&lt;br /&gt;
&lt;br /&gt;
## Eggs&lt;br /&gt;
&lt;br /&gt;
To [install eggs](https://wiki.call-cc.org/eggs):&lt;br /&gt;
&lt;br /&gt;
```&lt;br /&gt;
chicken-install {egg name}&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
[Egg Index](http://wiki.call-cc.org/chicken-projects/egg-index-4.html)&lt;br /&gt;
&lt;br /&gt;
# Install&lt;br /&gt;
&lt;br /&gt;
## Debian&lt;br /&gt;
&lt;br /&gt;
To install chicken on debian:&lt;br /&gt;
&lt;br /&gt;
```&lt;br /&gt;
sudo apt install chicken&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
## Windows&lt;br /&gt;
&lt;br /&gt;
### MinGW-w64&lt;br /&gt;
&lt;br /&gt;
Windows requires mingw-w64 for csc and for building itself. This is a one time installation&lt;br /&gt;
&lt;br /&gt;
[Direct link](https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/installer/mingw-w64-install.exe/download)&lt;br /&gt;
&lt;br /&gt;
The direct link comes from the listing titled &amp;quot;MinGW-W64-builds&amp;quot; on this page:&lt;br /&gt;
&lt;br /&gt;
[Mingw-w64](http://mingw-w64.org/doku.php/download)&lt;br /&gt;
&lt;br /&gt;
**Note:** You must use mingw-w64, classic mingw does not work (Justin tried).&lt;br /&gt;
&lt;br /&gt;
&amp;gt;  It is recommended to use mingw-w64 in place of mingw32 as the mingw32 project is no longer as actively maintained. [Reference](https://wiki.call-cc.org/platforms)&lt;br /&gt;
&lt;br /&gt;
### Building Chicken&lt;br /&gt;
&lt;br /&gt;
To install chicken on windows, download a [tarball](http://code.call-cc.org/)&lt;br /&gt;
&lt;br /&gt;
unpack the tarball&lt;br /&gt;
&lt;br /&gt;
```&lt;br /&gt;
tar -xzf chicken-4.13.0.tar.gz&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
```&lt;br /&gt;
mingw32-make PLATFORM=mingw ARCH=x86-64 PREFIX=c:/chicken&lt;br /&gt;
mingw32-make PLATFORM=mingw ARCH=x86-64 PREFIX=c:/chicken install&lt;br /&gt;
``` &lt;br /&gt;
[Reference](https://wiki.call-cc.org/compiling-chicken-on-windows-xp-with-mingw)&lt;br /&gt;
&lt;br /&gt;
Note that the build process generates a `chicken-defaults.h` and `chicken-config.h` based on the system configuation. If the build fails you may have to erase these to have it regenerate.&lt;br /&gt;
&lt;br /&gt;
Then add `C:\chicken\bin` to the users' path. (My Computer -&amp;gt; Properties -&amp;gt; Advanced Settings -&amp;gt; Enviornmental variables)&lt;br /&gt;
&lt;br /&gt;
## Our Windows Server&lt;br /&gt;
&lt;br /&gt;
You can get into the server and setup tunneling for VNC by typing:&lt;br /&gt;
&lt;br /&gt;
```&lt;br /&gt;
ssh -p 39089 cryptofex@vip1.pyr8.io -L 5900:localhost:5900&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Talk to Justin for the password.&lt;br /&gt;
&lt;br /&gt;
`vim` and `nano` are installed.&lt;br /&gt;
`exit` can be used to logoff.&lt;br /&gt;
&lt;br /&gt;
With SSH running you can use a VNC client such as tiger-vncviewr. The VNC password is admin.&lt;/div&gt;</summary>
		<author><name>imported&gt;Justin</name></author>
	</entry>
</feed>