[ Launch: categorical scales ] 22988b42a7844d7033bc by kimsk[ Launch: circle-scale-linear ] d2d082438bce167a97fc by kimsk[ Launch: reddit base ] e229f9079c3ee3e7644d by kimsk[ Launch: reddit base ] 6633418 by enjalot[ Launch: simple histogram ] 6631652 by enjalot
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
syntaxdef fsharp { | |
/\s+/m : ; | |
# inline doc-comment | |
/\/\/\/(.*)$/m : { | |
doccomment(${1}); |
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
let rec prod = function | |
| [] -> 1 | |
| head::tail -> head * prod tail |
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
#!/bin/sh | |
./Packages/xunit.runner.console.2.0.0/tools/xunit.console GFDN.ThaiBahtTextFacts/bin/Release/GreatFriends.ThaiBahtTextFacts.dll -parallel all -html Result.html -nologo -quiet |
[ Launch: circle-scale-linear ] d2d082438bce167a97fc by kimsk[ Launch: reddit base ] e229f9079c3ee3e7644d by kimsk[ Launch: reddit base ] 6633418 by enjalot[ Launch: simple histogram ] 6631652 by enjalot
[ Launch: reddit base ] e229f9079c3ee3e7644d by kimsk[ Launch: reddit base ] 6633418 by enjalot[ Launch: simple histogram ] 6631652 by enjalot
[ Launch: reddit base ] be4113ad5837ec736ab9 by kimsk[ Launch: reddit base ] 6633418 by enjalot[ Launch: simple histogram ] 6631652 by enjalot
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
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var array = new int[1000000]; | |
foreach (var i in array){} | |
var enumerator = array.GetEnumerator(); | |
while (enumerator.MoveNext()){} | |
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.Linq; | |
using System.Web; | |
using Nancy; | |
namespace DurandalNancy | |
{ | |
public class DurandalNancyModule : NancyModule | |
{ |
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
define(['durandal/app'], function (app) { | |
return { | |
viewName: 'Thanks for visiting Durandal & Nancy Web App!', | |
description: 'Durandal is a SPA framework done right and Nancy provides a super-duper-happy-path to all interactions, so we have a super-duper-happy SPA web app done right!', | |
activate: function () { | |
$.getJSON("/api/list", function (data) { | |
app.showMessage(data.Message, data.Title, ['Agree']); | |
}); | |
} | |
}; |