Used to provide structural templates.
Pattern
t-template-name
t-template-name--modifier-name
t-template-name__subcomponent-name--subcomponent-modifier-name
| To make Pageant automatically run and load keys at startup: | |
| - Find the location of pageant.exe | |
| - Windows key + R to open the 'run' dialog box | |
| - Type: 'shell:startup' in the dialog box | |
| - Create a shortcut to the pageant.exe and put into this startup folder. |
| <?php namespace Vendor\Library; | |
| use Another\Vendor\Library\ClassName; | |
| abstract class ClassName extends AnotherClass implements Countable, Serializable | |
| { | |
| const CONSTANTS = 'top'; | |
| use someTrait, anotherTrait { | |
| anotherTrait::traitMethod insteadof someTrait; |
| Leo Bischoff | |
| Donna Fitts | |
| Grace Kunze | |
| Gene Smith | |
| Lucas Coward | |
| John Starbuck | |
| Sonia Jones | |
| Heidi Sholders | |
| Robert Gage | |
| Melvin Mckinney |
| <VirtualHost *> | |
| ServerName auth.dev | |
| DocumentRoot "/var/www/auth" | |
| ProxyPassMatch ^(/.*\.php)$ fcgi://127.0.0.1:9000/var/www/auth | |
| SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1 | |
| </VirtualHost> |
| #!/bin/bash | |
| # | |
| # Sync the sql files in the sync folder | |
| # | |
| # The files in the {vvv-dir}/database/sync/ directory should be created by | |
| # mysqldump or some other export process that generates a full set of SQL commands | |
| # to create the necessary tables and data required by a database. | |
| # | |
| # For a sync to work properly, the SQL file should be named `db_name.sql` in which | |
| # `db_name` matches the name of a database already created in {vvv-dir}/database/init-custom.sql |
| // ---- | |
| // Sass (v3.3.8) | |
| // Compass (v1.0.0.alpha.19) | |
| // ---- | |
| // When we give an element some ‘attention’. | |
| @mixin attention() { | |
| &:hover, | |
| &:active, |