Skip to content

Instantly share code, notes, and snippets.

View JoeShep's full-sized avatar

Joe Shepherd JoeShep

  • Nashville Software School
  • Nashville
View GitHub Profile
@JoeShep
JoeShep / README_HOW_TO.md
Created January 26, 2022 16:17 — forked from heymonicakay/README_HOW_TO.md
Some tips on how to create a readable README to show off your project.

Add a README To Your Project

You can add a README file to your repository to tell other people why your project is useful, what they can do with your project, and how they can use it.

What's in a README?

README files typically include information on:

  • Primary Features - What does this project do?
  • Target Audience - Who is it for?
  • Purpose - Why the project is useful/what problem does it solve?
@JoeShep
JoeShep / properties.js
Created November 5, 2016 19:30 — forked from seanspradlin/properties.js
Object properties tutorial
function Person(firstName, lastName, age, ssn) {
// Declaring this way by default will make your property
// readable, writable, and enumerable
this.firstName = firstName;
this.lastName = lastName;
// Let's make a getter-only method that returns the
// two values as a whole name
Object.defineProperty(this, 'fullName', {
get: function() {
@JoeShep
JoeShep / GULP.md
Created April 25, 2016 22:14
Simple Gulp jshint watcher

Install required NPM modules in the directory

npm install gulp jshint gulp-jshint jshint-stylish gulp-watch

Create your gulpfile.js and paste in the following code

var gulp = require('gulp');