- paper doll
- has dataset
- KNN
- Creating Capsule Wardrobes from Fashion Images
- Learning Fashion Compatibility with Bidirectional LSTMs
- Parsing Clothing in Fashion Photographs
- we provide a large novel dataset and tools
- https://github.com/ihciah/deep-fashion-retrieval
- https://github.com/wenxinxu/deep-shopping
- https://github.com/leekyungmoon/WatchOUT
- I advice you to buy SSL Certs from officially Comodo only , or some SSL reseller whose you trust.
These are the steps I went through to set up an SSL cert. Purchase the cert
Prior to purchasing a cert, you need to generate a private key, and a CSR file (Certificate Signing Request). You’ll be asked for the content of the CSR file when ordering the certificate:
openssl req -new -newkey rsa:2048 -nodes -keyout example_com.key -out example_com.csr
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 | |
# USAGE | |
# Install opendkim | |
# List all your domains in file /etc/opendkim/TrustedHosts, one per line | |
CHOWN="$(which chown)" | |
MKDIR="$(which mkdir)" | |
REMOVE="$(which rm)" | |
ECHO="$(which echo)" | |
COPY="$(which cp)" |
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 | |
// contributed by supplify.com | |
error_reporting(E_ALL); | |
ini_set('display_errors', 1); | |
require_once '../curl/Zebra_cURL.php'; | |
require_once '../app/Mage.php'; | |
Mage::app(); | |
class action extends Zebra_cURL{ |
Install Play Framework on Ubuntu 14.04
- download file from https://www.typesafe.com/activator/download
- move unzipped directory to /usr/local/share
- export
export ACTIVATOR_HOME=/usr/local/share/activator-dist-1.3.6
export PATH=$PATH:$ACTIVATOR_HOME/bin
- create Play app
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
<!-- Facebook Custom Audience Pixel Code - Placed on Every Page of Site --> | |
<script> | |
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod? | |
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n; | |
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0; | |
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window, | |
document,'script','//connect.facebook.net/en_US/fbevents.js'); | |
fbq('init', '{{facebook pixel}}'); | |
fbq('track', 'PageView'); | |
</script> |
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 | |
class Orchid_CouponFix_Model_Observer | |
{ | |
public function cancel($observer) | |
{ | |
$resource = Mage::getModel('core/resource'); | |
$db = $resource->getConnection('core_write'); | |
$event = $observer->getEvent(); | |
$order = $event->getPayment()->getOrder(); | |
if ($order->canCancel()) { |
Step by step to install Scala + Play Framework in Ubuntu 14.04 with Activator.
Install Scala
sudo apt-get remove scala-library scala
wget http://www.scala-lang.org/files/archive/scala-2.11.6.deb
sudo dpkg -i scala-2.11.6.deb
sudo apt-get update
sudo apt-get install scala
- Note that SHA2 hash algorithm may be not supported on older systems (Windows XP, Windows 2003, among others).
- Be aware that mandatory https on SNI vhosts eliminate [Internet Explorer on Windows XP, among others] (http://en.wikipedia.org/wiki/Server_Name_Indication#Web_browsers.5B6.5D).
- My version of konklones SSL config does not have SPDY support(my nginx+openssl does not support it)
- You need a default ssl server (example.org-default.conf).
- Some SSL-options have to be unique across your instance, so it's easier to have them in a common file(ssl.conf).
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
DELETE FROM catalog_category_entity_datetime WHERE `value` IS NULL; | |
DELETE FROM catalog_category_entity_decimal WHERE `value` IS NULL; | |
DELETE FROM catalog_category_entity_int WHERE `value` IS NULL; | |
DELETE FROM catalog_category_entity_text WHERE `value` IS NULL; | |
DELETE FROM catalog_category_entity_varchar WHERE `value` IS NULL; | |
DELETE FROM catalog_product_entity_datetime WHERE `value` IS NULL; | |
DELETE FROM catalog_product_entity_decimal WHERE `value` IS NULL; | |
DELETE FROM catalog_product_entity_gallery WHERE `value` IS NULL; | |
DELETE FROM catalog_product_entity_group_price WHERE `value` IS NULL; |
NewerOlder