Showing posts with label world wide web. Show all posts
Showing posts with label world wide web. Show all posts

Monday, January 5, 2015

Kitchen Surfing

This was a class project where my Partner and I decided to create a fictional cooking show where we show you how to make delicious pizza. This idea was derived from our passions for food. Since my partner was the head chef and main actor and I was the cooking show host. I was in charge of all the camera work. From shooting stationary shots, to getting different angles, and perspectives of the creation of the pizza. I also was in charge of editing a majority of the footage and making sure all the transitions were good. I chose the music from a royalty free library on the internet, and thought it was quite suitable for the purpose of the show.

This project was a lot of fun to create and really gave me an idea of the complete process of video production. From making sure all the audio levels and mics are working, to lighting, and having a shot list for different perspective was a great way to exercise my production skills.

Thursday, December 18, 2014

Hosting Your Website on GitHub for FREE

A lot of people know GitHub as a place where you can share your code with the community. But did you know GitHub also lets you host websites for FREE?

There are two kinds of websites you can host with GitHub, Project Pages and User Pages. Project Pages are for individual repositories you have on GitHub and User Pages are for your entire GitHub account. In this article I will cover Project Pages.

To create a Project Page all you need to do is create a branch on GitHub named gh-pages and anything that you push to that branch will appear on www.github.io (the GitHub Pages domain).

Pretty simple, here's how to do it step by step:

1. Create a gh-pages branch

Open Terminal and go to your local project repository. 

Type  git checkout -b gh-pages
 
2. Push gh-pages up to github.io

Type  git push origin gh-pages

3. Wait up to 30 minutes...


Go to [username].github.io/[respositoryname] to see your site.

For example, my GitHub username is af19 and I have repository called typetool. So, the URL is af19.github.io/typetool

And that's that.  

One limitation of GitHub Pages is that you can't have any server-side stuff on there. That means no Ruby, PHP, Python, etc. So just HTML, CSS and JavaScript.