All Projects → beautyjoy → Bjc R

beautyjoy / Bjc R

The Beauty and Joy of Computing public resource repository.

Projects that are alternatives of or similar to Bjc R

OSPAT
Open Source Psychedelic-Assisted Therapy Curriculum
Stars: ✭ 19 (-26.92%)
Mutual labels:  curriculum
Teaching Materials
GDI SF - Web Development and Programming Curriculum
Stars: ✭ 360 (+1284.62%)
Mutual labels:  curriculum
Curriculum
👩‍🏫 👨‍🏫 The open-source curriculum of Enki!
Stars: ✭ 624 (+2300%)
Mutual labels:  curriculum
iot-curriculum
Hands on labs and content for students and educators to learn and teach the Internet of Things at schools, universities, coding clubs, community colleges and bootcamps
Stars: ✭ 110 (+323.08%)
Mutual labels:  curriculum
Cybersecurity
A curriculum for a high school cyber security course.
Stars: ✭ 329 (+1165.38%)
Mutual labels:  curriculum
Textbook Curriculum
Ada Developers Academy Online Curriculum
Stars: ✭ 396 (+1423.08%)
Mutual labels:  curriculum
curriculum
Democratizing Technical Education 🐮
Stars: ✭ 43 (+65.38%)
Mutual labels:  curriculum
Curriculum Graph
An attempt to organize and update the old course progression tree used by compsci students of UFSC.
Stars: ✭ 5 (-80.77%)
Mutual labels:  curriculum
Sobre
Informações gerais sobre o Centro de Treinamento
Stars: ✭ 345 (+1226.92%)
Mutual labels:  curriculum
Ada Build
The Ada Developers Academy Jump Start program, which is intended for anyone who is interested in beginning their journey into coding.
Stars: ✭ 551 (+2019.23%)
Mutual labels:  curriculum
guia-laboral
Tips para un buen Curriculum Vitae y filtrar malas pegas
Stars: ✭ 39 (+50%)
Mutual labels:  curriculum
Web Dev For Beginners
24 Lessons, 12 Weeks, Get Started as a Web Developer
Stars: ✭ 39,380 (+151361.54%)
Mutual labels:  curriculum
Curriculum
The curriculum of Techtonica, a free tech training and job placement program for women and non-binary adults with low incomes.
Stars: ✭ 414 (+1492.31%)
Mutual labels:  curriculum
visual-curriculum
a better way to visualize your university credits and disciplines
Stars: ✭ 27 (+3.85%)
Mutual labels:  curriculum
Markdown Cv
a simple template to write your CV in a readable markdown file and use CSS to publish/print it.
Stars: ✭ 721 (+2673.08%)
Mutual labels:  curriculum
web-development-101
Практическое введение во все инструменты, необходимые для создания рабочих веб-сайтов.
Stars: ✭ 21 (-19.23%)
Mutual labels:  curriculum
Michael S Data Science Curriculum
This is the companion curriculum to my guide to becoming a data scientist.
Stars: ✭ 375 (+1342.31%)
Mutual labels:  curriculum
Curriculum
Stars: ✭ 826 (+3076.92%)
Mutual labels:  curriculum
Machine Learning Curriculum
💻 Make machines learn so that you don't have to struggle to program them; The ultimate list
Stars: ✭ 761 (+2826.92%)
Mutual labels:  curriculum
Curriculum
Dive into our 7-month web development program covering HTML, CSS, Javascript, Node, and React!
Stars: ✭ 453 (+1642.31%)
Mutual labels:  curriculum

bjc-r

The Beauty and Joy of Computing labs resource repository.

Cloning this Repo

We use a project called "llab" to be able to display the lab content nicely. It's contained in the "submodule" llab which somewhat changes the way you need to work with git.

(As an aside, if you're interested, you should definitely check out llab.)

git clone --recursive

OR

git submodule init
git submodule update

To update the repo you should do this:

git pull
git submodule update

Viewing the Site

The main "production" server for labs is hosted at Berkeley, here, it lags behind this repo in content.

We also sometimes use CS10 students as lab rats, and you can view beta labs on the CS10 site.

However, the repository is setup so that any fork can be run using GitHub pages. The main BJC repo can be viewed in a live state, here, or you can use your own fork by visiting the following url: http://[username].github.io/bjc-r/, where you replace [username] with your GitHub account name.

Running Your Own Server

While GitHub pages are convenient, you'll likely want to run your own web server to make debugging changes much more quick and easy. In order to view the labs, you'll need to have an Apache server running on your machine. Here are some simple instructions for a couple different platforms.

No matter the platform, you should serve files from /bjc-r/ at the root of your server. This might not be convenient in all cases. So, you have a few options:

  1. Use a Git hook to do a find-and-replace when copying files to the destination.
  2. In your fork, replace all "absolute" paths (e.g. /bjc-r/...), with relative ones. You could also use a simple script to do this.

Mac OS X and Unix

The easiest way to setup a server is to use a simple, built-in Python server.

  1. cd into one level above the bjc-r directory.
  2. In a separate window run python -m SimpleHTTPServer (for Python 2) or python3 -m http.server for Python 3.
  3. Navigate to http://localhost:8000/bjc-r in a browser.
  4. That's it! :)

WARNING Python's SimpleServer is visible to anyone on your local network! Don't run it from ~/ or your could expose your SSH keys!

Windows

If you have python, the above method for Mac OS X will also work for you!

Contributing

A basic guide on writing labs is, here. However, for the most part, all you need to do is write some HTML. To contribute:

  1. Create your own fork of bjc-r.
  2. Optionally: Create a new branch for your feature.
  3. Work away!
  4. Create a pull request.
  5. Get feedback on the pull request and make changes as needed.
  6. Be super awesome! :)

Of course, submitting issues is always welcome and encouraged! These issues can be bugs, questions, improvements or anything you'd like to share.

License

CC-BY-NC-SA 4.0

CC_IMG

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].