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
(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
"use strict"; | |
/* jshint browser: true, jquery: true, devel: true, unused: true, undef: true, freeze: true, curly: true, eqeqeq: true, funcscope: true, latedef: true, noarg: true, notypeof: true, shadow: true, globalstrict: true, maxparams: 4, maxdepth: 4, maxstatements: 15, maxcomplexity: 6 */ | |
/* global require: true, Handlebars: true */ | |
require('jquery'); | |
require('handlebars'); | |
var App = {}; | |
App.debugFactory = require('debug'); |
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
# Az applikáció célja | |
Az applikáció célja a **Cardex brand fő internetes oldalának** kiszolgálása a cardex.hu címen. A weboldal célcsoportja az egyéni felhasználók, mivel a céges ügyfeleket különálló weboldal szolgálja ki. Elsődlegesen meghatározott cél a **fizetős termékek vásárlói csatornáiba** terelni a látogatókat. Ezek a termékek a **POD**, az **elektronikus** és **hagyományos képeslapok**. Másodlagos cél, hogy releváns, érdekes tartalmak szolgáltatásával **visszatérő vásárlói közönséget** alakítsunk ki. | |
#Oldalstruktúra | |
A fa nézetben felvázolt elemek közül csak a **vastagon kiemeltek** jelentenek különálló oldalakat. A többi oldalelemet, menüpontot vagy felhasználói irányt fejez ki. | |
├── **cardex.hu** | |
│ ├── **Kosár** | |
│ ├── **Szállítási adatok, fizetési mód** |
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
<!DOCTYPE html> | |
<head> | |
<meta charset="UTF-8"> | |
</head> | |
<html> | |
<title>CARDEX Specifikáció - POD Modul</title> | |
<xmp theme="superhero" style="display:none;"> | |
# A modul célja | |
A modul célja, hogy a látogatók különböző kategóriákba sorolt **képeslapokat** testre szabjanak és azokat **megvásárolják**. A megrendelt képeslapokat ezután postán kapják meg. A vásárlási folyamatnak **intuitívnak** és **gyorsnak** kell lennie, hogy minél kisebb mértékű legyen a folyamat elhagyása. A folyamat bármikor **abbahagyható** és bármelyik lépésébe újra **visszacsatlakozhat** a felhasználó. |
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
'use strict'; | |
const q = require('q'); | |
const globby = require('globby'); | |
const path = require('path'); | |
const fs = require('fs'); | |
const AWS = require('aws-sdk'); | |
const config = require('../../../config/aws'); | |
const lambda = new AWS.Lambda(config.lambda.sdk); |
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
[318626379, 458492821, 521568486, 520720795, 516390338, 514420570, 449749122, 423151864, 459263474, 449017028, 99729908, 448685101, 449213795, 447887999, 516312957, 453520053, 527480421, 515853496, 515524370, 517237733, 521322004, 458426778, 514428336, 447940297, 452087666, 448297250, 527118000, 453730433, 515613406, 523313262, 516526286, 521320995, 452430962, 527488193, 515994012, 527118838, 447813821, 523578106, 514982562, 522765153, 517260888, 448135143, 514966432, 454460379, 514307307, 452838942, 523661956, 457763937, 449433845, 527567876, 522629029, 449698882, 452993772, 459134801, 515031803, 516495245, 457813651, 527797341, 516483622, 449122805, 517034498, 452982919, 516905395, 452195858, 447978147, 449434804, 457890494, 521667299, 448283548, 452403677, 517429653, 515393712, 459117687, 446978676, 316136416, 522282359, 449149107, 458375082, 521036213, 522071123, 516049733, 459683453, 457932651, 526734097, 522930589, 458754026, 458825596, 520897901, 520777746, 515941722, 459985603, 516837644, 449077259, 4 |
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 | |
sudo apt-get update | |
sudo apt-get install apt-transport-https ca-certificates | |
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
sudo echo deb https://apt.dockerproject.org/repo ubuntu-xenial main > /etc/apt/sources.list.d/docker.list | |
sudo apt-get update | |
sudo apt-get purge lxc-docker docker.io | |
sudo apt-get install linux-image-extra-$(uname -r) | |
sudo apt-get install docker-engine |
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
require 'rnn' | |
batchSize = 1000 | |
rho = 999999 | |
hiddenSize = 7 | |
nIndex = 10 | |
iters = 10 | |
learningRate = 0.1 | |
inputSize = 5 | |
dataSize = 18563460 |
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
global | |
log /dev/log local0 | |
log /dev/log local1 notice | |
chroot /var/lib/haproxy | |
stats socket /run/haproxy/admin.sock mode 660 level admin | |
stats timeout 30s | |
user haproxy | |
group haproxy | |
daemon | |
maxconn 100000 |
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
POST /jobs | |
{ | |
"images": [ | |
"https://somewhere/ImageName1.jpg", | |
"https://somewhere/ImageName2.jpg", | |
"https://somewhere/ImageName3.jpg", | |
"https://somewhere/ImageName4.jpg", | |
"https://somewhere/ImageName5.jpg", | |
"https://somewhere/ImageName6.jpg", | |
"https://somewhere/ImageName7.jpg" |
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
import * as firebase from 'firebase'; | |
const actionNames = { | |
INPUT_CHANGED: 'INPUT_CHANGED', | |
TOGGLE_NOTIFICATION: 'TOGGLE_NOTIFICATION', | |
LOGGEDIN: 'LOGGEDIN', | |
LOGGEDOUT: 'LOGGEDOUT', | |
LOGIN_ERROR: 'LOGIN_ERROR' | |
} |
OlderNewer