- barryvdh/laravel-ide-helper
- install:
composer require barryvdh/laravel-debugbar - provider:
Barryvdh\Debugbar\ServiceProvider::class, - facade:
'Debugbar' => Barryvdh\Debugbar\Facade::class, - config:
php artisan vendor:publish --provider="Barryvdh\Debugbar\ServiceProvider"
- install:
- barryvdh/laravel-debugbar
- install:
composer require --dev barryvdh/laravel-ide-helper - provider: in
app/Providers/AppServiceProvider.php
public function register()
- install:
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 lang="zh-Hans-CN"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Online Monitor</title> | |
| <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> | |
| <style> | |
| td { | |
| vertical-align: middle !important; | |
| } |
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
| defscrollback 5000 | |
| termcapinfo xterm* ti@:te@ |
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
| #!/bin/bash | |
| # install homebrew's official php tap | |
| brew tap josegonzalez/homebrew-php | |
| # install homebrew-dupes (required to install zlib, php54's dependency) | |
| brew tap homebrew/dupes | |
| # install nginx + mysql + php 5.4 + php-fpm + apc + xdebug | |
| brew install nginx mysql |
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
| server { | |
| listen 80; | |
| server_name {$host}.{$domain}; | |
| index index.html; | |
| root /data/www/{$domain}/{$host}; | |
| location / { | |
| try_files $uri $uri/ /index.php?$query_string; | |
| } |
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
| body { | |
| font-family: Helvetica, arial, sans-serif; | |
| font-size: 14px; | |
| line-height: 1.6; | |
| padding-top: 10px; | |
| padding-bottom: 10px; | |
| background-color: white; | |
| padding: 30px; } | |
| body > *:first-child { |
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
| [Adblock Plus 2.0] | |
| ! Title: AllowedFilter | |
| ! Last modified: 26 Feb 2013 12:20 UTC | |
| ! Expires: 5 days (update frequency) | |
| ! Homepage: https://easylist.adblockplus.org/ | |
| ! Licence: https://easylist-downloads.adblockplus.org/COPYING | |
| ! | |
| ! Please report any unblocked adverts or problems | |
| ! in the forums (http://forums.lanik.us/) | |
| ! or via e-mail ([email protected]). |
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
| <ul id="root"> | |
| <li> | |
| <span class="h2">一级标题</span> | |
| <ul> | |
| <li> | |
| <span class="h3">二级标题</span> | |
| </li> | |
| <li> | |
| <span class="h3">二级标题</span> | |
| </li> |
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 lang="zh"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>DEMO</title> | |
| <style> | |
| body,ul,ol {margin:0;font-weight:normal;line-height:1.5;} | |
| .h2 {font-size:160%;} | |
| .h3 {font-size:120%;} | |
| .h4 {font-size:100%;} |