-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
59 additions
and
22 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Created by https://www.toptal.com/developers/gitignore/api/hugo | ||
# Edit at https://www.toptal.com/developers/gitignore?templates=hugo | ||
|
||
### Hugo ### | ||
# Generated files by hugo | ||
/public/ | ||
/resources/_gen/ | ||
/assets/jsconfig.json | ||
hugo_stats.json | ||
|
||
# Executable may be added to repository | ||
hugo.exe | ||
hugo.darwin | ||
hugo.linux | ||
|
||
# Temporary lock file while building | ||
/.hugo_build.lock | ||
|
||
# End of https://www.toptal.com/developers/gitignore/api/hugo |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
+++ | ||
title = '{{ replace .File.ContentBaseName "-" " " | title }}' | ||
date = {{ .Date }} | ||
draft = true | ||
+++ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
# Goals | ||
# Direct style for Functional Reactive Programming: an analysis in Scala & Kotlin | ||
|
||
## Goals of the project | ||
|
||
> Develop a few examples (not too complex) using asynchronous constructs and try to implement these examples in the two variants: using the current implementation of futures based on monadic constructs and the style that adopts gears (direct style). | ||
Analyze aspects such as: | ||
Analyze aspects such as: | ||
> | ||
> - ergonomicity of the two styles (which one results more thoughtful and/or verbose) | ||
> - which of the two approaches has a real advantage in adoption, and when | ||
> - Pros and cons of the two styles | ||
> - how and when to use one approach rather than the other | ||
> - any limitations and difficulties encountered in using them | ||
# Content | ||
## Roadmap | ||
|
||
TBD | ||
1. [Boundary and break](./docs/boundaries) | ||
|
||
1. [Boundary and break](./content/boundaries.md) | ||
TBD |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module github.com/tassiLuca/PPS-22-direct-style-experiments/docs | ||
|
||
go 1.21.5 | ||
|
||
require github.com/alex-shpak/hugo-book v0.0.0-20231204233341-118997fa920e // indirect |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
github.com/alex-shpak/hugo-book v0.0.0-20231204233341-118997fa920e h1:vOzQO2BCcgZ+M5W5KkhRHWiryNX/4RuA0iJprMrMUH4= | ||
github.com/alex-shpak/hugo-book v0.0.0-20231204233341-118997fa920e/go.mod h1:L4NMyzbn15fpLIpmmtDg9ZFFyTZzw87/lk7M2bMQ7ds= |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
baseURL = 'https://tassiluca.github.io/PPS-22-direct-style-experiments/' | ||
languageCode = 'en-us' | ||
title = 'PPS-22-direct-style-experiments' | ||
|
||
enableGitInfo = true # to enable 'Last Modified by' date and git author information on 'doc' type pages. | ||
|
||
[markup] | ||
[markup.highlight] | ||
style = 'catppuccin-latte' | ||
|
||
[module] | ||
[[module.imports]] | ||
path = 'github.com/alex-shpak/hugo-book' | ||
|
||
[params] | ||
BookTheme = 'auto' | ||
BookRepo = 'https://github.com/tassiLuca/PPS-22-direct-style-experiments' # used for 'Last Modified' and 'Edit this page' links | ||
BookCommitPath = 'commit' |