Skip to content

Instantly share code, notes, and snippets.

View KarneAsada's full-sized avatar

Dan Karney KarneAsada

View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<title>Parts of Speech: We Do</title>
</head>
<body>
<h1 id = "header">This is a page about the parts of speech</h1>
<h1 id = "noun"> This is a noun --> </h1>
<h1 id = "adj"> This is an adjective --> </h1>
<div id ="sentence"></div>
@KarneAsada
KarneAsada / index.html
Last active December 12, 2016 00:27 — forked from anonymous/index.html
Exported from Popcode.
<!DOCTYPE html>
<html>
<head>
<title>Homer Simpson</title>
</head>
<body>
<div id="header">
<img id="profile-picture" src="https://pbs.twimg.com/profile_images/609439993094770690/MqfzEbtj.jpg">
<h1 id="title">Homer's Twitter</h1>
</div>
@KarneAsada
KarneAsada / 0_reuse_code.js
Created December 3, 2015 17:07
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@KarneAsada
KarneAsada / pre-commit
Last active August 29, 2015 14:06 — forked from Simbul/pre-commit
#!/usr/bin/env ruby
# This pre-commit hook will prevent any commit to forbidden branches
# (by default, "staging" and "production").
# Put this file in your local repo, in the .git/hooks folder
# and make sure it is executable.
# The name of the file *must* be "pre-commit" for Git to pick it up.
FORBIDDEN_BRANCHES = ["master"]