Skip to content

Commit e445665

Browse files
committed
adding README and LICENSE, will write codebase next
0 parents  commit e445665

File tree

2 files changed

+113
-0
lines changed

2 files changed

+113
-0
lines changed

LICENSE

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2018, Vanessa Sochat
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
* Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
* Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
* Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# Open Source Art
2+
3+
[![CircleCI](https://circleci.com/gh/vsoch/opensource-art.svg?style=svg)](https://circleci.com/gh/vsoch/opensource-art)
4+
5+
- [What is OpenSource Art](#what-is-opensource-art): Read here if you want to learn about the gallery generated and housed here.
6+
- [Contribute your Work](#contribute-your-work): Contributing your work combines down to adding some files to this repository. If you aren't an artist, you can [post an issue](https://www.github.com/vsoch/opensource-art/issues) and we will help you.
7+
- [Ask a question](https://www.github.com/vsoch/opensource-art/issues): Have a question? Need some help? We are here for you!
8+
9+
Or jump right in and [View the Gallery](https://vsoch.github.io/opensource-art).
10+
11+
## What is Opensource Art?
12+
13+
While traditionally used for programming, this reposity combines open source development with community artistic contributions to create the first automated, programatically and manually generated gallery.
14+
15+
### Background
16+
17+
There is typically a strong distinction between things that are made by hand, and by machine.
18+
It's also more likely the case that you see artist work attributed to one or a few individuals - the paintings in your favorite
19+
gallery are done by one individual, or it's perhaps a collaboration between a small group.
20+
21+
Bring in open source. Open source is a powerful framework with under which many eyes can make tiny contributions to develop highly
22+
complex systems. In the context of programming, this means that a group of developers opens up their code base for contributions from
23+
the community, and many eyes on the code squash the bugs.
24+
25+
## How does this work?
26+
27+
Under this same model, many small artistic contributions can create unexpected beauty.
28+
29+
### 1. The Human Component
30+
The base of the entire gallery, whether it be code that drives its generation or the human hand, starts with a human component.
31+
How does this work?
32+
33+
1. Any member of the community can contribute a texture, a graphic, or digital piece. The contribution is done via a pull request (or contact of one of the Open Source Art maintainers, in the case the artist is not familiar with Github).
34+
2. The contribution (if necessary) can be discussed and reviewed.
35+
3. The texture is added to the library housed in the repository
36+
37+
### 2. The Digital Gallery
38+
39+
From the human component, we have a version controlled collection of community contributions. Each carries with it metadata about the artist and (if one exists) a title and description. Here is where the machine, and concepts from software engineering like version control, continuous integration, and machine learning come into play! We use these technologies to automate the process of generating new works from the existing.
40+
41+
4. Each day, a set of textures (or derivations from them) are randomly chosen during an automated testing step in a continuous integration service.
42+
5. Machine learning is performed via a reproducible container to generate a new work
43+
6. The new work is saved, and added programatically back to the gallery.
44+
45+
### 3. The Open Source Art Story
46+
47+
Over time, the gallery grows in size and complexity. We generate a new image each day, and so the earlier pieces become part of the later ones. The earliest contributions start the development of a story, and community members can contribute new textures (or similar) at any frequency to continue developing the story.
48+
49+
# Contribute Your Work
50+
51+
Contributing comes down to submission of a [pull request](https://yangsu.github.io/pull-request-tutorial/) (called a PR) to this repository.
52+
53+
### Manual Generation
54+
First, the repository, and clone it to your local computer.
55+
56+
```bash
57+
git clone https://www.github.com/<username>/opensource-art
58+
cd opensource-art
59+
```
60+
61+
Next, copy one of the current works pages under [_works](_works), and give it a unique name that is all lowercase
62+
and doesn't have any special characters. Fill in the very minimal metadata for your contribution. All
63+
fields are optional except for the layout, which you should not change from "work."
64+
Here is a template you can start with:
65+
66+
```
67+
---
68+
layout: work
69+
title: "Eye Guys"
70+
date: 2017-08-29 16:54:46
71+
author: Vanessa Sochat
72+
image: robots/robot1.png
73+
tagged: public, academic, hpc
74+
affiliation: Stanford University
75+
---
76+
77+
You can write a description here, if you like!
78+
```
79+
80+
The image path should be under the root "assets/img" in the repository. Thus for the above:
81+
82+
```bash
83+
2018/eye-guys-sochat.png --> assets/images/2018/eye-guys-sochat.png
84+
```

0 commit comments

Comments
 (0)