This file contains 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
1. Install Ruby (restart machine) (http://rubyinstaller.org/) | |
2. gem update --system && gem install compass t |
This file contains 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
Available here: | |
http://bootsnipp.com/forms?version=3 |
This file contains 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
$( "p" ).click(function( event ) { | |
event.stopPropagation(); | |
// Do something | |
}); |
This file contains 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
Start Apache with the batchfile and read the error message (if any). |
This file contains 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
Windows has a virtual desktop and some applications "remember" their last location based on that - in your case the PDF reader was last used viewing documents to the right-side of the virtual desktop, now no longer visible as there's no physical screen to display that part. | |
(There is nothing to stop an application reporting its location in a non-renderable part of the virtual desktop, this isn't Windows' fault.) | |
What you can do is hover over the icon in the task bar, then right-click the preview window (don't bring the jump list up, this will not help) and click Move from the context menu, then hit one of the arrow keys once - now you can move the mouse around the visible portion of the virtual desktop and the window will be stuck to the cursor until you left-click to drop it). | |
Source: http://www.msfn.org/board/topic/145986-programs-open-on-non-existing-second-monitor/ |
This file contains 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
available here | |
https://watchful.li/news/security-resources-for-joomla.html |
This file contains 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
Scripts available here | |
https://github.com/codearts/BitBucket-Deploy |
This file contains 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
available here | |
https://linkpeek.com/website-thumbnail-generator |
This file contains 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 | |
/* Plugin Name: Mixed Content Fixer | |
* Description: This simple plug-in is replacing the url's in content from http to https. | |
* Author: Leo Seccia & Dejan Markovic | |
* Version: 2014.1.0 | |
*/ | |
add_filter('the_content', 'content_fix'); | |
function content_fix($content) | |
{ |
This file contains 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
egrep -i '^user|^group' /etc/httpd/conf/httpd.conf |