View consumer.php
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 | |
// curl -sS https://getcomposer.org/installer | php | |
// php composer.phar require aws/aws-sdk-php | |
// export AWS_ACCESS_KEY_ID=... | |
// export AWS_SECRET_ACCESS_KEY=... | |
$streamName = '<INSERT_YOUR_STREAMNAME_HERE>'; | |
$numberOfRecordsPerBatch = 10000; |
View fix-sample-data.php
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 | |
/** | |
* Drop this into the shell directory in the Magento root and run without any arguments. | |
*/ | |
require_once 'abstract.php'; | |
/** | |
* Clean up the 1.6.1 sample data to work with the 1.8 CE url key constraints. |
View send-receive-sqs.php
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 | |
// curl -sS https://getcomposer.org/installer | php | |
// php composer.phar require aws/aws-sdk-php | |
// export AWS_ACCESS_KEY_ID=... | |
// export AWS_SECRET_ACCESS_KEY=... | |
$queueUrl = '<INSERT_URL_OF_EXISTING_QUEUE_HERE>'; |
View cw_exp.js
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
var AWS = require('aws-sdk'); | |
var cloudwatch = new AWS.CloudWatch({ region: 'us-east-1'}); | |
exports.handler = function (event, context) { | |
var ElasticSearchHost = 'elasticsearch.example:9200'; | |
var Environment = 'int'; | |
var EndTime = new Date; | |
var StartTime = new Date(EndTime - 15*60*1000); | |
var Metrics = { |
View gist:bdade1df328c3f766a3c
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 | |
// Initialize | |
$app = new SimpleHttpClient('http://www.demo.local/xmlconnect/'); | |
$app->addCookie('app_code', 'INSERT APP CODE HERE'); | |
$app->addCookie('screen_size', '600x400'); | |
// get products in category 3 |
View counter.js
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
var db = require("redis-client").createClient(); | |
require("http").createServer(function(request, response) { | |
db.incr("count",function(err, reply) { | |
response.writeHead(200, { "Content-Type": "text/plain" }); | |
response.write(reply.toString()); | |
response.end(); | |
}); | |
}).listen(8181); |
View .config_fish_functions_dotenv.fish
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
function dotenv --description 'Load environment variables from .env file' | |
set -l envfile ".env" | |
if [ (count $argv) -gt 0 ] | |
set envfile $argv[1] | |
end | |
if test -e $envfile | |
for line in (cat $envfile | grep -v '^#' | grep -v '^$') | |
set -xg (echo $line | cut -d = -f 1) (echo $line | cut -d = -f 2-) | |
end |
View gitlog2elasticsearch.php
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
#/bin/bash | |
cd /var/hackathon/projects | |
for i in `find . -maxdepth 1 -mindepth 1 -type d`; do | |
project=`echo $i | sed 's/\.\///g'` | |
cd "/var/hackathon/projects/$project" | |
echo "Updating project $project" | |
git pull | |
php /var/hackathon/gitlog2elasticsearch.php http://localhost:9200/hackathon/commit/ "$project" '2 days ago' | |
done |
View gist:66f9753144a5ea8db0c1
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
#build-pipeline-plugin-content { | |
background-color: none; | |
border-radius: 0; | |
} | |
#build-pipeline-plugin-content h1 { | |
display: none; | |
} | |
tbody.pipelineGroup { |
View gist:7645313
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
truncate catalog_product_flat_cl; | |
truncate catalog_category_product_index_cl; | |
truncate catalog_category_product_cat_cl; | |
truncate catalog_category_flat_cl; | |
truncate catalogsearch_fulltext_cl; | |
truncate cataloginventory_stock_status_cl; | |
truncate catalog_product_flat_cl; | |
truncate catalog_product_index_price_cl; | |
truncate enterprise_url_rewrite_category_cl; | |
truncate enterprise_url_rewrite_product_cl; |
NewerOlder