This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Wires: | |
| 24g | |
| 22g | |
| 20g | |
| 18g | |
| 16g (for higher power devices) | |
| You can also get the wires grouped together I find 3,4,5,6 wires useful | |
| Connectors: | |
| JST-XH (Common on most boards) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: Public VPC and subnets | |
| Resources: | |
| # | |
| # Public VPC | |
| # | |
| PublicVpc: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Model\Behavior; | |
| use Cake\Datasource\EntityInterface; | |
| use Cake\Event\Event; | |
| use Cake\ORM\Association; | |
| use Cake\ORM\Behavior; | |
| use Cake\ORM\Entity; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Model\Table\Behavior; | |
| trait UpdateCounterCacheTrait { | |
| public function cleanupBelongsToMany($return_count = null) { | |
| if($return_count) { | |
| return $count; | |
| } | |
| return $this; |