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
| var gulp = require('gulp'); | |
| var concat = require('gulp-concat'); | |
| gulp.task('scripts', function() { | |
| gulp.src('./directives/*.js') | |
| .pipe(concat("directives.js")) | |
| .pipe(gulp.dest('./scripts/')) | |
| }); | |
| gulp.run('scripts'); |
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
| PS C:\Windows\system32> cinst rdcman -debug | |
| DEBUG: Running 'Append-InstallLog' with chocoInstallLog:'' | |
| DEBUG: Arguments: $command = | |
| 'install'|$packageNames='rdcman'|$source=''|$version=''|$allVersions=False|$InstallArguments=''|$overrideArguments=Fals | |
| e|$force=False|$prerelease=False|$localonly=False|$verbosity=False|$debug=True|$quiet=False|$name=''|$ignoreDependencie | |
| s=False|$forceX86=False|$packageParameters=''|PowerShellVersion=4.0 | |
| DEBUG: Running 'Chocolatey-Install' for 'rdcman' with source: '', version: '', installerArguments:'' | |
| DEBUG: Running 'Chocolatey-NuGet' for rdcman with source:''. Force? False | |
| Chocolatey (v0.9.8.24) is installing 'rdcman' and dependencies. By installing you accept the license for 'rdcman' and ea | |
| ch dependency you are installing. |
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
| public class ExifInfo | |
| { | |
| public static IList<Exif> ExifTagsToCapture; | |
| static ExifInfo() | |
| { | |
| ExifTagsToCapture = new List<Exif> | |
| { | |
| new Exif | |
| { |
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
| using (var exifStream = new MemoryStream()) | |
| using (var imageFactory = new ImageFactory()) | |
| { | |
| file.Value.Position = 0; | |
| file.Value.CopyTo(exifStream); | |
| exifStream.Position = 0; | |
| var exifData = imageFactory.Load(exifStream) | |
| .GetExifTags(); |
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
| namespace SimpleAuthenticationProcessCallSample | |
| { | |
| using System; | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Console.WriteLine("Hello World"); | |
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
| Boxstarter: Installing package https://gist.githubusercontent.com/phillip-haydon | |
| /b7dec246f0ad953ad65c/raw/f6e23a9039b500e5d4d8df6ec5460ee31ea12edb/boxstarter-sc | |
| ript | |
| Boxstarter Version 2.4.123 | |
| (c) 2014 Matt Wrock. http://boxstarter.org | |
| Boxstarter: Disabling Automatic Updates from Windows Update | |
| Calling 'C:\ProgramData\chocolatey\chocolateyinstall\nuget.exe pack temp_Boxstar | |
| terPackage\temp_BoxstarterPackage.nuspec -NoPackageAnalysis -NonInteractive'. | |
| Attempting to build package from 'temp_BoxstarterPackage.nuspec'. |
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() { | |
| var button = document.getElementById("TestUpload"); | |
| function setupRequest() { | |
| var xhr = new XMLHttpRequest(); | |
| xhr.open('POST', "/home/upload", true); | |
| xhr.setRequestHeader("Accept", "application/json"); |
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
| PM> Install-Package ServiceStack -Version 3.9.71 | |
| Attempting to resolve dependency 'ServiceStack.Common (= 3.0 && < 4.0)'. | |
| Attempting to resolve dependency 'ServiceStack.Text'. | |
| Attempting to resolve dependency 'ServiceStack.Redis (= 3.0 && < 4.0)'. | |
| Attempting to resolve dependency 'ServiceStack.OrmLite.SqlServer (= 3.0 && < 4.0)'. | |
| Installing 'ServiceStack.Text 4.0.33'. | |
| You are downloading ServiceStack.Text from Service Stack, the license agreement to which is available at https://servicestack.net/terms. Check the package for additional dependencies, which may come with their own license agreement(s). Your use of the package and dependencies constitutes your acceptance of their license agreements. If you do not accept the license agreement(s), then delete the relevant components from your device. | |
| Successfully installed 'ServiceStack.Text 4.0.33'. | |
| Installing 'ServiceStack.Common 3.9.11'. | |
| Successfully installed 'ServiceStack.Common 3.9.11'. |
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
| http://philliphaydon.com/stuffz/DSC00089.jpg | |
| http://philliphaydon.com/stuffz/DSC00166.jpg | |
| http://philliphaydon.com/stuffz/DSC00377.jpg | |
| http://philliphaydon.com/stuffz/DSC00400.jpg | |
| http://philliphaydon.com/stuffz/DSC01201.jpg | |
| http://philliphaydon.com/stuffz/DSC01482.jpg | |
| http://philliphaydon.com/stuffz/DSC02497.jpg |
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
| private HttpActionContext actionContext; | |
| private HttpControllerContext controllerContext; | |
| private UserContextFilter filter; | |
| private HttpRequestHeaders headers; | |
| private HttpRequestMessage requestMessage; | |
| private Mock<IUserContextService> userContextService; | |
| private Mock<HttpActionDescriptor> actionDescriptor; | |
| private Mock<HttpParameterDescriptor> parameterDescriptor; | |
| [SetUp] |
OlderNewer