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
| /* | |
| jQuery.extend extracted from the jQuery source & optimised for NodeJS | |
| Twitter: @FGRibreau / fgribreau.com | |
| Usage: | |
| var Extend = require('./Extend'); | |
| // Extend | |
| var obj = Extend({opt1:true, opt2:true}, {opt1:false}); |
| module HttpAuthentication | |
| module Basic | |
| def authenticate_or_request_with_http_basic(realm = 'Application') | |
| authenticate_with_http_basic || request_http_basic_authentication(realm) | |
| end | |
| def authenticate_with_http_basic | |
| if auth_str = request.env['HTTP_AUTHORIZATION'] | |
| return 'login:password' == ActiveSupport::Base64.decode64(auth_str.sub(/^Basic\s+/, '')) | |
| end |
| /* | |
| * object.watch polyfill | |
| * | |
| * 2012-04-03 | |
| * | |
| * By Eli Grey, http://eligrey.com | |
| * Public Domain. | |
| * NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
| */ |
ejabberd is cross-platform, distributed, fault-tolerant, and based on open standards to achieve real-time communication.
ejabberd is designed to be a rock-solid and feature rich XMPP server.
ejabberd is suitable for small deployments, whether they need to be scalable or not, as well as extremely big deployments.
| #!/bin/bash | |
| # Script to convert PDF file to JPG images | |
| # | |
| # Dependencies: | |
| # * pdftk | |
| # * imagemagick | |
| PDF=$1 |
| package divo.felix.chem.pte; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| /** | |
| * Holds information of the periodic table of elements. | |
| * | |
| * @author Felix Divo | |
| */ |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| from twisted.web import server, resource | |
| from twisted.internet import reactor, endpoints | |
| class Counter(resource.Resource): | |
| isLeaf = True | |
| numberRequests = 0 | |
| def render_GET(self, request): | |
| self.numberRequests += 1 | |
| request.setHeader("content-type", "text/plain") |