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
| // To view the default settings, hold "alt" while clicking on the "Settings" button. | |
| // For documentation on these settings, see: https://aka.ms/terminal-documentation | |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "defaultProfile": "{2c4de342-38b7-51cf-b940-2309a097f518}", | |
| "launchMode": "maximized", |
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
| { "InputSet" : { | |
| "IBukrs": "0011", | |
| "NavDirFami": [{ | |
| "NroDoc": "87989897", | |
| "NroDocp": "23232323", | |
| "TipVia": "01", | |
| "Txvia": "PRUeba vi1", | |
| "NumVia": "0001", | |
| "Nrint": "ab", | |
| "NroDpto": "110", |
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
| server { | |
| listen 8080; | |
| server_name localhost; | |
| location / { | |
| root C:\dev\CAMPOSOL\SEAFOOD\RegistroEntrada\www; | |
| index index.html; | |
| } | |
| } |
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
| // Extract from my printing strategy with Cordova and my Zbtprinter plugin fork | |
| // https://github.com/devnieL/zbtprinter | |
| var printer = { | |
| address : "[MAC ADDRESS]" | |
| } | |
| $.get('./view/Printing/Templates/Receipt.html', function(template) { | |
| function textToBase64Barcode(text) { |
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
| jQuery.sap.declare("com.pecsa.dev.services.Shipments"); | |
| jQuery.sap.require("com.pecsa.dev.services.Products"); | |
| jQuery.sap.require("com.pecsa.dev.models.Shipment"); | |
| jQuery.sap.require("com.pecsa.dev.models.Product"); | |
| var toMap = function(array, key1, key2) { | |
| var map = {}; | |
| for (var i in array) { | |
| map[array[i][key1] + "-" + array[i][key2]] = array[i]; | |
| } |
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
| // Setup axis chart | |
| _chart.setHighlightPerTapEnabled(true); | |
| _chart.setHighlightPerDragEnabled(true); | |
| _chart.setPinchZoom(false); | |
| _chart.setDescription(null); | |
| _chart.setDoubleTapToZoomEnabled(false); | |
| _chart.animateX(1000, Easing.EasingOption.EaseInOutBack); |
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
| package pe.com.primax.appprimax; | |
| import android.app.AlertDialog; | |
| import android.content.Context; | |
| import android.content.DialogInterface; | |
| import android.content.SharedPreferences; | |
| import android.graphics.Bitmap; | |
| import android.graphics.BitmapFactory; | |
| import android.location.Address; | |
| import android.location.Geocoder; |
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
| // LAYOUT | |
| .layout-grid-12 { | |
| width: 100%; | |
| &::after { | |
| display: block; | |
| content: " "; | |
| clear: both; | |
| } |
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
| # -*- coding: utf-8 -*- | |
| from datetime import datetime, timedelta | |
| import random | |
| import unittest | |
| import difflib | |
| def ratio(original, changed): | |
| changes = 0 | |
| u = zip(original, changed) | |
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
| box-shadow: inset 0px 1px 5px rgba(0, 0, 0, 0.1); | |
| ------------------- | |
| color: rgb(103, 103, 103); | |
| font-family: 'Titillium-Light'; | |
| font-weight: 300; |