Skip to content

Instantly share code, notes, and snippets.

View tevko's full-sized avatar
🇺🇲

Tim tevko

🇺🇲
  • NY
View GitHub Profile
<html>
<head>
<title>Select styles with CSS only</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
background-color: #fff;
font-family: helvetica, sans-serif;
margin: 4% 10%
}
@tevko
tevko / check_dead.sh
Last active August 29, 2015 14:06 — forked from omgmog/check_dead.sh
#!/bin/bash
# usage:
# cd Resources
# sh check_dead.sh
for file in *.md; do
echo "====== Reading file: ${file} ======"
while read line; do
url=$(echo "$line" | sed s/.*\(// | sed s/\)// | sed s/^##.*//)