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
<?xml version="1.0"?> | |
<settings> | |
<console change_refresh="10" refresh="100" rows="20" columns="98" buffer_rows="500" buffer_columns="0" init_dir="C:\Users\Kevin\Desktop" start_hidden="0" save_size="1" shell="C:\Program Files (x86)\Git\bin\sh.exe --login -i"> | |
<colors> | |
<color id="0" r="0" g="43" b="54"/> | |
<color id="1" r="38" g="139" b="210"/> | |
<color id="2" r="133" g="153" b="0"/> | |
<color id="3" r="42" g="161" b="152"/> | |
<color id="4" r="220" g="50" b="47"/> | |
<color id="5" r="211" g="54" b="130"/> |
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
#!/bin/bash | |
#### | |
# Split MySQL dump SQL file into one file per table | |
# based on https://gist.github.com/jasny/1608062 | |
#### | |
#adjust this to your case: | |
START="/-- Table structure for table/" | |
# or |
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
#To disable the UAC prompt and run everything by default as admin | |
#Is set to 1 by default | |
Set-ItemProperty -Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\System" -Name "EnableLUA" -Value "0" | |
shutdown -r -t 0 #reboot | |
#-------------------------------------------------- | |
#If the above breaks your ability as an Admin to install apps from the Microsoft store | |
#run the following in an elevated Powershell console |
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 | |
add_filter('content_save_pre', 'cleanup_for_writers'); | |
function cleanup_for_writers($content) | |
{ | |
remove_filter('content_save_pre', array($this, 'cleanup_annoying_writers')); | |
$content =trim(stripslashes($content)); | |
//No JS |
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
#!/bin/bash | |
# Created on 7/17/13 by Ryan Sechrest | |
# Deploys pushed branch from the origin repository to the web directory | |
if [[ (-n $1) && (-n $2) && (-n $3) ]]; then | |
# Set path to project directory | |
project_path="/var/www/domains/$2/$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
/** | |
* jQuery iframe click tracking plugin demo | |
* Version 1.0 (2013-03-30) | |
* Copyright © 2013 Vincent Paré | |
* https://github.com/finalclap/iframeTracker-jquery | |
*/ | |
(function($){ | |
// Registering new tracking handler | |
$.fn.iframeTracker = function(handler){ | |
// Storing the new handler into handler list |