In your command-line run the following commands:
brew doctorbrew update
| <?php | |
| namespace App\Providers; | |
| use Illuminate\Support\ServiceProvider; | |
| use Storage; | |
| class SwapDriverServiceProvider extends ServiceProvider | |
| { | |
| /** |
In your command-line run the following commands:
brew doctorbrew update| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
| // Requires: | |
| // Leaflet: http://leafletjs.com/ | |
| // Leaflet.curve: https://github.com/elfalem/Leaflet.curve | |
| // | |
| // Assumes: | |
| // var map is a Leaflet map and already set up. | |
| var latlngs = []; | |
| var latlng1 = [LATITUDE, LONGTITUDE], |
| # For more information on configuration, see: | |
| # * Official English Documentation: http://nginx.org/en/docs/ | |
| # * Official Russian Documentation: http://nginx.org/ru/docs/ | |
| user nginx; | |
| worker_processes auto; | |
| error_log /var/log/nginx/error.log; | |
| pid /run/nginx.pid; | |
| # Load dynamic modules. See /usr/share/doc/nginx/README.dynamic. |
| local cmp = require("cmp") | |
| return { | |
| "hrsh7th/nvim-cmp", | |
| enabled = false, | |
| opts = function(_, opts) | |
| local has_words_before = function() | |
| unpack = unpack or table.unpack | |
| local line, col = unpack(vim.api.nvim_win_get_cursor(0)) | |
| return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil | |
| end |