Skip to content

Instantly share code, notes, and snippets.

View alexiscordova's full-sized avatar

Alexis Córdova alexiscordova

View GitHub Profile
@lkopacz
lkopacz / index.html
Last active April 19, 2022 17:40
Skip to content
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<a class="focusable visually-hidden" href="#main">Skip to Content</a>
<header>
<!-- All the Navigation Links and your logo -->
#!/usr/bin/perl
# This filter changes all words to Title Caps, and attempts to be clever
# about *un*capitalizing small words like a/an/the in the input.
#
# The list of "small words" which are not capped comes from
# the New York Times Manual of Style, plus 'vs' and 'v'.
#
# 10 May 2008
# Original version by John Gruber:
#!/bin/sh
git filter-branch --env-filter '
OLD_EMAIL="[email protected]"
CORRECT_NAME="Your Correct Name"
CORRECT_EMAIL="[email protected]"
if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ]
then