Welcome! This repository will be a resource where LIS types can play around with Git and GitHub.
You do not have to be a member of the Library Code Year Interest Group to participate.
We will have three projects in this repository eventually:
- A "getting started" project to get you rolling with GitHub
- A web design project involving HTML/CSS/JavaScript
- A metadata project.
- To get started: follow the instructions in the getting started project. This will have you install git, set up an account on GitHub, and contribute to this repository.
- Web Design - project TBD! We've discussed something using the Worldcat Search API, which could be easily reused at almost any library.
- Metadata - project TBD! We've discussed working with Linked Data, specifically the Friend-of-a-Friend ontology. Perhaps working with sample MARC records with the pymarc or ruby-marc libraries, too.
If the two "TBD" projects didn't clue you in, this repository is still a long ways from being complete. See below for how to help.
Awesome! Thanks for offering.
You can answer people's questions in the issue queue or propose projects for people to work on. Does something not make sense? Are the instructions inaccurate or poorly written? Do you have more resources on learning git? Send a pull request! We'll be happy to include your ideas.
Right now the biggest priority is finishing the "Getting Started" project so that people can get up and running with git and GitHub.
Markdown—the language this readme is written in—is a markup language, like HTML and XML, designed to be lightweight and easy to type quickly. Markdown files typically end in .md, .mdown, or .markdown. GitHub uses markdown as its preferred format for displaying readme files like this one.
The full Markdown syntax documentation is here and the GitHub-flavored documentation is here. The GitHub syntax is almost identical; one can get by without ever referencing its documentation. The most useful piece is highlighting specific programming languages like so:
```javascript
// your code goes here
```
The JavaScript inside that block would be syntax-highlighted appropriately.
There's also a nice cheatsheet in adam-p's markdown-here repo.