home.social

Search

664 results for “simonmic”

  1. #ThisWeekInHledger 2024-04-26

    - run checks in a well-defined order, and tweak that order
    - check ordereddates: drop --date2 support; check primary dates only
    - balcmds: show digit groups marks in html output again [#2196]
    - retire the main Makefile
    - relnotes.hs: generate/update release notes from changelogs
    - md-issue-refs.el: manage issue links in markdown
    - examples: vanguard, fidelity csv rules updates
    - doc updates
    - more… hledger.org/news.html#this-wee

    #plaintextaccounting #hledger

  2. #ThisWeekInHledger 2024-04-26

    - run checks in a well-defined order, and tweak that order
    - check ordereddates: drop --date2 support; check primary dates only
    - balcmds: show digit groups marks in html output again [#2196]
    - retire the main Makefile
    - relnotes.hs: generate/update release notes from changelogs
    - md-issue-refs.el: manage issue links in markdown
    - examples: vanguard, fidelity csv rules updates
    - doc updates
    - more… hledger.org/news.html#this-wee

    #plaintextaccounting #hledger

  3. #ThisWeekInHledger 2024-04-26

    - run checks in a well-defined order, and tweak that order
    - check ordereddates: drop --date2 support; check primary dates only
    - balcmds: show digit groups marks in html output again [#2196]
    - retire the main Makefile
    - relnotes.hs: generate/update release notes from changelogs
    - md-issue-refs.el: manage issue links in markdown
    - examples: vanguard, fidelity csv rules updates
    - doc updates
    - more… hledger.org/news.html#this-wee

    #plaintextaccounting #hledger

  4. #ThisWeekInHledger 2024-04-19
    Worked on release process, github workflows, platform build issues, mac arm release binaries, CLI commands list, a hledger add ANSI bug, misc doc updates, and released hledger 1.33.
    …more: hledger.org/news.html#this-wee

    #plaintextaccounting #hledger

  5. 2024-04-19
    Worked on release process, github workflows, platform build issues, mac arm release binaries, CLI commands list, a hledger add ANSI bug, misc doc updates, and released hledger 1.33.
    …more: hledger.org/news.html#this-wee

  6. :
    Investigated/refactored/discussed a problem with boolean query expressions; disallowed date: in OR expressions. Required process >=1.6.19.0 for HSEC-2024-0003. Updated docs: balance assertions, balancesheetequity.

    plaintextaccounting.org updates: FAQ, Borrowing and lending, Investing and trading, Shared expenses, project ledger.

    more: hledger.org/news.html#this-wee

  7. Hail PTA fans! Doc updates on hledger.org and plaintextaccounting.org;
    a new finance/donations page and public ledger for the PTA site and PTA forum, which is now hosted and seeking sponsors;
    fixes for roi --value; a Go client for hledger-web, and more:

    hledger.org/news.html#this-wee

  8. 2024-03-29

    Doc rewrites, error message improvements.

    Misc:
    - More discussion of hledger-interest, a call for improvements,
    and a pull request by Dmitry Astapov.
    - Some discussion of exporting to Excel/spreadsheets.
    - How much attention to bookkeeping is just right ? blog post

    Feel free to share your experience reports or interesting links (they don't have to be new) on the PTA forum.

    ... more: hledger.org/news.html#this-wee

  9. :
    No hledger dev work this week. The new PTA forum continues to work well. docker-finance, a new cryptocurrency-supporting workflow system using hledger-flow, and the older workflows Full-fledged hledger, hledger-flow and rtrledger,
    have been added at plaintextaccounting.org/#workf.
    More: hledger.org/news.html#this-wee


  10. I fixed some doc issues on hledger.org: code blocks can now be scrolled normally, and are cheerily color-coded instead of drab grey.

    The 1.33 release is still pending. Another gnarly release blocker remains to fix, and I was burned out on those.

    Instead, got deeply involved in setting up a new site for PTA discussions [previously tooted]

    ...more: hledger.org/news.html#this-wee

  11. news hounds, it's a bonanza issue !

    A lot of work this week: bugfixing, updating for GHC 9.8, and improving docs. We weren't ready to release 1.33 on March 1st, but it's near.

    - support unicode space characters in numbers
    - add close --round option, like print
    - more private stats output, add memory stats
    - dev builds now on ghc 9.8
    - bug fixing, doc improvements
    …more:
    hledger.org/news.html#this-wee

  12. Here's what happened :

    - use a symbolic link's target's directory for relative include paths
    - interpret glob patterns in $LEDGER_FILE
    - implicitly declare the date/date2/type tags
    - add close --assertion-type option
    - tweak close --assert's default description
    - various doc updates
    - hledger-ui dark theme (Jonathan Dowland)
    Read more... hledger.org/news.html#this-wee

  13. 2024-02-16:
    Not much time for hledger :hledger: hacking this week;
    support and doc tweaks, and an updated example CSV rules file for ( wallet software).
    Read more… hledger.org/news.html#this-wee

  14. 2024-02-02
    I cleaned up issue labels, updated the ISSUES page, refined the user pain score, worked on an issues dashboard prototype, tweaked the tags on `close`'s new --assert/--retain modes, and shipped hledger 1.32.3…
    ...read more at hledger.org/news.html#this-wee

  15. - Thinking/writing about improvements to `close` and the new file/periodic files workflow…
    - new terminology to distinguish *starting/ending files* vs *opening/closing accounts*…
    - new `--assert` and `--assign` modes for `close`
    - checked and fixed the remaining broken links on plaintextaccounting.org
    - surveyed and linked all other plaintextaccounting.org/#videos on youtube (they're fun, check them out!)
    - …read more at hledger.org/news.html#this-wee

  16. And the next part: importing transactions you may have forgotten but your forecast rules have not. Nicely avoids importing transactions twice.

    YEAR := `date +%Y`
    FORECASTJ := YEAR / YEAR + '-forecast.journal'

    # import any recent transactions generated by forecast rules; --dry to preview
    @import-forecast *ARGS:
    hledger import -s -I --auto --forecast=-15days..tomorrow {{ FORECASTJ }} "$@"

    (import explained: hledger.org/dev/hledger.html#i)

    #hledger #PlainTextAccounting #justfile

  17. And the next part: importing transactions you may have forgotten but your forecast rules have not. Nicely avoids importing transactions twice.

    YEAR := `date +%Y`
    FORECASTJ := YEAR / YEAR + '-forecast.journal'

    # import any recent transactions generated by forecast rules; --dry to preview
    @import-forecast *ARGS:
    hledger import -s -I --auto --forecast=-15days..tomorrow {{ FORECASTJ }} "$@"

    (import explained: hledger.org/dev/hledger.html#i)

  18. And the next part: importing transactions you may have forgotten but your forecast rules have not. Nicely avoids importing transactions twice.

    YEAR := `date +%Y`
    FORECASTJ := YEAR / YEAR + '-forecast.journal'

    # import any recent transactions generated by forecast rules; --dry to preview
    @import-forecast *ARGS:
    hledger import -s -I --auto --forecast=-15days..tomorrow {{ FORECASTJ }} "$@"

    (import explained: hledger.org/dev/hledger.html#i)

    #hledger #PlainTextAccounting #justfile

  19. And the next part: importing transactions you may have forgotten but your forecast rules have not. Nicely avoids importing transactions twice.

    YEAR := `date +%Y`
    FORECASTJ := YEAR / YEAR + '-forecast.journal'

    # import any recent transactions generated by forecast rules; --dry to preview
    @import-forecast *ARGS:
    hledger import -s -I --auto --forecast=-15days..tomorrow {{ FORECASTJ }} "$@"

    (import explained: hledger.org/dev/hledger.html#i)

    #hledger #PlainTextAccounting #justfile

  20. And the next part: importing transactions you may have forgotten but your forecast rules have not. Nicely avoids importing transactions twice.

    YEAR := `date +%Y`
    FORECASTJ := YEAR / YEAR + '-forecast.journal'

    # import any recent transactions generated by forecast rules; --dry to preview
    @import-forecast *ARGS:
    hledger import -s -I --auto --forecast=-15days..tomorrow {{ FORECASTJ }} "$@"

    (import explained: hledger.org/dev/hledger.html#i)

    #hledger #PlainTextAccounting #justfile

  21. (In future, if osh/ysh get some make/just-inspired features or libraries (seems quite possible), the pendulum may swing back to using shell only.

  22. (In future, if osh/ysh get some make/just-inspired features or libraries (seems quite possible), the pendulum may swing back to using shell only.

    #oilshell #justfile #makefile

  23. (In future, if osh/ysh get some make/just-inspired features or libraries (seems quite possible), the pendulum may swing back to using shell only.

    #oilshell #justfile #makefile

  24. (In future, if osh/ysh get some make/just-inspired features or libraries (seems quite possible), the pendulum may swing back to using shell only.

    #oilshell #justfile #makefile

  25. I'm using `just` eg to manage developer/maintainer task scripts for #hledger, and to manage personal finance/time/task scripts.

    Here's one for showing a near-term transactions forecast:

    # show forecast transactions predicted recently and soon
    @forecast *ARGS:
    hledger print -I --auto --forecast=-15days..+15days tag:generated "$@"

    (Forecasting explained: hledger.org/dev/hledger.html#f)

    #PlainTextAccounting #justfile

  26. I'm using `just` eg to manage developer/maintainer task scripts for , and to manage personal finance/time/task scripts.

    Here's one for showing a near-term transactions forecast:

    # show forecast transactions predicted recently and soon
    @forecast *ARGS:
    hledger print -I --auto --forecast=-15days..+15days tag:generated "$@"

    (Forecasting explained: hledger.org/dev/hledger.html#f)

  27. I'm using `just` eg to manage developer/maintainer task scripts for #hledger, and to manage personal finance/time/task scripts.

    Here's one for showing a near-term transactions forecast:

    # show forecast transactions predicted recently and soon
    @forecast *ARGS:
    hledger print -I --auto --forecast=-15days..+15days tag:generated "$@"

    (Forecasting explained: hledger.org/dev/hledger.html#f)

    #PlainTextAccounting #justfile

  28. I'm using `just` eg to manage developer/maintainer task scripts for #hledger, and to manage personal finance/time/task scripts.

    Here's one for showing a near-term transactions forecast:

    # show forecast transactions predicted recently and soon
    @forecast *ARGS:
    hledger print -I --auto --forecast=-15days..+15days tag:generated "$@"

    (Forecasting explained: hledger.org/dev/hledger.html#f)

    #PlainTextAccounting #justfile