Just add to your .bashrc
or .bash_profile
as:
source ~/bin/mvn-color.sh
function FindProxyForURL(url, host) { | |
// our local URLs from the domains below example.com don't need a proxy: | |
if (shExpMatch(host, "*.example.com")) | |
{ | |
return "DIRECT"; | |
} | |
// URLs within this network are accessed through | |
// port 8888 on localhost: | |
if (isInNet(host, "192.168.10.0", "255.255.255.0")) |
<?php | |
defined( 'ABSPATH' ) OR exit; | |
/** | |
* Plugin Name: (WCM) PHPMailer Exceptions & SMTP | |
* Description: WordPress by default returns <code>FALSE</code> instead of an <code>Exception</code>. This plugin fixes that. | |
*/ | |
add_action( 'phpmailer_init', 'WCMphpmailerException' ); | |
function WCMphpmailerException( $phpmailer ) | |
{ |
if (!window.app || !window.schemas) { | |
alert('It doesn\'t seem like you\'re logged in to the Parse Core Data Dashboard. Make sure to login first and then click this bookmarklet.'); | |
} else { | |
var $form = | |
$( | |
'<form method="post" action="http://erd-web-server.herokuapp.com/">' + | |
'<textarea name="erdText"></textarea>' + | |
'</form>' | |
); | |
Just add to your .bashrc
or .bash_profile
as:
source ~/bin/mvn-color.sh
This gist provides a way to automatically move an associated Elastic IP between nodes of a cluster in case of failover. This is because the standard VIP infrastructure provided by VRRP is not necessarily transparently compatible with Ravello's public IP/NAT routing, so the private VIP is not routable.
int ____________________switch_magic() | |
{ | |
int v0; // esi@1 | |
int v1; // edi@2 | |
int v2; // eax@3 | |
int v3; // eax@7 | |
int v4; // eax@7 | |
int v5; // ebx@10 | |
int v6; // eax@10 | |
int v7; // eax@11 |
com.google.inject.ProvisionException: Guice provision errors: | |
1) Error injecting constructor, java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory | |
at org.apache.maven.wagon.providers.webdav.WebDavWagon.<init>(Unknown Source) | |
while locating org.apache.maven.wagon.providers.webdav.WebDavWagon | |
1 error | |
at com.google.inject.internal.InjectorImpl$2.get(InjectorImpl.java:1006) | |
at com.google.inject.internal.InjectorImpl.getInstance(InjectorImpl.java:1032) | |
at org.eclipse.sisu.space.AbstractDeferredClass.get(AbstractDeferredClass.java:48) |