I've gotten into the habit of playing LinkedIn games daily. at least, most of them. I wanted to compare my results against my "connections."
So I built this silly hacky bookmarklet to get the job done.
I've gotten into the habit of playing LinkedIn games daily. at least, most of them. I wanted to compare my results against my "connections."
So I built this silly hacky bookmarklet to get the job done.
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
| /// Thin, bytes-friendly middleware | |
| /// | |
| /// This Middleware corresponds with `HTTPBytes` handlers | |
| [<RequireQualifiedAccess>] | |
| module HttpMiddleware.HttpMiddlewareV1 | |
| module Request = | |
| open Prelude | |
| open LibExecution.VendoredTablecloth |
| -  | |
| - 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 |
| html, | |
| body { | |
| font-size: 16px; | |
| } | |
| .main-container { | |
| display: flex; | |
| width: 100%; | |
| height: 100%; | |
| justify-content: center; |
| html, | |
| body { | |
| font-size: 16px; | |
| } | |
| .main-container { | |
| display: flex; | |
| width: 100%; | |
| height: 100%; | |
| justify-content: center; |
| /* | |
| 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 }, |
| open System | |
| let exampleLevel = [ | |
| " #####" | |
| " # #" | |
| " #$ #" | |
| " ### $##" | |
| " # $ $ #" | |
| "### # ## # ######" | |
| "# # ## ##### ..#" |
| 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 |