Getting started:
Related tutorials:
- MySQL-CLI: https://www.youtube.com/playlist?list=PLfdtiltiRHWEw4-kRrh1ZZy_3OcQxTn7P
- Analyzing Business Metrics: https://www.codecademy.com/learn/sql-analyzing-business-metrics
"use strict"; | |
// check out https://jsfiddle.net/Lj2fs5kr/ | |
new Promise(function (resolve) { | |
var db = void 0, | |
on = function on() { | |
return resolve(true); | |
}, | |
off = function off() { | |
return resolve(false); |
Getting started:
Related tutorials:
/*! | |
* By Eharry.me (https://gist.github.com/Ema4rl/b8ef90be99205ddada5ef2cd6e632ebe) | |
*/ | |
! function ($) { | |
"use strict"; | |
var slide = $("[data-slides]"), | |
count = 0, | |
slides = slide.data("slides"), | |
len = slides.length, | |
n = function () { |
<?php | |
defined('BASEPATH') OR exit('No direct script access allowed'); | |
/** | |
* File Uploading Class Extension | |
* | |
* @package CodeIgniter | |
* @subpackage Libraries | |
* @category Uploads | |
* @author Harrison Emmanuel (Eharry.me) |
(function(addon) { | |
var component; | |
if (window.UIkit) { | |
component = addon(UIkit); | |
} | |
if (typeof define == "function" && define.amd) { | |
define("uikit-aspect-ratio", ["uikit"], function(){ | |
return component || addon(UIkit); |
require APPPATH.'libraries/REST_Controller.php'; | |
class API_Controller extends REST_Controller | |
{ | |
/** | |
* Parse the DELETE request arguments [HACK] | |
* | |
* @access protected |