Skip to content

Instantly share code, notes, and snippets.

View motleydev's full-sized avatar

Jesse motleydev

View GitHub Profile
@motleydev
motleydev / base.sql
Created June 7, 2023 15:00
TeamSystemResources
-- Create the "drivers" table to store information about the gig economy drivers
CREATE TABLE public.drivers (
driver_id SERIAL PRIMARY KEY,
name VARCHAR(100) NOT NULL,
phone_number VARCHAR(20) NOT NULL,
email VARCHAR(100) NOT NULL,
active BOOLEAN DEFAULT true,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
clientid: iEQmqDFqOJUXCwxXg4WGaKosm8HYXHpGUlxQzNqOZm
slides: https://docs.google.com/presentation/d/1K735gEAg6lLaLi0qwyyl3z7dl6VsuNpeLveiR6yNRus/edit?usp=sharing
creditCardNumber: ha!
// Aliases
{
beer: drinks(
where: {
kind: "beer"
}) {
name
}
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
@motleydev
motleydev / meta-tags.md
Created July 22, 2017 08:06 — forked from kevinSuttle/meta-tags.md
List of Usable HTML Meta and Link Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
var gulp = require('gulp'),
watch = require('gulp-watch'),
browserSync = require('browser-sync'),
rubySass = require('gulp-ruby-sass'),
jade = require('gulp-jade'),
data = require('gulp-data'),
browserify = require('gulp-browserify');
// Javascripts
var spirit = function(name){
var booze = {};
booze.name = name;
return booze;
}
console.log(booze);
@motleydev
motleydev / icon-html.html
Created September 21, 2012 16:25 — forked from hatefulcrawdad/icon-html.html
Icon Implementation in HTML
<i class="foundicon-[icon]"></i>