I hereby claim:
- I am luisdalmolin on github.
- I am luisdalmolin (https://keybase.io/luisdalmolin) on keybase.
- I have a public key ASCuTQXJVARZnsbRD-QaLiR7OVMB-9c4aHvhsn1HJAPswQo
To claim this, I am signing this object:
| name: Deploy to Production | |
| on: | |
| release: | |
| types: [published] | |
| permissions: | |
| id-token: write | |
| contents: read |
| [ | |
| { | |
| "key": "ctrl+cmd+p", | |
| "command": "workbench.action.openRecent" | |
| } | |
| ] |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Document</title> | |
| <link href="https://cdn.jsdelivr.net/npm/tailwindcss/dist/tailwind.min.css" rel="stylesheet"> | |
| </head> | |
| <body> |
| # Media: images, icons, video, audio, HTC | |
| location ~* \.(?:jpg|jpeg|gif|png|ico|cur|gz|svg|svgz|mp4|ogg|ogv|webm|htc|woff|woff2|css|js)$ { | |
| expires 30d; | |
| access_log off; | |
| add_header Pragma public; | |
| add_header Cache-Control "public"; | |
| } | |
| # cache.appcache, your document html and data | |
| location ~* \.(?:manifest|appcache|html?|xml|json)$ { |
| PagSeguroDirectPayment.getBrand({ | |
| cardBin: $scope.card, | |
| success: function(response) { | |
| console.log(response); | |
| }, | |
| error: function(response) { | |
| console.log(response); | |
| } |
| var version = 'v1::'; | |
| // ------------------------------------------------------- | |
| // aqui devem ser baixados os recursos offline, que devem vir de uma lista em algum local | |
| // provavelmente alguma API no site | |
| this.addEventListener('install', function(event) { | |
| console.log('Service Worker instalado!'); | |
| // return self.clients.skipWaiting(); | |
| }); |
| Verifying that +luisdalmolin is my blockchain ID. https://onename.com/luisdalmolin |
| <select name="uf" id="uf" class="input input-uf" required> | |
| <option value="">UF</option> | |
| <option value="AC" {{ Input::old('city') == 'AC' ? 'selected="selected"' : null }}>AC</option> | |
| <option value="AL" {{ Input::old('city') == 'AL' ? 'selected="selected"' : null }}>AL</option> | |
| <option value="AP" {{ Input::old('city') == 'AP' ? 'selected="selected"' : null }}>AP</option> | |
| <option value="AM" {{ Input::old('city') == 'AM' ? 'selected="selected"' : null }}>AM</option> | |
| <option value="BA" {{ Input::old('city') == 'BA' ? 'selected="selected"' : null }}>BA</option> | |
| <option value="CE" {{ Input::old('city') == 'CE' ? 'selected="selected"' : null }}>CE</option> | |
| <option value="DF" {{ Input::old('city') == 'DF' ? 'selected="selected"' : null }}>DF</option> | |
| <option value="ES" {{ Input::old('city') == 'ES' ? 'selected="selected"' : null }}>ES</option> |
| module.exports = function(grunt) { | |
| grunt.initConfig({ | |
| uglify: { | |
| options: { | |
| mangle: false | |
| }, | |
| app: { | |
| files: { | |
| 'public/assets/javascripts/js/main.min.js': [ // arquivo minificado |