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 Vendor\Library; | |
| use Another\Vendor\Library\ClassName; | |
| abstract class ClassName extends AnotherClass implements Countable, Serializable | |
| { | |
| // Traits at the top | |
| use someTrait, anotherTrait { |
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
| version: "3.9" | |
| services: | |
| unifi-controller: | |
| image: jacobalberty/unifi:6.0.23-arm32v7 | |
| container_name: unifi-controller | |
| restart: unless-stopped | |
| user: unifi | |
| environment: | |
| - TZ='America/Vancouver' | |
| - JVM_MAX_HEAP_SIZE=1024M |
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
| // ==UserScript== | |
| // @name Bitbucket Highlighter | |
| // @namespace https://github.com/lephuongbg | |
| // @version 0.7 | |
| // @description Stop-gap solution for highlighting bitbucket pull request | |
| // @author You | |
| // @match https://bitbucket.org/* | |
| // @grant GM_addStyle | |
| // @grant GM_getResourceText | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.18.1/highlight.min.js |
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
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <style> | |
| body { | |
| margin: 0px; | |
| padding: 0px; | |
| } | |
| </style> | |
| </head> |