You may need to configure a proxy server if you're having trouble cloning
or fetching from a remote repository or getting an error
like unable to access '...' Couldn't resolve host '...'.
Consider something like:
| # This is a template .gitignore file for git-managed WordPress projects. | |
| # | |
| # Fact: you don't want WordPress core files, or your server-specific | |
| # configuration files etc., in your project's repository. You just don't. | |
| # | |
| # Solution: stick this file up your repository root (which it assumes is | |
| # also the WordPress root directory) and add exceptions for any plugins, | |
| # themes, and other directories that should be under version control. | |
| # | |
| # See the comments below for more info on how to add exceptions for your |
| <?php | |
| use Slim\Http\Request; | |
| use Slim\Http\Response; | |
| use Slim\Http\Stream; | |
| $app->get('/stream', function (Request $request, Response $response, array $args) { | |
| // a 100mb file | |
| $path = '../public/files/document.pdf'; |
| <# | |
| .SYNOPSIS | |
| MSTeams_Auth_Problems.ps1 - PowerShell Script to workaround Microsoft Teams Authentication Problems | |
| .DESCRIPTION | |
| The Script works only for the current User! Don't use it with "runas"! | |
| Script Part 1: Adds trusted Site to Zone Assignments for the current User | |
| Reference: https://docs.microsoft.com/en-us/microsoftteams/known-issues#authentication | |
| Script Part 2: Purges the Microsoft Teams Application Cache Folders for the current User |
| var gulp = require('gulp'); | |
| var gutil = require('gulp-util'); | |
| var argv = require('minimist')(process.argv); | |
| var prompt = require('gulp-prompt'); | |
| var rsync = require('gulp-rsync'); | |
| var sass = require('gulp-sass'); | |
| var autoprefixer = require('gulp-autoprefixer'); | |
| var sourcemaps = require('gulp-sourcemaps'); | |
| var browserSync = require('browser-sync'); | |
| var useref = require('gulp-useref'); |