Rotina de emissão automática de notas fiscais.
As notas fiscais podem ser emitidas automáticamente pelo sistema conforme as receitas desde que cumpram os requisitos para a emissão automática listados abaixo.
Rotina de emissão automática de notas fiscais.
As notas fiscais podem ser emitidas automáticamente pelo sistema conforme as receitas desde que cumpram os requisitos para a emissão automática listados abaixo.
<!-- Game canvas --> | |
<canvas id="c"></canvas> | |
<!-- Gameplay HUD --> | |
<div class="hud"> | |
<div class="hud__score"> | |
<div class="score-lbl"></div> | |
<div class="cube-count-lbl"></div> | |
</div> | |
<div class="pause-btn"><div></div></div> |
#!/bin/bash | |
# Miminum delay between iterations, in seconds | |
delay=10 | |
# Pairs of [bluetooth MAC, test expression] | |
targets=( | |
"98:B6:E9:47:F0:4F" "test ! -e /dev/input/js0" | |
"98:B6:E9:72:6C:31" "test -z \"\$(bluetoothctl info 98:B6:E9:72:6C:31 | grep 'Connected: yes')\"" | |
) |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
package main | |
import ( | |
"fmt" | |
"github.com/codegangsta/negroni" | |
"github.com/julienschmidt/httprouter" | |
"net/http" | |
) | |
func main() { |
COUNTRIES = { | |
"US": "United States", | |
"AF": "Afghanistan", | |
"AX": "Åland Islands", | |
"AL": "Albania", | |
"DZ": "Algeria", | |
"AS": "American Samoa", | |
"AD": "Andorra", | |
"AO": "Angola", | |
"AI": "Anguilla", |
#! /bin/bash | |
# Generates, encrypts, transfers and rotates Gitlab backups to/on Amazon S3. | |
# Requirements: | |
# | |
# 1. Gitlab | |
# | |
# $ apt-get update |
#! /bin/bash | |
# Dumps, compresses, encrypts, transfers, and rotates Rancher backups to/on Amazon S3. | |
# Requirements: | |
# | |
# 1. Docker | |
# | |
# $ curl -fsSL https://get.docker.com/ | sh |
var fs = require('fs'), | |
util = require('util'), | |
Stream = require('stream').Stream; | |
/** | |
* Create a bandwidth limited stream | |
* | |
* This is a read+writeable stream that can limit how fast it | |
* is written onto by emitting pause and resume events to | |
* maintain a specified bandwidth limit, that limit can |