This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
const fs = require('fs'); | |
const chokidar = require('chokidar'); | |
chokidar | |
.watch('.', { | |
ignoreInitial: true, | |
ignored: /(^|[\/\\])\../ | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DELIMITER // | |
CREATE FUNCTION REWARDS(purchase_amount INT, customer_age INT) | |
RETURNS INT(1) | |
BEGIN | |
DECLARE points INT(1); | |
IF customer_age IS NULL OR purchase_amount < 1 THEN SET points = 2; | |
ELSEIF purchase_amount < 100 THEN SET points = 5; | |
ELSEIF purchase_amount >= 1000 AND customer_age < 5 THEN SET points = 20; | |
ELSEIF purchase_amount >= 1000 AND customer_age >= 5 THEN SET points = 25; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* hook_menu() | |
*/ | |
function hello_menu() { | |
$items['hello'] = array( | |
'title' => 'Hello Page', | |
'page callback' => 'hello_page', | |
'access arguments' => array('access content'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Scroll to an element | |
*/ | |
(function() { | |
var element = document.getElementById("myAwesomeDiv"); | |
var elementTop = element.getBoundingClientRect().top; | |
if (elementTop < 0) { | |
// check if the top of the element is outside the top of the viewport. | |
var y = elementTop + window.scrollY - 5; | |
window.scroll({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$client = new SoapClient('https://api.example.com/api/v2_soap?wsdl=1'); | |
$session = $client->login('username', 'password'); | |
$orders = ['100193253', '100193224', '100193291', '100193320']; | |
$increment_id = '100193224'; | |
/*$params = [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# IMPORTANT | |
# {$path} is used to specify AMPPS installation path | |
# MySQL config file for medium systems. | |
# | |
# This is for a system with little memory (32M - 64M) where MySQL plays | |
# an important part, or systems up to 128M where MySQL is used together with | |
# other programs (such as a web server) | |
# | |
# You can copy this file to |