A readme with some steps needed to configure a clean macOS Big Sur 11.2 for development:
Download iTerm is highly recommended.
Oh-My-ZSH is an open source, community-driven framework for managing your ZSH configuration.
A readme with some steps needed to configure a clean macOS Big Sur 11.2 for development:
Download iTerm is highly recommended.
Oh-My-ZSH is an open source, community-driven framework for managing your ZSH configuration.
- model: appName.modelName | |
pk: '1' | |
fields: | |
nome: Aconã | |
- model: appName.modelName | |
pk: '2' | |
fields: | |
nome: Aikaná | |
- model: appName.modelName | |
pk: '3' |
- model: appName.modelName | |
pk: '1' | |
fields: | |
nome: Alagoas/Sergipe | |
- model: appName.modelName | |
pk: '2' | |
fields: | |
nome: Altamira | |
- model: appName.modelName | |
pk: '3' |
Create and configure lightweight, reproducible, and portable development environments. Vagrant is an amazing tool for managing virtual machines via a simple to use command line interface.
Vagrant uses Virtualbox to manage the virtual dependencies. You can directly download virtualbox and install or use homebrew for it.
$ brew cask install virtualbox
$ brew cask install vagrant
Add the Vagrant box you want to use:
import dicom, glob, os
files = []
output_file = open('filename.csv', 'w')
print('Creating list...\n')
i = 0
for root, dirs, files in os.walk('/Users/pauloguerra/DICOM_TEST/'):
A collection of Markdown code and tricks that were tested to work in Gist.
This and all public gists in https://gist.github.com/ww9 are Public Domain. Do whatever you want with it including , no need to credit me.
<?php | |
if (!function_exists('currencies')) { | |
function currencies(): array | |
{ | |
return [ | |
['code' =>'USD', 'name' => 'US Dollar', 'symbol' => '$'], | |
['code' =>'BRL', 'name' => 'Brazilian Real', 'symbol' => 'R$'], | |
['code' =>'EUR', 'name' => 'Euro', 'symbol' => '€'], | |
['code' =>'GBP', 'name' => 'Pound Sterling', 'symbol' => '£'], |
Repositório Oficial → https://github.com/squizlabs/PHP_CodeSniffer
O PHPCS, abreviação para PHP CodeSniffer é uma ferramenta que tem como objetivo detectar violações de padrões de código.
Esse tutorial busca auxiliar na instalação e configuração do phpcs
nas duas principais ferramentas de desenvolvimento da equipe (VSCode e PHPStorm) a fim de conseguirmos alcançar um bom nivelamento da PSR12 em todos os projetos em atividade.
O PHPCS precisa de uma versão igual ou superior à 5.4.0.