Skip to content

Instantly share code, notes, and snippets.

@klzns
klzns / gist:a8f83b0de7a899b61b06
Last active August 29, 2015 19:30
Como pegar a URL da imagem do produto
let accountName = 'basedevmkp';
let width = 500;
let height = 500;
let path = imageUrl.replace('#width#', width).replace('#height#', width);
let baseUrl = `http://${accountName}.vteximg.com.br`
path = baseUrl + path;
@klzns
klzns / setup.md
Last active September 14, 2015 21:20
Setup Storefront

Para o Alpha precisamos que o computador tenha algumas coisas instaladas. Caso não consiga instalar algo, podemos ver isso no dia.

Node

Instruções de como instalar o node.

Windows

Caso use o Windows, instale o Git Bash e o ConEmu eles facilitam o uso do terminal. Depois configure o ConEmu para usar o Git Bash (instruções)

Pacotes node

@klzns
klzns / conemu-gitbash.md
Last active September 14, 2015 21:21
ConEmu & Git Bash

You can get to the settings by right-clicking the window bar (why this isn't on a [gear] icon is beyond me). If you want it to take over as the default command prompt, the option you want is under Integration > Default Term, its the first checkbox.

Now, to get the MySysGit Bash to open:

  1. Go to Startup > Tasks
  2. Hit the [+] Button to create a new task
  3. Give it a name
  4. Set the task parameters to /single /Dir "[YourStartupDir]" /icon "%ProgramFiles(x86)%\Git\etc\git.ico"
  5. Set the shell with the command
@klzns
klzns / server.js
Last active January 31, 2016 20:58
How to proxy index.html with react-transform
var express = require('express');
var webpack = require('webpack');
var httpProxy = require('http-proxy');
var proxy = new httpProxy.createProxyServer();
var config = require('./webpack.config');
var app = express();
var compiler = webpack(config);
app.use(require('webpack-dev-middleware')(compiler, {
@klzns
klzns / _index.js
Created December 21, 2015 20:52
ISO Alpha 3 to country name localized. Translated country names in Portuguese, spanish, french and english.
var fs = require('fs');
// Files
var files = [
'es',
'fr',
'pt-br',
'us'
];
@klzns
klzns / iso-alpha-2-to-3.json
Last active March 16, 2016 20:16
Country Code ISO Alpha 2 to Country Code ISO Alpha 3
{
"AF": "AFG",
"AX": "ALA",
"AL": "ALB",
"DZ": "DZA",
"AS": "ASM",
"AD": "AND",
"AO": "AGO",
"AI": "AIA",
"AQ": "ATA",
System.config({defaultJSExtensions: true});
System.config({
baseUrl: '/',
packages: {
'brenoc.theme@3.5.0': {
map: {
'vtex.sdk': 'vtex.sdk@1.0.0',
'n1.shelf': 'n1.shelf@0.7.1',
'vtex.banner': 'vtex.banner@1.0.0',
@klzns
klzns / iFramePayment.js
Created August 15, 2016 20:07
Fechamento de compra com iFrame
function handleEvents(event) {
switch(event) {
// ...
case 'sendPayments.vtex':
let checkoutPayments = event.data.arguments[0];
let transactionResponse = event.data.arguments[1];
let deviceFingerprint = event.data.arguments[2];
sendPayments(checkoutPayments, transactionResponse, deviceFingerprint);
break;
}
@klzns
klzns / transformToActionNames.js
Created August 15, 2016 22:25
Transform camelCase to ACTION_NAMES
function transformToActionNames(actions) {
return _.map(actions, (action) => {
let newActionName = ''
for (var index = 0; index < action.length; index++) {
var char = action[index]
if (index === 0) {
newActionName += char.toUpperCase()
continue
}
if (char == char.toUpperCase()) {

Keybase proof

I hereby claim:

  • I am brenoc on github.
  • I am brenoc (https://keybase.io/brenoc) on keybase.
  • I have a public key whose fingerprint is AE0E 5CD3 D144 983C 2FF8 8C31 B6BC FD1C 4D98 43DD

To claim this, I am signing this object: