Comunidade CloudKnitters - tem grupos no Whatsapp de várias certificações
Curso ExamPro - conteúdo teórico todo gratuito e com 1 simulado grátis.
Planilha com resumo dos serviços - listam os serviços que caem na prova e um breve resumo.
Comunidade CloudKnitters - tem grupos no Whatsapp de várias certificações
Curso ExamPro - conteúdo teórico todo gratuito e com 1 simulado grátis.
Planilha com resumo dos serviços - listam os serviços que caem na prova e um breve resumo.
Coleção de selos de licença para o arquivo README do seu projeto.
Esta lista inclui as licenças open data e open source mais comuns.
Copie e cole facilmente o código dos selos nos seus arquivos em Markdown.
Traduções: (sem garantias que as traduções estarão atualizadas)
| http://www.productkeysfree.com/2016/08/windows-8-product-keys.html | |
| Windows 8 Product Key ( 32 bit ) | |
| XKY4K-2NRWR-8F6P2-448RF-CRYQH | |
| TK8TP-9JN6P-7X7WW-RFFTV-B7QPF | |
| QXV7B-K78W2-QGPR6-9FWH9-KGMM7 | |
| RR3BN-3YY9P-9D7FC-7J4YF-QGJXW | |
| FB4WR-32NVD-4RW79-XQFWH-CYQG3 | |
| Windows 8 Product Key ( 64 bit ) |
| function moon_phase(date) { // ported from http://www.voidware.com/moon_phase.htm | |
| var year = date.getYear(), | |
| month = date.getMonth(), | |
| day = date.getDay(); | |
| if (month < 3) { | |
| year--; | |
| month += 12; | |
| } |
| /** | |
| * Password validation RegEx for JavaScript | |
| * | |
| * Passwords must be | |
| * - At least 8 characters long, max length anything | |
| * - Include at least 1 lowercase letter | |
| * - 1 capital letter | |
| * - 1 number | |
| * - 1 special character => !@#$%^&* | |
| * |
Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.
Translations: (No guarantee that the translations are up-to-date)
| /* | |
| * modified from http://www.voidware.com/moon_phase.htm | |
| */ | |
| function getMoonPhase(year, month, day) | |
| { | |
| var c = e = jd = b = 0; | |
| if (month < 3) { | |
| year--; |
| Para CPF | |
| /^\d{3}\.\d{3}\.\d{3}\-\d{2}$/ | |
| Para CNPJ | |
| /^\d{2}\.\d{3}\.\d{3}\/\d{4}\-\d{2}$/ | |
| Para ambos ao mesmo tempo |