Skip to content

Instantly share code, notes, and snippets.

@seamusjr
seamusjr / .ackrc
Last active April 3, 2018 17:11 — forked from kevinold/.ackrc
#ack is a tool like grep, designed for programmers with large trees of heterogeneous source code
#ack is a tool like grep, designed for programmers with large trees of heterogeneous source code
#to install ack, see http://betterthangrep.com/
#to use ack, launch terminal (mac osx) and type 'ack <some_keywords>'
#ack will search all files in the current directory & sub-directories
#here's how I have my config file setup. this file is located on mac osx here
# ~/.ackrc
This file has been truncated, but you can view the full file.
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
<asset>
<contributor>
<authoring_tool>SketchUp 15.3.331</authoring_tool>
</contributor>
<created>2017-03-25T02:23:46Z</created>
<modified>2017-03-25T02:23:46Z</modified>
<unit meter="0.0254" name="inch" />
<up_axis>Z_UP</up_axis>
[2016-12-30 01:25:53.843 GMT] ERROR PipelineCallServlet|27048498|Sites-TMaG-Site|Account-Show|PipelineCall|GQM0YCdP800iZgQRylos6oTaNOosKqBIUPzXRzZGLab_abzt5q5ZsNXRNUZ6M0VPH6X8Gp939LiV0AWR3L-43A== custom AbstractIccdService.ds: IccdCreateAccountService | FAILED | invalid_usertoken | User token expired or invalid
[2016-12-30 01:25:54.590 GMT] ERROR PipelineCallServlet|12267465|Sites-TMaG-Site|Account-Show|PipelineCall|GQM0YCdP800iZgQRylos6oTaNOosKqBIUPzXRzZGLab_abzt5q5ZsNXRNUZ6M0VPH6X8Gp939LiV0AWR3L-43A== custom AbstractIccdService.ds: IccdCreateAccountService | FAILED | invalid_usertoken | User token expired or invalid
[2016-12-30 01:26:10.281 GMT] ERROR PipelineCallServlet|10357235|Sites-TMaG-Site|Account-Show|PipelineCall|GQM0YCdP800iZgQRylos6oTaNOosKqBIUPzXRzZGLab_abzt5q5ZsNXRNUZ6M0VPH6X8Gp939LiV0AWR3L-43A== custom AbstractIccdService.ds: IccdCreateAccountService | FAILED | invalid_usertoken | User token expired or invalid
[2016-12-30 01:26:54.490 GMT] ERROR PipelineCallServlet|27048498|Sites-TMaG-Sit
[2016-12-29 21:40:22.388 GMT] ERROR PipelineCallServlet|8296333|Sites-TMaG-Site|Account-Show|PipelineCall|dssm871ZuFm895T9P_4PcmTyUM2P9l9UUiuN3GA8iwPC3itGBoYzG0j5KjOo9bnkNaNUuepgrMETVTPlPJfSdw== system.core Sites-TMaG-Site STOREFRONT dssm871ZuFm895T9P_4PcmTyUM2P9l9UUiuN3GA8iwPC3itGBoYzG0j5KjOo9bnkNaNUuepgrMETVTPlPJfSdw== YzEdYVhlgsaXAgAK-0-00 3354286270401089536 Error executing pipeline: Account Sub-Pipeline: Login NodeID: IccdLogin.1/b2.1:DCallNode.1
com.demandware.beehive.core.capi.pipeline.PipelineExecutionException: Invalid call target: CustomerLockout-CreateLockoutHelper
@seamusjr
seamusjr / gist:d0b5e7df1d290fbbdd88
Created April 22, 2015 18:43
Pubsub AJAX example from Javascript Design Patterns book by Addy Osmani
<!doctype html>
<html>
<head>
<title>Publish Subscribe example</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
</head>
<body>
<form id="flickrSearch">
<!doctype html>
<html>
<head>
<title>Publish Subscribe example</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
</head>
<body>
<script id="itemTemplate" type="text/html">
@seamusjr
seamusjr / git-svn-cheatsheet.txt
Last active August 29, 2015 14:15
Git SVN cheatsheet
GIT SVN NOTES:
Merge:
-----------------------------
git checkout master
git svn rebase
git checkout MY_FEATURE
git rebase master
git checkout master
@seamusjr
seamusjr / gist:10274539
Last active August 29, 2015 13:58
regex match number between 25 and 800
/^\s*[2-9][5-9]|1[0-9][0-9]|2[0-9][0-9]|3[0-9][0-9]|4[0-9][0-9]|5[0-9][0-9]|6[0-9][0-9]|7[0-9][0-9]|800*$/
@seamusjr
seamusjr / gist:7936218
Created December 12, 2013 21:51
importing compass lib to access mixins
@import "compass/css3";
.spotlight {
background:orange;
@include border-radius(5px);
margin:0 auto;
width:200px;
}
@seamusjr
seamusjr / fixTopLevelCategories.js
Last active December 24, 2015 02:49
DW: Fix top level category search refinements when SEO friendly links are on
//In app.js to fix top level category:
// handle events for updating grid
$cache.main.on("click", ".refinements a, .pagination a, .breadcrumb-refinement-value a", function (e) {
e.preventDefault();
if ($(this).parent().hasClass("unselectable")) { return; }
if (typeof $(this).attr('href') === 'undefined' || $(this).attr('href') == '') { return; }
var uri = app.util.getUri(this);