Skip to content

Instantly share code, notes, and snippets.

View farandal's full-sized avatar

Francisco Aranda farandal

View GitHub Profile
@farandal
farandal / @farandal_Alfabeto_Griego_ABZeus_model.csv
Created July 28, 2021 22:59
@farandal Alfabeto Griego, Interpretación Modelo ABZeus
Α α alpha Dirección (I) desde el inicio (o-) hacia lo previo y lo siguiente descriptible (<|> : Φ ) es inicio
άλφα Dirección (l) desde el inicio (o-) a lo próximo (>) entre límites (H) o dentro (h) es origen (o-)
Β β beta Singular descriptible próximo (ή) desde el final (β) a lo que es y está (τ) es origen (α)
βήβα Elemento desde el final a lo que es y está es origen
Ι ι iota Definición desde su descripción a lo que existe al origen
ιώτα Todo desde su descripción a lo que existe al origen
Τ τ tau Origen de lo que existe hacia lo racional
ταυ Origen de lo que existe hacia lo racional
Γ γ gamma El inicio próximo con magnitud a la pluralidad es la pluralidad inicial
γάμμα La magnitud de la pluralidad contenida desde el inicio próximo al inicio
SET @username = 'username';
SET @password = 'password';
SET @email = 'email';
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`)
VALUES
(NULL , @username, MD5(@password), '', @email, '', NOW(), '', '0', @username);
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`)
VALUES
(NULL, LAST_INSERT_ID(), 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}'),
#Wordpress Blog Url Migration
SET @old_url = 'http://your_old_url.com';
SET @old_www_url = 'http://www.your_old_url.com';
SET @new_url = '//your_new_url';
UPDATE wp_options SET option_value = replace(option_value, @old_url , @new_url) WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, @old_url , @new_url);
UPDATE wp_posts SET post_content = replace(post_content, @old_url , @new_url);
UPDATE wp_postmeta SET meta_value = replace(meta_value,@old_url , @new_url);
@farandal
farandal / sort.merge.js
Created September 2, 2015 06:01
Javascript Merge Sorting implementation, sortBy, and sortByFields helpers
/**
* Merge Sorting
*
* //Sorting by efault comparator using merge sorting.
* util.sort(array);
* //specify a comparator:
* var sortOrder = -1;
* util.sort(array,function(a,b) { return ((_a < _b) ? -1 : (_a > _b) ? 1 : 0) * sortOrder; });
*
* //Sort by field
<?php
function executeCurl($arrOptions) {
$mixCH = curl_init();
foreach ($arrOptions as $strCurlOpt => $mixCurlOptValue) {
curl_setopt($mixCH, $strCurlOpt, $mixCurlOptValue);
}
$mixResponse = curl_exec($mixCH);
@farandal
farandal / AsyncAMD
Last active January 4, 2016 06:49
AMD porting of Async library. https://github.com/caolan/async
define('lib/async', [
'ax/class',
'ax/util',
'app/model/api',
'ax/console',
'ax/config',
],
function (klass, util, api, console, xdkConfig) {
// Private
@farandal
farandal / gist:6222864
Last active December 21, 2015 00:48
Jquery Validation For Contact Form 7 http://dineshkarki.com.np/jquery-validation-for-contact-form-7 jquery.jvcf7_validation.js
(function($) {
$(function() {
try {
if (typeof _wpcf7 == 'undefined' || _wpcf7 === null)
_wpcf7 = {};
_wpcf7 = $.extend({ cached: 0 }, _wpcf7);
$('div.wpcf7 > form').each(function(i, n) {
@farandal
farandal / gist:6144704
Created August 3, 2013 01:36
//Integración validador de RUT para JQuery validator
//Integración validador de RUT para JQuery validator
$.validator.addMethod("rut", function(value, element) {
return this.optional(element) || $.Rut.validar(value);
}, "Este campo debe ser un rut valido.");
@farandal
farandal / gist:6144702
Created August 3, 2013 01:35
Validación RUT JQuery validation plugin
/* Copyright (c) 2009 José Joaquín Núñez ([email protected]) http://joaquinnunez.cl/blog/
* Licensed under GPL (http://www.opensource.org/licenses/gpl-2.0.php)
* Use only for non-commercial usage.
*
* Version : 0.5
*
* Requires: jQuery 1.2+
*/
(function($)
@farandal
farandal / gist:6144701
Created August 3, 2013 01:34
Translated default messages for the jQuery validation plugin. Spanish
/*
* Translated default messages for the jQuery validation plugin.
* Locale: ES
*/
jQuery.extend(jQuery.validator.messages, {
required: "Este campo es obligatorio.",
remote: "Por favor, rellena este campo.",
email: "Por favor, escribe una dirección de correo válida",