pijul nest
guest [sign in]

Improve README

[?]
Jan 11, 2021, 5:48 PM
B6XN375LYPEVGDK3DJJO7PSSMIJFPL5DMLWUS7TDYHLJIOEFSPWQC

Dependencies

Change contents

  • edit in README.md at line 4
    [2.174]
    [2.174]
    ## Brief PureScript Introduction
  • replacement in README.md at line 7
    [2.175][2.175:350]()
    [PureScript](https://www.purescript.org/) is very similar to Haskell, but differs in several aspects. It is strict, and uses a somewhat different typeclass hierarchy. Notably
    [2.175]
    [2.350]
    [PureScript](https://www.purescript.org/) is very similar to Haskell, but differs in several aspects. It is strict, and uses a somewhat different typeclass hierarchy and naming. Notably
  • edit in README.md at line 11
    [2.765]
    [2.765]
    * Functions can be found on [Pursuit](https://pursuit.purescript.org/) which is similar to Hoogle.
    * `#` is `flip ($)`, `<#>` is `flip <$>`, `Unit` is `()`.
    * Record access/update syntax is different but hopefully comprehensible.
  • edit in README.md at line 17
    [2.1343]
    [2.1343]
    ## Application Introduction
    The application serves for data visualization purposes. Data is served by a Rust back-end from a database; the front-end uses several simple GET endpoints to get the data. The website is made using the Halogen library; it is single-page, and includes proper routing. I made a [screenshot](https://imgur.com/a/3YxVW9y) for illustration.
  • edit in README.md at line 23
    [2.1631]
    [2.1631]
    Also, error handling is crude. For example, most remotely-fetched state is inside `Maybe`, but this doesn't represent errors in any way. They are simply written out to console instead. I just couldn't be bothered to do it properly :)
  • replacement in README.md at line 28
    [2.1789][2.1789:2223]()
    * [Api.hs](https://nest.pijul.com/potocpav/frontend:main/A4YPCXNG44HRK.R35AA) - GET request generation
    * [Filtering.hs](https://nest.pijul.com/potocpav/frontend:main/A4YPCXNG44HRK.VWSQA) - Elm-like model-view-update component architecture. [Here is a screenshot](https://imgur.com/a/3YxVW9y).
    * [Filter.hs](https://nest.pijul.com/potocpav/frontend:main/A4YPCXNG44HRK.YQ3QA) - A simple LL(0) parser combinator for trajectory filtering.
    [2.1789]
    * [Filtering.hs](https://nest.pijul.com/potocpav/frontend:main/A4YPCXNG44HRK.VWSQA) - Elm-like model-view-update component architecture. This is the page in the screenshot above.
    * [Filter.hs](https://nest.pijul.com/potocpav/frontend:main/A4YPCXNG44HRK.YQ3QA) - A simple LL(0) parser combinator for trajectory filtering.
    * [Api.hs](https://nest.pijul.com/potocpav/frontend:main/A4YPCXNG44HRK.R35AA) - GET request generation