COLLECTED BY
Organization:
Archive Team

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.
History is littered with hundreds of conflicts over the future of a community, group, location or business that were "resolved" when one of the parties stepped ahead and destroyed what was there. With the original point of contention destroyed, the debates would fall to the wayside. Archive Team believes that by duplicated condemned data, the conversation and debate can continue, as well as the richness and insight gained by keeping the materials. Our projects have ranged in size from a single volunteer downloading the data to a small-but-critical site, to over 100 volunteers stepping forward to acquire terabytes of user-created data to save for future generations.
The main site for Archive Team is at archiveteam.org and contains up to the date information on various projects, manifestos, plans and walkthroughs.
This collection contains the output of many Archive Team projects, both ongoing and completed. Thanks to the generous providing of disk space by the Internet Archive, multi-terabyte datasets can be made available, as well as in use by the Wayback Machine, providing a path back to lost websites and work.
Our collection has grown to the point of having sub-collections for the type of data we acquire. If you are seeking to browse the contents of these collections, the Wayback Machine is the best first stop. Otherwise, you are free to dig into the stacks to see what you may find.
The Archive Team Panic Downloads are full pulldowns of currently extant websites, meant to serve as emergency backups for needed sites that are in danger of closing, or which will be missed dearly if suddenly lost due to hard drive crashes or server failures.
ArchiveBot is an IRC bot designed to automate the archival of smaller websites (e.g. up to a few hundred thousand URLs). You give it a URL to start at, and it grabs all content under that URL, records it in a WARC, and then uploads that WARC to ArchiveTeam servers for eventual injection into the Internet Archive (or other archive sites).
To use ArchiveBot, drop by #archivebot on EFNet. To interact with ArchiveBot, you issue commands by typing it into the channel. Note you will need channel operator permissions in order to issue archiving jobs. The dashboard shows the sites being downloaded currently.
There is a dashboard running for the archivebot process at http://www.archivebot.com.
ArchiveBot's source code can be found at https://github.com/ArchiveTeam/ArchiveBot.
The Wayback Machine - https://web.archive.org/web/20190410212554/https://www.haskell.org/cabal/
The Haskell Cabal | Overview
Cabal: Common Architecture for Building Applications and Libraries
Introduction
Cabal is a system for building and packaging Haskell libraries and programs.
It defines a common interface for package authors and distributors to
easily build their applications in a portable way. Cabal is part of a larger
infrastructure for distributing, organizing, and cataloging Haskell libraries
and programs.
The term cabal can refer to
either: cabal-the-spec (.cabal
files), cabal-the-library (code
that understands .cabal files), or cabal-the-tool
(the cabal-install package which provides
the cabal executable); usually folks are
referring to cabal-the-tool when they say cabal.
To install the cabal executable you can
use ghcup (if you're using
Linux), the Haskell
Platform, install the cabal-install
package from your distributions package manager (if using Linux or Mac),
or download the source or prebuilt binary from
the Download page.
If you already have the cabal executable you can upgrade it by running:
cabal install Cabal cabal-install
If the above command failed for any reason see the Update Troubleshooting section below.
Sometimes the older installed version is still on the program search
$PATH, you can check you're running the
latest version with the command below. If it doesn't match the output of
the cabal-install command above you'll
need to update it.
cabal --version
Quick Start Guide
Start by installing the cabal executable (see the previous section) and the Haskell compiler ghc (see the GHC download docs).
Starting a new project
mkdir myproject && cd myproject
cabal init -n --is-executable
cabal v2-run
- The cabal init command will create all the needed files to create an executable.
- -n non-interactive mode
- --is-executable create a package containing an executable
- The cabal v2-run will run the executable in the project.
You'll notice that the run command is prefixed
with v2-, this is because cabal is
transitioning to
a new
build model which makes a lot of things better. Eventually this will
become the default, but for now you need to ask for it specifically.
Documentation
Related Pages
Before you try anything else, if you already have a new-ish version of cabal
you can use the v2/new commands. Try the following:
cabal new-install Cabal cabal-install
If this works update the cabal command on
your path with the version installed.
ERROR: cabal: The following packages are likely to be broken by the reinstalls: ...
Use --force-reinstalls if you want to install anyway.
This can happen if your package archive gets into a broken state. How to
fix this depends on the situation. Sometimes re-running the command with
--force-reinstalls works, other times you
have to remove your whole package archive and start over again.
Thankfully this doesn't happen very often, if you run into this issue ask
a question on StackOverflow.