<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>localhost.pbcopy</string>| /log/ | |
| /logs/ | |
| /images/ | |
| /javascripts/ | |
| /stylesheets/ | |
| /tmp/ | |
| /vendor/ | |
| *.sql | |
| *.tags* | |
| *.gemtags* |
| import re | |
| import urlparse | |
| def linky(url): | |
| """Sanitize link. clean utm parameters on link.""" | |
| if not re.match(r'^https?:\/\/', url): | |
| url = 'http://%s' % url | |
| rv = urlparse.urlparse(url) |
Let's have some command-line fun with curl, [jq][1], and the [new GitHub Search API][2].
Today we're looking for:
One of the best ways to reduce complexity (read: stress) in web development is to minimize the differences between your development and production environments. After being frustrated by attempts to unify the approach to SSL on my local machine and in production, I searched for a workflow that would make the protocol invisible to me between all environments.
Most workflows make the following compromises:
-
Use HTTPS in production but HTTP locally. This is annoying because it makes the environments inconsistent, and the protocol choices leak up into the stack. For example, your web application needs to understand the underlying protocol when using the
secureflag for cookies. If you don't get this right, your HTTP development server won't be able to read the cookies it writes, or worse, your HTTPS production server could pass sensitive cookies over an insecure connection. -
Use production SSL certificates locally. This is annoying
Craig Mod does a bigger overhaul with Twitter for Minimalists, but this will only do the following:
- Hides promoted tweets and trends
- Hides the useless “Expand” link that appears under every tweet
- Tones down the blue conversation line to a barely-visible gray
- Hides all numbers
You can add this CSS in Safari with this extension. The URL to target is twitter.com/*.
Some of the Unitarian Universalist principles are good building-blocks:
[We] affirm and promote:
- The inherent worth and dignity of every person;
- Justice, equity and compassion in human relations;
HEY: I've turned this into a blog post, which is a little more in depth.
🚨 https://eev.ee/blog/2016/06/04/converting-a-git-repo-from-tabs-to-spaces/ 🚨