- Arduino
- TextWrangler
- MacVim
- Miro Video Converter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @mixin ie-filter-gradient($start-color, $end-color, $orientation: vertical) { | |
| @include has-layout; | |
| $gradient-type: if($orientation == vertical, 0, 1); | |
| @each $property in -ms-filter, filter { | |
| #{$property}: progid:DXImageTransform.Microsoft.gradient(gradientType=#{$gradient-type}, startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}'); | |
| } | |
| } |
My results:
- a - ach.org
- b - blakearchive.org
- c - codepen.io
- d - docs.google.com
- e - espn.go.com
- f - flickr.com
- g - google.com
- h - html5boilerplate.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Intro to Forms</title> | |
| <style type="text/css"> | |
| label { | |
| display:block; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git config --global alias.amend 'commit -a --amend --no-edit' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * On theme activation. | |
| */ | |
| function ivanhoe_after_switch_theme($theme_name) { | |
| } | |
| add_action('after_switch_theme', 'ivanhoe_after_switch_theme'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_filter('locale', 'change_locale'); | |
| function change_locale($locale) { | |
| if(isset($_GET['locale'])) { | |
| $locale = $_GET['locale']; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import sys | |
| import os | |
| import fnmatch | |
| import random | |
| import re | |
| from bs4 import BeautifulSoup | |
| skipped = [] |