- Contributors: ElderLawAnswers
- Author link: http://www.elderlawanswers.com/
- Tags: rss, legal, import, feed, autoblog, attorney, aggregation, expert content, elder, law, syndication, content, feed import, feed to post, rss to post, content curation
- Requires at least: 3.5
- Tested up to: 4.2.2
- Stable tag: 1.0.0
- License: GPLv2 or later
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
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
#!/bin/bash | |
kill -HUP `cat /var/run/nginx.pid` |
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
Image: /Users/joshuar/Desktop/Screen Shot 2015-07-16 at 5.00.32 PM.png | |
Format: PNG (Portable Network Graphics) | |
Mime type: image/png | |
Class: DirectClass | |
Geometry: 2032x1192+0+0 | |
Units: Undefined | |
Type: TrueColorAlpha | |
Endianess: Undefined | |
Colorspace: sRGB | |
Depth: 8-bit |
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
nnoremap tt ! rm /tmp/zend* <CR> |
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
#! /bin/bash | |
convert <input-image> -alpha extract -threshold 0 -transparent black <out-file> |
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
#!/bin/bash | |
# Installs latest version of Ansible through apt | |
sudo apt-get install software-properties-common && sudo apt-add-repository ppa:ansible/ansible && sudo apt-get update && sudo apt-get install ansible |
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
find . -type f -ls | awk '{print $7" "$11}' | sort -nr | head -n 10 |
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
sudo apt-get update | |
sudo apt-get install apache2 -y | |
sudo a2enmod rewrite | |
sudo apt-get install php5 php5-curl php5-gd php5-mcrypt php5-mysql -y | |
sudo apt-get install mysql-server -y | |
sudo bash -c "cat >> /etc/apache2/sites-available/magento-default <<EOF | |
<VirtualHost *:80> | |
DocumentRoot /var/www/magento |
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 ruby | |
# List all keys stored in memcache. | |
# Credit to Graham King at http://www.darkcoding.net/software/memcached-list-all-keys/ for the original article on how to get the data from memcache in the first place. | |
# Credit to @bkimble for the original script | |
# Blame to @jrumbut for adding content dumping | |
require 'net/telnet' | |
headings = %w(id expires bytes cache_key content) |
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
DeleteCell = Backgrid.Cell.extend({ | |
template: _.template('<button>Delete</button>') | |
events: | |
"click": "deleteRow" | |
deleteRow: (e) -> | |
e.preventDefault() | |
@model.collection.remove(@model) | |
render: -> | |
@$el.html(@template()) | |
@delegateEvents() |