Thank you for your interest in Darklang Inc. ("Darklang"). In order to clarify the intellectual property license granted with Contributions from any person or entity, Darklang must have a Contributor License Agreement (CLA) on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of Darklang and its users; it does not change your rights to use your
- core: language, editor, hosting, runtime, infra
- the Dark language the definition, interpreter, standard library
- the editor (what you're looking at right now - where you build Dark stuff)
- the infrastructure, runtime, and hosting the runtime, hosting, connections, scaling
- handlers: http handlers, REPLs, refactors, migrations, etc.
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
/// Thin, bytes-friendly middleware | |
/// | |
/// This Middleware corresponds with `HTTPBytes` handlers | |
[<RequireQualifiedAccess>] | |
module HttpMiddleware.HttpMiddlewareV1 | |
module Request = | |
open Prelude | |
open LibExecution.VendoredTablecloth |
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
-  | |
- Go slow and look ahead | |
- Move anything forward | |
- Everyone is doing the best they can | |
- If you ask for money, you get advice. If you ask for advice, you get money | |
- Tell stories, not plans | |
- Doing is better than perfect | |
- If it's not impossible, there must be a way to do it | |
- It's the scary choices that end up being the most worthwhile | |
- The deepest principle in human nature is the craving to be appreciated |
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
html, | |
body { | |
font-size: 16px; | |
} | |
.main-container { | |
display: flex; | |
width: 100%; | |
height: 100%; | |
justify-content: center; |
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
html, | |
body { | |
font-size: 16px; | |
} | |
.main-container { | |
display: flex; | |
width: 100%; | |
height: 100%; | |
justify-content: center; |
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
/* | |
Add these: | |
using System.Collections.Generic; | |
using System.Reflection; | |
using System.Reflection.Emit; | |
*/ | |
void Main() | |
{ | |
WriteDeltas(new Foo { X = 123, Y = DateTime.Today, Z = null }, |
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
open System | |
let exampleLevel = [ | |
" #####" | |
" # #" | |
" #$ #" | |
" ### $##" | |
" # $ $ #" | |
"### # ## # ######" | |
"# # ## ##### ..#" |
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
open System | |
type Choice = Rock | Scissors | Paper | |
type RoundResult = WinRound | TieRound | LoseRound | |
let roundResult = function | |
| Rock, Rock | Scissors, Scissors | Paper, Paper -> TieRound | |
| Rock, Scissors | Scissors, Paper | Paper, Rock -> WinRound | |
| Rock, Paper | Scissors, Rock | Paper, Scissors -> LoseRound |
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 abstract class PersistentConnection | |
{ | |
public virtual void Initialize(IDependencyResolver resolver); | |
public bool Authorize(IRequest request); | |
protected virtual TraceSource Trace { get; } } | |
protected IProtectedData ProtectedData { get; private set; } |
NewerOlder