Hämta msysgit
Jag har version 1.7.3.1.msysgit.0. msysgit google.code
Git Alias
Sätt upp git med ditt namn och några alias:
C:\Users\Daniel>git config --global --list
user.name=Daniel Lidstrom
user.email=dlidstrom@gmail.com
alias.co=checkout
using System; | |
using System.Collections.Generic; | |
using System.Data.Entity; | |
using System.Data.Entity.ModelConfiguration.Conventions; | |
using System.Linq; | |
using StackExchange.Profiling; | |
using StackExchange.Profiling.EntityFramework6; | |
namespace EffortTest | |
{ |
Jag har version 1.7.3.1.msysgit.0. msysgit google.code
Sätt upp git med ditt namn och några alias:
C:\Users\Daniel>git config --global --list
user.name=Daniel Lidstrom
user.email=dlidstrom@gmail.com
alias.co=checkout
module Result = | |
let bind f = function | |
| Ok x -> f x | |
| Error x -> Error x | |
let map f = function | |
| Ok x -> Ok(f x) | |
| Error err -> Error err | |
let apply fResult xResult = |
import Browser | |
import Html exposing (Html, button, div, text) | |
import Html.Events exposing (onClick) | |
type alias Flags = | |
{ counter : Int } | |
type Msg = Increment | Decrement | |
type Model = Model Int | |
init : Flags -> (Model, Cmd Msg) |
[AppSettings("smtp:")] | |
public interface SmtpConfiguration | |
{ | |
string Name { get; set; } | |
int Port { get; set; } | |
string Username { get; set; } | |
} |
includeList = { | |
// put desired module names here | |
}; | |
skipList = {}; | |
handledList = {}; | |
handleModule(window.app); | |
function handleModule(module) { |
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "ctrl+down", | |
"command": "editorScroll", | |
"args": { | |
"to": "down", | |
"by": "line", | |
"revealCursor": true | |
} |
module Main where | |
import Prelude | |
type Student = { | |
first :: String, | |
last :: String, | |
class :: String | |
} |
public class MessageChecksumConverter : PatternLayoutConverter | |
{ | |
private static readonly TraceSource Source = new TraceSource(nameof(MessageChecksumConverter)); | |
private static readonly MD5 ChecksumGenerator = MD5.Create(); | |
protected override void Convert(TextWriter writer, LoggingEvent loggingEvent) | |
{ | |
var output = TryGetHash(loggingEvent); | |
writer.Write(output); | |
} |
namespace Csp | |
{ | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using Decider.Csp.BaseTypes; | |
using Decider.Csp.Global; | |
using Decider.Csp.Integer; | |
public static class Program |