Skip to content

Instantly share code, notes, and snippets.

View Sonichaos360's full-sized avatar

Luciano Joan Vergara Sonichaos360

View GitHub Profile
<?php
define("DEBUG", TRUE);
if(DEBUG)
{
error_reporting(E_ALL);
ini_set('display_errors', '1');
}
$wsdl = 'https://www.crcind.com/csp/samples/SOAP.Demo.CLS?WSDL'; //URL de nuestro servicio soap
@Sonichaos360
Sonichaos360 / gist:6e78b3b8420fa0280a6f276a4d824738
Created February 22, 2017 18:48 — forked from edwardtoday/gist:2204864
PhoneGap sqlite working example
Hi
I hope this helps you all get started with phonegap and sqlite in your
application
Dean-O
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
From terminal:
1: yum install epel*
2: yum update / yum upgrade
3: Add repo source
- CentOS and Red Hat Enterprise Linux 6.x
wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
sudo rpm -Uvh remi-release-6*.rpm
@Sonichaos360
Sonichaos360 / README.md
Created October 16, 2018 22:37 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})