Skip to content

Instantly share code, notes, and snippets.

View matheo's full-sized avatar
🔥
Driven by Passion

Mateo Tibaquirá matheo

🔥
Driven by Passion
View GitHub Profile
06-09 18:04:00.749 1076 1508 I GooglePlugin: Building Google options
06-09 18:04:00.813 1076 1508 I GooglePlugin: Building GoogleApiClient
06-09 18:04:00.892 1076 1508 I GooglePlugin: GoogleApiClient built
06-09 18:04:00.892 1076 1508 I GooglePlugin: Determining command to execute
06-09 18:04:00.892 1076 1508 I GooglePlugin: Trying to Log in!
06-09 18:04:00.896 1076 1508 D ConnectPlugin: activity result in plugin: requestCode(0), resultCode(0)
06-09 18:04:00.922 810 825 I ActivityManager: START u0 {act=com.google.android.gms.auth.GOOGLE_SIGN_IN cmp=co.com.myapp/com.google.android.gms.auth.api.signin.internal.SignInHubActivity (has extras)} from uid 10092 on display 0
06-09 18:04:00.975 1076 1508 W PluginManager: THREAD WARNING: exec() call to GooglePlus.login blocked the main thread for 246ms. Plugin should use CordovaInterface.getThreadPool().
06-09 18:04:01.040 810 1131 I ActivityManager: START u0 {act=com.google.android.gms.auth.GOOGLE_SIGN_IN pkg=com.google.android.gms cmp=com.google.
@matheo
matheo / main.partial.conf
Created November 29, 2015 01:25
Postfix restrictions
smtpd_helo_restrictions =
permit_mynetworks,
warn_if_reject,
reject_invalid_helo_hostname,
reject_non_fqdn_helo_hostname,
reject_rhsbl_helo dbl.spamhaus.org,
permit
smtpd_sender_restrictions =
warn_if_reject,
reject_non_fqdn_sender,
@matheo
matheo / 0_reuse_code.js
Last active August 29, 2015 14:27
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@matheo
matheo / core.assemble_plugin_filepath.php.diff
Created May 7, 2011 03:02
Removed check inside the Smarty folder except for its core 'plugins' on Zikula imtegration
diff --git a/src/lib/vendor/Smarty/internals/core.assemble_plugin_filepath.php b/src/lib/vendor/Smarty/internals/core.assemble_plugin_filepath.php
index 690d3dd..3cab345 100644
--- a/src/lib/vendor/Smarty/internals/core.assemble_plugin_filepath.php
+++ b/src/lib/vendor/Smarty/internals/core.assemble_plugin_filepath.php
@@ -26,8 +26,15 @@ function smarty_core_assemble_plugin_filepath($params, &$smarty)
$_plugin_filepath = $_plugin_dir . DIRECTORY_SEPARATOR . $_plugin_filename;
- // see if path is relative
- if (!preg_match("/^([\/\\\\]|[a-zA-Z]:[\/\\\\])/", $_plugin_dir)) {