- Anaconda on PowerShell: & 'C:\Users\partho\Anaconda3\shell\condabin\conda-hook.ps1' ; conda activate 'C:\Users\partho\Anaconda3' ; cd d:\src\c
- Create new environment
- Setup conda
- conda deactivate
- conda env remove --name rl.gym.1
- conda create --name rl.gym.1 python=3.6
- conda activate rl.gym.1
- Install dependencies
- conda install pylint pywin32 jupyter pycodestyle
Functor
- Interface: fmap
- Base: -
- Adds flavored to a type
- Laws: 2
Applicative
- Applicative (parallel) composition
- Base: Functor
- Interface: pure, apply
- side bar behavior - here are the options (bodhirasa, sir opinions)
- [reduce sidebar width, by default have to closed, ] o1: https://bootstrapious.com/tutorial/sidebar/index2.html (bodhirasa's preference, sort of like palemoon)
- o2: https://bootstrapious.com/tutorial/sidebar/index3.html (what we have, sir prefers but left it open)
- x o3: https://bootstrapious.com/tutorial/sidebar/index4.html (your suggestion, probably not work forus as each section will take up the entire sidebar)
- floating top bar + what will be on it
- o0: fixed top bar like you suggested, sir wasnt a fan but left the call to 'majority'
- o1: https://www.grammarly.com/ (from alex)
- o2: https://narratively.com/ (from alex)
- feedback button
This file contains 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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"copyFormatting": "none", | |
"copyOnSelect": false, | |
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
// Add custom keybindings to this array. | |
// To unbind a key combination from your defaults.json, set the command to "unbound". | |
// To learn more about keybindings, visit https://aka.ms/terminal-keybindings | |
"keybindings": | |
[ |
This file contains 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
[<AutoOpen>] | |
module FSharpCore41 | |
type Result<'TOk, 'TError> = | |
| Ok of 'TOk | |
| Error of 'TError |
This file contains 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
[<AutoOpen>] | |
module YaFunTK | |
[<RequireQualifiedAccess>] | |
module Debug = | |
open System.Diagnostics | |
let inline dprintfn fmt = Printf.ksprintf Debug.WriteLine fmt | |
This file contains 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
(* | |
Traversable Laws in F# | |
Ref: https://en.wikibooks.org/wiki/Haskell/Traversable#The_Traversable_laws | |
Note: | |
- Install FSharpx.Extras, FsCheck.x, FsUnit.xUnit, FsCheck.Xunit | |
*) | |