Install Package Control for easy package management.
- Open the console with
Ctrl+` - Paste in the following:
| <IfModule mod_rewrite.c> | |
| Options -MultiViews | |
| RewriteEngine On | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteRule ^(.*)$ index.php [QSA,L] | |
| </IfModule> | |
| <IfModule !mod_rewrite.c> | |
| <IfModule mod_alias.c> | |
| RedirectMatch 302 ^/$ /index.php/ |
Install Package Control for easy package management.
Ctrl+`
#CURL Connections with Tor
Install Apache, PHP, CURL & Tor with apt-get
sudo apt-get install -y apache2 php5 php5-curl torTor creates a proxy on your mashine with port 9050 for SOCKS5 connections.
| <?php | |
| /* | |
| Plugin Name: sxss Featured Image Feed | |
| Plugin URI: http://sxss.nw.am | |
| Description: Display the featured image in the RSS feed | |
| Version: 0.2 | |
| Author: sxss | |
| */ | |
| function sxss_featured_images_in_rss( $content ) { |
| function tooltip(obj) { | |
| if (!obj.length) return; | |
| $("body").append('<div id="tooltip" />'); | |
| var tooltip = $("#tooltip"); | |
| var title; | |
| obj.hover(function() { | |
| title = $(this).attr("title") ? $(this).attr("title") : "No Title"; | |
| $(this).attr("title",""); | |
| tooltip.html(title); | |
| tooltip.stop(true,true).delay(50).fadeIn("slow").dequeue(); |