This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
| module.exports = { | |
| output: { | |
| assetModuleFilename: "img/[hash][ext][query]", | |
| }, | |
| module: { | |
| rules: [ | |
| { | |
| test: /\.svg$/, | |
| use: ["vue-loader", "vue-svg-loader"], | |
| }, |
| <?php | |
| namespace App\Http\Middleware; | |
| use Cache; | |
| use Closure; | |
| use GuzzleHttp\Client; | |
| use GuzzleHttp\Exception\GuzzleException; | |
| use GuzzleHttp\RequestOptions; | |
| use Illuminate\Http\Request; |
| const req = require.context('./components/', true, /\.(js|vue)$/i); | |
| req.keys().map(key => { | |
| const name = key.match(/\w+/)[0]; | |
| return Vue.component(name, req(key)) | |
| }); |
This is a guide for aligning images.
See the full Advanced Markdown doc for more tips and tricks
| #!/bin/sh | |
| sed -i.default "s/^zend_extension=/;zend_extension=/" /usr/local/etc/php/7.0/conf.d/ext-xdebug.ini | |
| launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.php70.plist | |
| launchctl load ~/Library/LaunchAgents/homebrew.mxcl.php70.plist | |
| echo "xdebug disabled" |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Ansi 0 Color</key> | |
| <dict> | |
| <key>Blue Component</key> | |
| <real>0.25882352941176467</real> | |
| <key>Green Component</key> | |
| <real>0.21176470588235294</real> |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| DO WTF YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 Alexey Silin <[email protected]> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WTF YOU WANT TO PUBLIC LICENSE |