Actualmente los clientes de G500 al generar factura electronica, al dar clic en en el menu se requiere validar la estacion en la que se genero el ticket posteriomente es necesario llenar los datos requeridos para la facturación.
This file contains hidden or 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
var fs = require('fs'); | |
var path = require('path') | |
var json2md = require("json2md") | |
var marked = require('marked') | |
const prettier = require("prettier"); | |
var youtubeEmbedded = function (input,options) { | |
var episode = { |
This file contains hidden or 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 | |
VARIABLES='' | |
REGION=us-west-2 | |
PROFILE=DIAGEO | |
FUNCTION_NAME=name-function | |
## ENVIRONMENT VARS | |
ids=(CONTENT_DOC_ID=value1 \ | |
CONTENT_SHEET_NAME=value2 \ | |
QUIZ_ANSWERS_SHEET_NAME=value3 \ |
I hereby claim:
- I am emoron on github.
- I am emoron (https://keybase.io/emoron) on keybase.
- I have a public key ASBOg3mKMdVs55lG0EBvwqT7HWWg1ZaBWLz7GUK_5J-9iAo
To claim this, I am signing this object:
This file contains hidden or 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
#!/usr/bin/python3 | |
####################################################### | |
# Python rsync Backup script | |
# Sebastian Kraft, 24.06.2013 | |
# | |
####################################################### | |
#----------------------------------------------------- | |
# Config |
This file contains hidden or 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
const path = require('path'); | |
const webpack = require('webpack'); | |
const HtmlWebpackPlugin = require('html-webpack-plugin') | |
const MiniCssExtractPlugin = require('mini-css-extract-plugin'); | |
const devMode = process.env.NODE_ENV !== 'production' | |
const devFlagPlugin = new webpack.DefinePlugin({ | |
__DEV__: JSON.stringify(JSON.parse(process.env.DEBUG || 'false')) | |
}); | |
const config = { |
This file contains hidden or 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
\documentclass{article} | |
\usepackage[demo]{graphicx} | |
\usepackage{subcaption} | |
\usepackage{tabularx} | |
\newcolumntype{C}{>{\centering\arraybackslash}X} | |
\usepackage{lipsum} | |
\begin{document} |
This file contains hidden or 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
<html> | |
<head> | |
<!-- Aqui va un comentario --> | |
<!-- Este es otro comentario --> | |
</head> | |
<body> | |
<h1>Notas de HTML</h1> | |
<h2>Introduccion a la estructura <strong>basica</strong></h2> | |
<h3>Este es mas pequeño</h3> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed sed ullamcorper dui. Suspendisse maximus congue tortor a mollis. Morbi posuere turpis metus. Praesent ut massa lectus. Sed sit amet sagittis lorem. Praesent mattis feugiat luctus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aliquam laoreet sed turpis nec varius. Nam lacinia nulla in blandit imperdiet. Mauris non justo at tellus ornare iaculis. Pellentesque ullamcorper nisl eu purus tempor, sit amet tempus dolor eleifend. Etiam et risus ac nisl congue dapibus id vitae nulla. Nulla facilisi. Cras pulvinar bibendum turpis id volutpat.</p> |
This file contains hidden or 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
let imageBuffer = Buffer.from(body.profilePicture.split(',')[1], 'base64'); | |
console.log(imageBuffer); | |
Jimp.read(imageBuffer, function(err, image) { | |
if (err) { | |
context.done(err, | |
prepareErrorResponse(response, 'Unable to remove EXIF data from profile picture')); | |
} | |
console.log('before transform: ', image); | |
image = image.resize(400, 400).exifRotate((err, exifRotatedData) => { |
NewerOlder