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
java -classpath ".\*;.\sigar\*;" -Delasticsearch -Des-foreground=yes -Des.path.home=".." -Des.path.data="c:\tmp\elas\data" -Des.http.port=9201 org.elasticsearch.bootstrap.Bootstrap |
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
#r "../packages/FsPickler.Json.0.9.6/lib/net45/FsPickler.Json.dll" | |
#r "../packages/FsPickler.0.9.6/lib/net45/FsPickler.dll" | |
#r "../packages/Newtonsoft.Json.6.0.3/lib/net45/Newtonsoft.Json.dll" | |
open Nessos.FsPickler | |
open Nessos.FsPickler.Json | |
open Nessos.FsPickler.Combinators | |
open System.IO | |
let res y = | |
let jsp = FsPickler.CreateJson() |
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
{ | |
"commands": [ | |
"Folkeregister.Contracts.Commands.CreatePerson", | |
"Folkeregister.Contracts.Commands.AddAdressToPerson" | |
], | |
"types": [ | |
{ | |
"$type": "Folkeregister.Web.TypeDeserialization.ObjectModel, Folkeregister.Web", | |
"type": "Folkeregister.Contracts.Commands.CreatePerson", | |
"name": "CreatePerson", |
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
Param([string]$ServerUrl, | |
[string]$ProjectName, | |
[string]$EnvironmentName, | |
[string]$Version, | |
[string]$RootUrl, | |
[string]$OctoApiKey) | |
Write-Host "Server url: $ServerUrl" | |
Write-Host "Project name: $ProjectName" | |
Write-Host "Environment name: $EnvironmentName" |
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 System; | |
using System.Collections.Generic; | |
using System.Globalization; | |
using System.IO; | |
using System.Threading.Tasks; | |
using Nowin; | |
namespace HelloNowin | |
{ | |
using AppFunc = Func<IDictionary<string, object>, Task>; |
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 HelloOwin | |
{ | |
using System; | |
using Microsoft.Owin.Hosting; | |
using Owin; | |
using AppFunc = System.Func<System.Collections.Generic.IDictionary<string, object>, System.Threading.Tasks.Task>; | |
class Program | |
{ | |
static void Main(string[] args) |
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 Configurer | |
{ | |
public static class SomeThing | |
{ | |
public static string SomeString { get; set; } | |
} | |
public class PreApplicationStartCode | |
{ | |
public static void Start() |
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
Non-authoritative answer: | |
Name: waws-prod-db3-003.cloudapp.net | |
Address: 137.135.129.175 | |
Aliases: resharper-plugins.jetbrains.com | |
resharper-plugins.azurewebsites.net | |
waws-prod-db3-003.vip.azurewebsites.windows.net |
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 System; | |
using System.Collections.Generic; | |
using System.ComponentModel.Design; | |
using System.Linq; | |
using System.Text; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace CQRSDemo | |
{ |
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
App = Ember.Application.create(); | |
App.Router.map(function() { | |
// put your routes here | |
}); | |
App.IndexRoute = Ember.Route.extend({ | |
model: function(){ | |
return App.IndexModel.create(); | |
} |