-
https://www.youtube.com/user/DevTipsForDesigners/playlists?shelf_id=0&view=1&sort=dd Travis Neilson
-
https://github.com/theskillwithin/hrtcup (eslint, browersync, etc confic)
#index
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
{ | |
"added_words": | |
[ | |
"Mockup", | |
"plugins", | |
"coffeescript", | |
"sourcemaps", | |
"html", | |
"plugin", | |
"init", |
var getConfigDirectory = function () { | |
var platform = process.platform; | |
if (platform === 'linux') { | |
return process.env.XDG_CONFIG_HOME || path.join(home(), '.config') | |
} | |
else if (platform === 'darwin') { | |
return path.join(home(), 'Library', 'Preferences'); | |
} | |
else if (platform === 'win32') { |
https://www.youtube.com/user/DevTipsForDesigners/playlists?shelf_id=0&view=1&sort=dd Travis Neilson
https://github.com/theskillwithin/hrtcup (eslint, browersync, etc confic)
#index
on textualcmd(inputText, selectedChannel) | |
if inputText is equal to "flexbox" then | |
return "https://css-tricks.com/snippets/css/a-guide-to-flexbox/ --- https://youtu.be/G7EIAgfkhmg --- https://youtu.be/qpdxiIDzg6Q" | |
else if inputText is equal to "cp" then | |
return "codepen.io" | |
else | |
return "/debug Help commands: message1, message2" | |
end if | |
end textualcmd |
{ | |
"name": "heartcup", | |
"version": "1.2.0", | |
"description": "hearcup.", | |
"keywords": [ | |
"npm", | |
"scripts", | |
"npm scripts", | |
"watch", | |
"minify", |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
{ | |
"name": "Heartcup", | |
"description": "Heartcup", | |
"main": "gulp.config.js", | |
"authors": [ | |
"Brandastic" | |
], | |
"license": "", | |
"moduleType": [], | |
"homepage": "", |
Compares a csv file against a text file to quickly find the cost of a free gift report
cvsfilecompare.php will read a file called test.csv which is a report generaed from a Magento site.
This is used to determine the cost of "free gifts" which are coupon codes in Magento that give you a gift item at checkout.
<?php | |
include('aws_signed_request.php'); | |
function init() { //get the amazon process output | |
$row = 1; | |
if (($handle = fopen("proccess.csv", "r")) !== FALSE) { | |
while (($data = fgetcsv($handle, 1000, "\t")) !== FALSE) { | |
$num = count($data); | |
//echo "<p> $num fields in line $row: <br /></p>\n"; | |
$row++; |