São simples
'(1 2 3)
import pdftotext | |
# Load your PDF | |
with open("teste.pdf", "rb") as f: | |
pdf = pdftotext.PDF(f) | |
# How many pages? | |
print(len(pdf)) | |
# Iterate over all the pages |
// Declaração de variáveis utilizadas | |
// Mensagem que será enviada | |
var setTextContent = "Oi! Você está falando com o *FULANO COMPUTADOR*, o computador do FULANO! Infelizmente ele não se encontra no momento, mas assim que possível ele irá responder você :D"; | |
var i; | |
var group; | |
var conversas; | |
var lastMessage; |
/* | |
Hoje iremos MUDAR a vida da pessoa que não te responde no whatsappp... | |
Que tal enviar mensagens pra ela até obter uma resposta?! | |
Sensacional não acha?! Mas, somos devs, correto?! Então vamos automatizar esse paranauê! | |
Para utilizar: | |
- Abra o web.whatsapp.com; | |
- Selecione a conversa que você quer; | |
- Abra o console e cole o código que está no gist; |
pt-BR: | |
models_and_attributes: &models_and_attributes | |
models: | |
importer: | |
one: Importador | |
other: Importadores | |
attributes: | |
importer: | |
attachment: Anexo CSV | |
attachment_error: Anexo de erro CSV |
en: | |
models_and_attributes: &models_and_attributes | |
models: | |
importer: | |
one: Importer | |
other: Importers | |
attributes: | |
importer: | |
attachment: CSV | |
attachment_error: CSV with errors |
module Excel | |
module Formulas | |
## rate = The interest rate, per period. | |
## nper = The number of periods over which the loan or investment is to be paid. | |
## pv = The present value of the loan / investment. | |
## fv = An optional argument that specifies the future value of the loan / investment, at the end of nper payments. If omitted, [fv] has the default value of 0. | |
## type = An optional argument that defines whether the payment is made at the start or the end of the period. 0 for the payment is made at the end of the period and 1 for the payment is made at the beginning of the period. If the type argument is omitted, it takes on the default value of 0 (denoting payments made at the end of the period). | |
## Eg 1. pmt(0.0199, 1, 100) => tax of 1.99% in the 1 parcel of $100 ~= $101.99 with $1.99 tax | |
## Eg 2. pmt(0.0199, 2, 100) => tax of 1.99% in the 2 parcels of $100 ~= $51.50 with $1.5 tax per parcel |
open -na /Applications/Skype.app --args -DataPath /Users/$(whoami)/Library/Application\ Support/Skype2 |
# Mac OS X Lion introduced a new, iOS-like context menu when you press and hold a key | |
# that enables you to choose a character from a menu of options. If you are on Lion | |
# try it by pressing and holding down 'e' in any app that uses the default NSTextField | |
# for input. | |
# | |
# It's a nice feature and continues the blending of Mac OS X and iOS features. However, | |
# it's a nightmare to deal with in Sublime Text if you're running Vintage (Vim) mode, | |
# as it means you cannot press and hold h/j/k/l to move through your file. You have | |
# to repeatedly press the keys to navigate. |
{ | |
"auto_complete": false, | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_delay": 0, | |
"bold_folder_labels": true, | |
"caret_extra_width": 5, | |
"gpu_window_buffer": true, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"hot_exit": false, |