New Project: ItsBeenSpoken

by Elliot Waite on April 5, 2012

I just started a new project called “ItsBeenSpoken.” It started off as a game that we played with our friends, where anyone could suggest a workout, and once it was spoken, it had to be done. Taking it to the next step we started ItsBeenSpoken.com, where we are now asking the public for their crazy/weird/strange workout ideas and we’ll be picking our favorites and filming us doing them.

To film these workouts we’ll be using a Canon EOS Rebel T3i, and a newly purchased GoPro HD HERO2. We’ll be filming our first workout tomorrow, a workout titled “Animal Mile,” as suggested by jbeezy:

“Animal Mile”
400 m inch worm
400 m bear crawl
400 m crab walk
400 m piggy back (200 m each)

Check the ItsBeenSpoken blog, or the ItsBeenSpoken YouTube channel by the end of this weekend for the new vid. Also, if you want to stay updated on our future workouts, follow ItsBeenSpoken on Twitter, and like ItsBeenSpoken on Facebook. Also, if you think of any crazy cool workout ideas, post them on our blog, we might pick yours next.

{ 1 comment }

Make Websites, Learn HTML Now!

by Elliot Waite on January 25, 2012

HTML is the framework for the content on a webpage. For example, this HTML…

<div>This info is inside a box, and <b>this text is bold</b>.</div>

would look like this…

This info is inside a box, and this text is bold.

You can’t see the box, it’s invisible, but it’s there. You could add a border to the box and move the box around, but we’ll be doing that with CSS.

HTML tags are enclosed in angle brackets, <>. If a tag encloses content, like the bold tag, <b>, it starts with an opening tag, <b> and ends with a closing tag, </b>. Any text between <b> and </b> will show up as bold. However, not all HTML tags will enclose content. For instance, when you post an image you do it all in one tag by adding a space and forward slash before the ending right angle bracket, so it would look like <img /> (which is the format for an image tag).

Each tag can also have additional attributes within the angle brackets after the initial tag name (ex. <img src=”http://somewebsite.com/image.jpg”). Each attribute can define more about what that tag does. For instance, the src attribute inside the <img> tag defines where the image is located.

The list of available HTML tags is quite short. There are only about 100 of them, and you usually will only be working with several of the most common ones. Here are some of the most common ones…

<html> Defines the root of an HTML document
<head> Defines information about the document
<title> Defines a title for the document
<body> Defines the document’s body
<h1> to <h6> Defines HTML headings
<a> Defines a hyperlink
<b> Defines bold text
<i> Defines italic text
<br> Defines a single line break
<img> Defines an image
<div> Defines a section in a document
<form> Defines an HTML form for user input
<input> Defines an input control
<hr> Defines a thematic change in the content
<ol> Defines an ordered list
<table> Defines a table
<tr> Defines a row in a table
<td> Defines a cell in a table

You can see them all, and learn about all there attributes here: http://www.w3schools.com/html5/html5_reference.asp

And if you want a tutorial, here is a great one to get you started: http://www.w3schools.com/html/default.asp

{ 2 comments }

Differences Between HTML, CSS, PHP, JavaScript

January 24, 2012

HTML HTML is the content. More here… CSS CSS makes it look good. PHP PHP can run function on numbers and strings, and can get and store data to and from a MySQL database. A database is just a collection of tables that store information, kind of like Excel spread sheets. JavaScript JavaScript is very [...]

Read the full article →