# find all commits which modify any 'package.json' file on 'dev' branch in remote 'origin' since yesterday
git log origin/dev --since='yesterday' --name-only -- "*/package.json"
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
import * as SC from "@effect-ts/core/Effect/Schedule" | |
import { pipe } from "@effect-ts/core/Function" | |
const app1 = pipe( | |
T.fail("app1"), | |
T.retry(pipe( | |
//SC.exponential(1000, 2)["&&"](SC.recurs(4))["|>"](SC.jittered_), | |
SC.exponential(1000, 2)["&&"](SC.recurs(4)), | |
SC.onDecision((d) => { |
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
import { pipe } from "@effect-ts/system/Function" | |
import { makeAssociative } from "@effect-ts/core/Associative" | |
import * as R from "@effect-ts/core/Collections/Immutable/Dictionary" | |
import * as E from "@effect-ts/core/Either" | |
test("example 04", () => { | |
const ValidationApplicative = E.getValidationApplicative( | |
makeAssociative<Array<string>>((l, r) => [...l, ...r]) |
https://medium.com/better-programming/13-code-review-standards-inspired-by-google-6b8f99f7fd67
- The code improves the overall health of the system
- Quick code reviews, responses, and feedback
- Educate and inspire during the code review
- Follow the standards when reviewing code
- Resolving code review conflicts
- Demo UI changes as a part of code review
Multiple apps sharing the same code is a violation of twelve-factor. The solution here is to factor shared code into libraries which can be included through the dependency manager.
https://www.nushell.sh/about.html
help
config --set [env $nu.env]
NewerOlder