Skip to content

Instantly share code, notes, and snippets.

View DnOberon's full-sized avatar

John Darrington DnOberon

View GitHub Profile
@DnOberon
DnOberon / 1column1picture.html
Created December 13, 2016 16:11
Template - CSS
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<link rel="stylesheet" type="text/css" href="css/app.css">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width">
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,700" rel="stylesheet" type="text/css">
</head>
@DnOberon
DnOberon / .vimrc
Last active March 15, 2019 00:42
Minimal .vimrc for ssh sessions. Works out of the box with vim 8 and/or vim 7 - used on AWS default ec2 AMI. Built for use on remote servers, or for doing code interviews.
" basic syntax highlighting and completion
syntax on
filetype plugin on
set omnifunc=syntaxcomplete#Complete
" quality of life changes
"set nu
set smarttab
set autoindent
set nobackup