- Acir Gurgacz (PDT-RO) - Não foi Eleito (Governador)
- Aécio Neves (PSDB-MG) - Eleito (Deputado Federal)
- Ângela Portela (PDT-RR) - Não foi reeleita
- Antonio Anastasia (PSDB-MG) - Não foi eleito (Governador)
- Antônio Valadares (PSB-SE) - Não foi reeleito
- Armando Monteiro (PTB-PE) - Não foi eleito (Governador)
- Ataídes Oliveira (PSDB-TO) - [Não foi reeleito](https://espe
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
| node_modules/ | |
| dist/ | |
| .git/ |
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 pino = require('pino') | |
| const dest = pino.destination() | |
| const logger = pino({ | |
| name: process.env.APPLICATION_NAME || 'my-app', | |
| level: process.env.LOG_LEVEL || 'info', | |
| useLevelLabels: true, | |
| base: { | |
| } | |
| }, dest) |
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 fs = require('fs') | |
| const path = require('path') | |
| const slug = require('slug') | |
| const axios = require('axios') | |
| const progress = require('progress') | |
| const urlRegx = /(https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|www\.[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9]+\.[^\s]{2,}|www\.[a-zA-Z0-9]+\.[^\s]{2,})/gi; | |
| const readList = async () => { | |
| console.info('Loading file data') |
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 { shuffle, map } = require('lodash') | |
| const { sendMessages } = require('./send-email') | |
| const input = shuffle(require('./input.json')) | |
| function assign (array) { | |
| return map(array, (person, index, array) => { | |
| const friend = array[index + 1] || array[0] | |
| return { | |
| person, |
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
| FROM continuumio/anaconda3 | |
| RUN /opt/conda/bin/conda install jupyter | |
| RUN mkdir -p /opt/notebooks/notebook | |
| EXPOSE 8888 | |
| CMD /opt/conda/bin/jupyter notebook --notebook-dir=/opt/notebooks --ip='*' --port=8888 --no-browser --allow-root |
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
| FROM node:10.15-alpine as base | |
| RUN apk --no-cache --virtual build-dependencies add \ | |
| python \ | |
| make \ | |
| g++ \ | |
| && rm -f /var/cache/apk/* \ | |
| && npm config set unsafe-perm true \ | |
| && npm install --quiet node-gyp -g --cache /tmp/empty-cache |
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
| import Vue from 'vue'; | |
| import App from './App.vue'; | |
| import router from './router'; | |
| import store from './store'; | |
| import plugins from './plugins'; | |
| plugins({ | |
| router, store, Vue, | |
| }); |
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
| import { isEmpty } from 'lodash' | |
| import { makeWatch, makeCallback, parseDump } from './utils' | |
| const extractDump = context => { | |
| const dump = context.$route.query.dump | |
| return dump | |
| ? parseDump(dump) | |
| : {} | |
| } |
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
| import { PromisePipeFactory } from './p-pipe' | |
| import { isFunction, isArray } from 'lodash' | |
| const w = window | |
| /** | |
| * @type Function | |
| * @param {Function} | |
| * @returns {void} | |
| */ | |
| const subscribe = (() => { |