Github will be the main account and bitbucket the secondary.
ssh-keygen -t rsa -C "github email"
Enter passphrase when prompted. If you see an option to save the passphrase in your keychain, do it for an easier life.
| <?php | |
| /** | |
| * PHP.Kryptik.AB Cleanup script | |
| * | |
| * Usage: place the script in same directory that contains files / directories | |
| * to be scanned. Then run `php [script_name].php` and wait a bit | |
| * | |
| * @link http://blog.twelvecode.com | |
| * @author Grzegorz Godlewski <grisha87@gmail.com> |
| # -------------------------------------------------- | |
| import smtplib | |
| class GMailServer: | |
| def __init__(self, username, password): | |
| self.server = smtplib.SMTP('smtp.gmail.com:587') | |
| self.server.starttls() | |
| self.server.login(username,password) | |
| def __enter__(self): |
| .table-header-rotated th.row-header{ | |
| width: auto; | |
| } | |
| .table-header-rotated td{ | |
| width: 40px; | |
| border-top: 1px solid #dddddd; | |
| border-left: 1px solid #dddddd; | |
| border-right: 1px solid #dddddd; | |
| vertical-align: middle; |
| <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
| /* | |
| | ------------------------------------------------------------------------- | |
| | Site Helper | |
| | ------------------------------------------------------------------------- | |
| | Desenvolvido por Bruno Almeida | |
| | | |
| */ |
| FROM php | |
| RUN docker-php-ext-install sockets | |
| COPY test.php / | |
| CMD ["php", "/test.php"] |
| <?php | |
| class Invizzo_Bematech | |
| { | |
| private $_registro = "310DBDAC-85FF-4008-82A8-E22A09F9460B"; | |
| private $_impressora = 7; | |
| private $_porta = "USB"; | |
| private $_texto; | |
| private $_texto_barcode; |
In production, it is recommended to minify any JavaScript code that is included with your application. Minification can help your website load several times faster, especially as the size of your JavaScript source code grows.
Here's one way to set it up:
npm init -y in your project folder (don't skip this step!)npm install terserNow, to minify a file called like_button.js, run in the terminal:
O Conventional Commits é uma convenção simples de mensagens de commit, que segue um conjunto de regras e que ajuda os projetos a terem um histórico de commit explícito e bem estruturado.
As regras são muito simples, como demonstrado abaixo temos um tipo de commit (type), o escopo/contexto do commit (scope) e o assunto/mensagem do commit (subject).