npm i -g @nestjs/cli
yarn add class-validator class-transformeryarn add @nestjs/mapped-types
| var buttons; | |
| buttons = document.getElementsByClassName('_42ft'); | |
| for (var i = 0; i < buttons.length; i++) { | |
| if(buttons[i].getAttribute('ajaxify') != null){ | |
| if(buttons[i].getAttribute('ajaxify').indexOf('invite') != -1){ | |
| buttons[i].click(); | |
| } | |
| } | |
| } |
| <?php | |
| function dias_feriados($ano = null) | |
| { | |
| if (empty($ano)) { | |
| $ano = intval(date('Y')); | |
| } | |
| $pascoa = easter_date($ano); // Limite de 1970 ou após 2037 da easter_date PHP consulta http://www.php.net/manual/pt_BR/function.easter-date.php | |
| $dia_pascoa = date('j', $pascoa); |
| <?php | |
| $url = 'https://ws.pagseguro.uol.com.br/v2/pre-approvals/request'; | |
| $data['email'] = 'email_vendedor@gmail.com'; | |
| $data['token'] = 'TOKEN'; | |
| $data['currency'] = 'BRL'; | |
| $data['reference'] = $id_cliente; | |
| $data['senderName'] = $cliente['nome']; |
| <?php | |
| /** | |
| * This class acts as an example on where to position a DocBlock. | |
| * | |
| * A blank line must be place after each paragraph. A title and a description | |
| * can be add. Multiple paragraph descriptions can be used. | |
| * | |
| * @see https://github.com/php-fig/fig-standards/blob/master/proposed/phpdoc.md | |
| * @see http://docs.phpdoc.org/guides/docblocks.html#list-of-tags |
| <template> | |
| <div | |
| @click="$emit('created')" | |
| > | |
| </div> | |
| </template> | |
| <script setup> | |
| // Imports from VUE | |
| import { onMounted, ref, defineProps, defineEmits, computed } from 'vue'; |
Bash is the JavaScript of systems programming. Although in some cases it's better to use a systems language like C or Go, Bash is an ideal systems language for smaller POSIX-oriented or command line tasks. Here's three quick reasons why:
This document is how I write Bash and how I'd like collaborators to write Bash with me in my open source projects. It's based on a lot of experience and time collecting best practices. Most of them come from these two articles, but here integrated, slightly modified, and focusing on the most bang for buck items. Plus some ne
| #!/bin/bash | |
| sudo add-apt-repository -y ppa:git-core/ppa | |
| sudo apt-get update | |
| sudo apt-get install git -y |
| # EditorConfig is awesome: http://EditorConfig.org | |
| # top-most EditorConfig file | |
| root = true | |
| # All PHP files MUST use the Unix LF (linefeed) line ending. | |
| # Code MUST use an indent of 4 spaces, and MUST NOT use tabs for indenting. | |
| # All PHP files MUST end with a single blank line. | |
| # There MUST NOT be trailing whitespace at the end of non-blank lines. | |
| [*] |