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
Function Log-Start{ | |
<# | |
.SYNOPSIS | |
Creates log file | |
.DESCRIPTION | |
Creates log file with path and name that is passed. Checks if log file exists, and if it does deletes it and creates a new one. | |
Once created, writes initial logging data | |
.PARAMETER LogPath |
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
# Replace: | |
# DATABASE | |
# NAMED | |
# APPLICATION NAME | |
# hostheadername | |
# DOMAIN\USER | |
# DOMAIN\SP_FARM_ACCOUNT | |
# PATHNAME | |
# SITE COLLECTION NAME | |
# DIRECTORYPORT |
-
- Gulp: The Gulp tool.
gulp
- Gulp: The Gulp tool.
-
- Gulp Load Plugins: Automatically Load Gulp Plugins with gulp-load-plugins
gulp-load-plugins
- Gulp Load Plugins: Automatically Load Gulp Plugins with gulp-load-plugins
-
- Gulp Concat: A package for concatenating files in Gulp
gulp-concat
- Gulp Concat: A package for concatenating files in Gulp
-
- Gulp Clean CSS: A package for minifying CSS files in Gulp
-clean-css
- Gulp Clean CSS: A package for minifying CSS files in Gulp
-
- Gulp Uglify: A package for minifying JS files in Gulp
lify
- Gulp Uglify: A package for minifying JS files in Gulp
-
- Gulp Filter: Enables you to work on a subset of the original files by filtering them using glob patterns
gulp-filter
- Gulp Filter: Enables you to work on a subset of the original files by filtering them using glob patterns
-
- Gulp Bower: A package used to install Bower packagesin Gulp
gulp-bower
- Gulp Bower: A package used to install Bower packagesin Gulp
-
- Gulp Rename: A package for simple file renaming in Gulp
gulp-rename
- Gulp Rename: A package for simple file renaming in Gulp
-
- Live Server: Simple HTTP Server for testing our web app
live-server
- Live Server: Simple HTTP Server for testing our web app
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
Target ALL VERSIONS of IE | |
<!--[if IE]> | |
<link rel="stylesheet" type="text/css" href="all-ie-only.css" /> | |
<![endif]--> | |
Target everything EXCEPT IE | |
<!--[if !IE]><!--> | |
<link rel="stylesheet" type="text/css" href="not-ie.css" /> |
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
Function Get-AgeAndGender() | |
{ | |
[CmdletBinding()] | |
Param( | |
[Parameter(Mandatory=$true,ValueFromPipeline=$true)] | |
[string] $ImagePath | |
) | |
$Splat = @{ | |
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
/* | |
The MIT License (MIT) | |
Copyright (c) 2016 David Gomez-Urquiza | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
class User {
.....
.....
bool CanDelete;
OlderNewer