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
| #!/usr/bin/env bash | |
| ################################################################################ | |
| # DDEV System Removal Script | |
| # | |
| # Safely removes DDEV and all associated system-level resources from macOS | |
| # while preserving project-level .ddev directories | |
| # | |
| # Version: 1.0.0 | |
| # Platform: macOS (Darwin) |
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
| #!/usr/bin/env php | |
| <?php | |
| /** | |
| * TYPO3 Extension Linting Setup Script | |
| * | |
| * This script sets up a TYPO3 extension for linting by: | |
| * - Adding .gitignore file | |
| * - Modifying composer.json with linting dependencies and scripts | |
| */ |
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
| #!/usr/bin/env php | |
| <?php | |
| /** | |
| * TYPO3 Extension Testing Setup Script | |
| * | |
| * This script sets up a TYPO3 extension for testing by: | |
| * - Adding .gitignore file | |
| * - Modifying composer.json with testing dependencies and scripts | |
| * - Creating phpunit.xml configuration |
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 | |
| // The name of the folder where the logins are | |
| $folder = './passwords'; | |
| // The file name you want to save as | |
| $title = 'Logins'; | |
| // A csv function - from http://webtricksandtreats.com/export-to-csv-php/ | |
| function convert_to_csv($input_array, $output_file_name, $delimiter) { | |
| $temp_memory = fopen('php://memory', 'w'); |
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
| filetype indent plugin on | |
| " Turn on suntax highlighting | |
| syntax on | |
| " Set dark background | |
| set background=dark | |
| " Set utf8 as standard encoding and en_US as the standard language | |
| set encoding=utf8 |
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
| // ---- | |
| // libsass (v3.3.6) | |
| // ---- | |
| /** | |
| * Responsive Typography Example | |
| * | |
| * Read the full post here: | |
| * http://www.liquidlight.co.uk/blog/article/responsive-typography-in-scss/ | |
| */ |
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
| <h1>Responsive</h1> | |
| <div>Typography</div> |
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 | |
| /** | |
| * Simple abstraction of Slack API | |
| * | |
| * Uses curl, if not falls back to file_get_contents and HTTP stream. | |
| * | |
| * For all api methods, refer to https://api.slack.com/ | |
| * | |
| * @author Yong Zhen <yz@stargate.io> | |
| * @version 1.0.0 |
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
| { | |
| "mode": { | |
| "css": { | |
| "spacing": { | |
| "padding": 5 | |
| }, | |
| "dest": "./", | |
| "layout": "diagonal", | |
| "sprite": "img/sprite.svg", | |
| "bust": false, |
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
| // ---- | |
| // Sass (v3.4.12) | |
| // Compass (v1.0.3) | |
| // ---- | |
| $ieSprite: '.lt-ie9' !default; | |
| $baseFontSize: 16px !default; | |
| // Converts px to em | |
| @function mq-px2em($px, $base-font-size: $baseFontSize) { |
NewerOlder