Skip to content

Instantly share code, notes, and snippets.

@kliker
kliker / CopyURL
Last active May 6, 2016 22:04
Alfred app workflow: Get Safari current tab URL to clipboard
on alfred_script(q)
-- Copies URL of the current tab to the clipboard
-- Requires Alfred PowerPack
tell application "Safari"
set theURL to URL of front document
set the clipboard to theURL as string
end tell
end alfred_script
@kliker
kliker / htaccess
Last active August 29, 2015 14:08
Keep Drupal log clean
<IfModule mod_rewrite.c>
RewriteEngine on
# Redirect botnet scans to Apache 403
#
# WordPress login/admin pages
RewriteCond %{REQUEST_URI} ^(.*)/wp-admin$ [OR]
RewriteCond %{REQUEST_URI} ^(.*)/wp-login\.php$ [OR]
# Drupal pages
RewriteCond %{QUERY_STRING} ^q=(node/add|user/register)$ [OR]