./mage config-set preferred_state stable
./mage clear-cache
./mage sync
./mage download community Module_Name
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
function Gauge(placeholderName, configuration) | |
{ | |
this.placeholderName = placeholderName; | |
var self = this; // for internal d3 functions | |
this.configure = function(configuration) | |
{ | |
this.config = configuration; | |
<?php | |
$installer = Mage::getResourceModel('catalog/setup', 'catalog_setup'); | |
if (!$installer->getAttributeId(Mage_Catalog_Model_Product::ENTITY, 'attribute_name')) { | |
$installer->addAttribute(Mage_Catalog_Model_Product::ENTITY, 'attribute_name', array( // TABLE.COLUMN: DESCRIPTION: | |
'label' => 'Label', // eav_attribute.frontend_label admin input label | |
'group' => 'General', // (not a column) tab in product edit screen | |
'sort_order' => 0 // eav_entity_attribute.sort_order sort order in group | |
'backend' => 'module/class_name', // eav_attribute.backend_model backend class |
date | value | |
---|---|---|
2013-01 | 53 | |
2013-02 | 165 | |
2013-03 | 269 | |
2013-04 | 344 | |
2013-05 | 376 | |
2013-06 | 410 | |
2013-07 | 421 | |
2013-08 | 405 | |
2013-09 | 376 |
I use Gentoo Linux, for a wide variety of reasons. Performance is a big one, with the least amount of RAM utilized on startup after a fresh install, startup times to all-services-responding of around four seconds, and broad support for operation in a cluster: distributed computing. By default it compiles packages from source, allowing the installed packages to be highly optimized for the physical hardware it is running on, however it also integrates binary package support and distributed compiling allowing one "master" host to orchestrate compilation across an entire cluster. This results in "from depclean
" kernel compiliation times in the order of 40 seconds in my production cluster. I SSHFS mount the package directory from the master on the other hosts and simply install the binary packages it produces.
Hand-installing a new Gentoo build takes around ten minutes on a reasonably powered VM
import UIKit | |
// How to make singleton classes in Swift: http://stackoverflow.com/questions/24024549/dispatch-once-singleton-model-in-swift | |
// Basically using global constants is the most easy and safe way to go | |
class APIClient: NSObject { | |
let functionSessionManager:AFHTTPSessionManager | |
class var sharedInstance:APIClient { |
0. What is the name of the ELB which needs to be pre-warmed? | |
a. e.g. yourwebapp-yourcompany-123456789.us-east-1.elb.amazonaws.com | |
1. What is the approximate increase percentage in traffic, or expected requests/sec that will go through the load balancer (whichever is easier to answer)? | |
a. e.g. 3,500 per second | |
2. Do you know the average amount of data passing through the ELB per request/response pair? | |
a. e.g. Roughly 250KB. | |
3. Expected percent of traffic going through the ELB that will be using SSL termination? |