Skip to content

Instantly share code, notes, and snippets.

View atroche's full-sized avatar

Alistair Roche atroche

View GitHub Profile

Magento Snippets

Download extension manually using pear/mage

Pear for 1.4, mage for 1.5. File downloaded into /downloader/.cache/community/

./pear download magento-community/Shipping_Agent
./mage download community Shipping_Agent

Clear cache/reindex

@atroche
atroche / gist:5647270
Last active August 7, 2016 21:02
Comparing different solutions to http://www.4clojure.com/problem/43
; my incredibly ugly solution
(fn rinter [s parts]
(letfn [(mod-index [s n] (keep-indexed (fn [index item] [(rem index n) item]) s))]
(map (fn [place]
(reduce (fn [acc [index v]]
(if (= index place)
(conj acc v)
acc))
[]
@atroche
atroche / gist:7456775
Created November 13, 2013 21:32
Consider the Lobster
The enormous, pungent, and extremely well marketed Maine Lobster Festival is held every late July in the state’s midcoast region, meaning the western side of Penobscot Bay, the nerve stem of Maine’s lobster industry. What’s called the midcoast runs from Owl’s Head and Thomaston in the south to Belfast in the north. (Actually, it might extend all the way up to Bucksport, but we were never able to get farther north than Belfast on Route 1, whose summer traffic is, as you can imagine, unimaginable.) The region’s two main communities are Camden, with its very old money and yachty harbor and five-star restaurants and phenomenal B&Bs, and Rockland, a serious old fishing town that hosts the Festival every summer in historic Harbor Park, right along the water.1
Tourism and lobster are the midcoast region’s two main industries, and they’re both warm-weather enterprises, and the Maine Lobster Festival represents less an intersection of the industries than a deliberate collision, joyful and lucrative and loud. The assi
My pocket vibrated. I pulled my phone out and saw a name I hadn't seen in a long time. I sat up in bed, hesitating for a moment, trying to build up enthusiasm. I hated taking unexpected calls. I swiped.
“Holy shit, Anthony! How are you?” It was the ex-editor of PC PowerPlay, a magazine I'd freelanced for, years ago.
“I'm well, and you?”
“I'm good!” It was an old joke we had — he was a stickler for the Queen's English. He sounded the same as always, like an Australian Professor Frink. “How's … Canberra?” He'd been writing technical documentation for the government since he got fired.
He chuckled, to show he appreciated the effort. “Listen, Ali, I've been playing this game. Play-testing it for an American company, and it's … amazing.”
traceroute to koding.com (68.68.97.41), 64 hops max, 52 byte packets
1 192.168.1.1 (192.168.1.1) 4.468 ms 1.066 ms 0.981 ms
2 lo0.mel-cam-bng1.iinet.net.au (203.215.15.252) 22.625 ms 20.175 ms 17.112 ms
3 po-11.mel-cam-bdr1.iinet.net.au (203.215.15.4) 16.981 ms
po-11.mel-cam-bdr2.iinet.net.au (203.215.15.6) 17.633 ms
po-11.mel-cam-bdr1.iinet.net.au (203.215.15.4) 16.916 ms
4 te7-3.mel-pipe-bdr2.on.ii.net (203.215.20.48) 42.907 ms
te1-2.mel-cam-bdr2.on.ii.net (203.215.20.51) 17.064 ms
te7-3.mel-pipe-bdr2.on.ii.net (203.215.20.48) 16.688 ms
5 te7-3.mel-pipe-bdr2.on.ii.net (203.215.20.48) 17.543 ms
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;'';';'''''''''''''''''''';;;;;;;;;;;;;;;;;;;;;;::::::,,,,,,,........
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;';'''''''''''''''''''''';;;;;;;;;;;;'''''';;;::::::,,,,,,,,,......
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;'''''''''''''''''''''''';;;;''''';'''''''''';;;;:::::,,,,,,,,......
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;';';'''''''''''''''+''''+;';;'''''''''''''++++'';;;;:::::,,,,,,,,,....
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;''''''''''`;'''.:;''# ,''''''''''''''++++++'';;;;::::::,,,,,,,,...
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;';''''''''''. '++:,;''+ .:;''''''''''''++++++++''';;;;::::,,,,,,,,,,.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;';';;;;'''++'#';++'';+++ ,:;+'++'''''''''''+++++++'';;;;:::::,,,,,,,,,
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::'''''++++++++++++++;'+'+'++++''';''''''''++++#++''';;;;:::::,,,,,,,
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;';;''';'..'++++++++++++++' `+++++++++';;:;;''''''''+++++++'';;;;:::::,,,,,,
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;'''''''''''';;+++++++
require 'rubyperf'
m = Perf::Meter.new
result2=m.measure(:bang) do
10000000.times do
"asdf".sub!(/a/, "")
end
end
result1=m.measure(:non_bang) do
10000000.times do
(ann tuples-to-map [(Vec Any) -> (Map Any Any)])
(defn tuples-to-map [tuples]
(into {} tuples))
// Underscore.js 1.5.2
// http://underscorejs.org
// (c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
// Underscore may be freely distributed under the MIT license.
(function(){var n=this,t=n._,r={},e=Array.prototype,u=Object.prototype,i=Function.prototype,a=e.push,o=e.slice,c=e.concat,l=u.toString,f=u.hasOwnProperty,s=e.forEach,p=e.map,h=e.reduce,v=e.reduceRight,g=e.filter,d=e.every,m=e.some,y=e.indexOf,b=e.lastIndexOf,x=Array.isArray,w=Object.keys,_=i.bind,j=function(n){return n instanceof j?n:this instanceof j?(this._wrapped=n,void 0):new j(n)};"undefined"!=typeof exports?("undefined"!=typeof module&&module.exports&&(exports=module.exports=j),exports._=j):n._=j,j.VERSION="1.5.2";var A=j.each=j.forEach=function(n,t,e){if(null!=n)if(s&&n.forEach===s)n.forEach(t,e);else if(n.length===+n.length){for(var u=0,i=n.length;i>u;u++)if(t.call(e,n[u],u,n)===r)return}else for(var a=j.keys(n),u=0,i=a.length;i>u;u++)if(t.call(e,n[a[u]],a[u],n)===r)return};j.map=j.collect=