paint-brush
Chuck Norris Approved!by@gitpitch
534 reads
534 reads

Chuck Norris Approved!

by David RussellMay 17th, 2017
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

Today I’ve invited Chuck Norris to join me to share an amazing (true) story using <a href="https://gitpitch.com" target="_blank">GitPitch</a>. Sadly, he declined this invite! Despite this minor setback, I am still going to tell you a tale about the legendary Mr. Norris as an excuse to walk you through building your first truly eye-catching GitPitch presentation.

Companies Mentioned

Mention Thumbnail
Mention Thumbnail
featured image - Chuck Norris Approved!
David Russell HackerNoon profile picture

Today I’ve invited Chuck Norris to join me to share an amazing (true) story using GitPitch. Sadly, he declined this invite! Despite this minor setback, I am still going to tell you a tale about the legendary Mr. Norris as an excuse to walk you through building your first truly eye-catching GitPitch presentation.

In just a few lines of Markdown and a single git-commit you are going to be able to share a presentation with the world that looks just like this one:

Getting Started

The only thing you need to follow along with this short tutorial is an account on GitHub, GitLab, Bitbucket, Gitea, or Gogs and a single git repository.

The Power Of Words

The first step when creating a GitPitch presentation is to fire up your favorite text editor and open a new file called PITCHME.md. This file should be created within the root directory of your git repository.

GitPitch introduces PITCHME.md as a new convention, similar to how popular Git services use the README.md convention for regular project doc.

Into this PITCHME.md file we will add Mr. Norris’s story as our presentation content using plain Markdown:

One day a cobra bit Chuck Norris’s leg.

---

After five days of excruciating pain, the cobra died.

As you can see, we recount a somewhat sad story. For the snake at least.

What you see here is plain Markdown. Simple, right? The only bit that might surprise you are the 3-dashes that appear between the two lines of text. This is called a GitPitch slide delimiter. Delimiters tell GitPitch that you want to break the content across consecutive slides in your presentation slideshow.

If we saved our PITCHME.md file right now, committed and pushed it to our repo we could immediately open and enjoy a very simple 2-slide presentation online. But we can do a whole lot better with just a little more effort.

Pictures Worth A Thousand Words

Using images can greatly enhance just about any presentation. For this reason, GitPitch makes it incredibly simple to add some visual-oomph to your slideshows.

If you are still following along, update your PITCHME.md to look as follows:

---?image=https://gitpitch.com/chuck-norris-approved.jpg

---

> One day a cobra bit Chuck Norris's leg.

---

> After five days of excruciating pain, the cobra died.

---?image=https://gitpitch.com/chuck-norris-thumbs-up.gif

In this Markdown I’ve added a new slide at the start of the presentation that uses special ?image= syntax on the opening slide delimiter. This tells GitPitch to insert a background splash image that fills the entire slide.

The > character added before the text on each slide is simply a standard way of quoting text in Markdown.

I’ve also added a new slide at the end which is going to display an animated gif background. When we finally get to see our presentation live, this slide will give us what we have all been secretly craving, Chuck Norris’s approval ;)

Chuck Norris’s Approval Goes Live

Would you believe it if I told you we were already done creating our eye-catching GitPitch presentation? Yep, it’s true. It’s time to push our new files to our Git repo which should look something like this if you’re working at the command line:



> git add -A> git commit -m "Chuck Norris counted to infinity. Twice."> git push

Now that all of our GitPitch presentation files are part of our repo we can immediately open our new presentation online using GitPitch.com. You can open my version of this presentation here:


[ GitPitch ] gitpitch/chuck-norris-approved/master_A GitPitch presentation that Chuck Norris would approve of ;)_gitpitch.com

Simply substitute your Git username and repository name on that URL to view, share, and present your own version of the presentation.

Caveat Emptor!

Buyer beware. I feel compelled to publish this warning because if you open my version of this presentation you may notice that it looks a little bit different from your own. The reason for this is simple, I cheated ;)

GitPitch provides a wide range of customizations that lets you satisfy your inner-creative needs. This is a topic I will cover extensively in future posts but for now let me just direct you to the GitPitch Wiki as the best source of documentation for how to get going with your own customizations.

Unleash The Magic

But before I wrap up I think it’s only fair that I show you how you can cheat too! Most GitPitch customizations are activated using a PITCHME.yaml file. This file needs to live alongside your PITCHME.md file in the root directory of your Git repo. It is a very simple, yet powerful property file that unleashes some GitPitch magic.

Go ahead and add, then push the following PITCHME.yaml file to your own repo:


theme: blacklogo: https://gitpitch.com/texas-rangers.png

After you’ve pushed these changes reload your presentation in your browser and see how it has been transformed. It may take a short while for GitPitch to pick up your latest changes. See the GitPitch caching policy for details.

That’s A Wrap

That wraps things up for this short tutorial. I hope you followed along and enjoyed creating your very own GitPitch presentation. Had Chuck Norris partaken today I have no doubt he would have given us thumbs-up for our efforts. Follow me right here on Medium or on Twitter @gitpitch for more news, tips and amazing creations from the GitPitch community.