Nu-core
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Note Insights Sharing URL Help
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    # Nushell core team meeting 2022-12-07 ## Attendees - Andres - Darren - Jakub - JT - Michael - Reilly - Stefan ## Agenda - Feedback on 0.72 - Hotfix release and plan going forward for the linux binaries - Mutability - https://github.com/nushell/nushell/issues/7381 - JT XML update - lets talk about config JT mentioned yesterday - Next steps to get to 0.80/1.0 # Discussed Topics ## Feedback on 0.72 Mixed reaction to try/catch. Do we support && and || bash-isms? `&&` would be trivial to translate to `;` at the moment `||` could be made possible without too much effort We should deprecate C-style boolean operators to enable that (already PR ready https://github.com/nushell/nushell/pull/7241) ## Binary releases and the need for a hotfix Caused some headaches with the python virtualenv CI pipeline -> observation we should still use 20.04 LTS to have a more lenient GLIBC version Hotfix process still a bit dependent on JT -> Improvement to bus factor **Action item** release checklist and share keys necessary ## Mutability - https://github.com/nushell/nushell/issues/7381 A little bit weird how mutability works behind cell path indexing `upsert` and commands are fine table order of column or row index shouldn't matter assigning to `$tab.col` should probably error while all proper index should work But cell path updating for deeply nested structures like XML,JSON should work ## XML **Goal** have a less yucky representation of XML deserialization (quicker access to the inner data would be great) JT: looking at how XML to JSON converters serialize the attributes and childs ( and bare tags) still kinda gross until we decide on how it should be represented. Using `#` in special forms might do the trick. ## Config https://github.com/nushell/nushell/issues/7371 Chat with Yehuda: pain of upgrading with each version bump (either burn down and rebuild or pray and read the blog) Could we separate the config into smaller parts Parts we can update automatically / or the user in a more granular fashion File split up - shouldn't overwhelm the users with way to many files - but maybe have folders for completions, themes where you can just paste new files - separate user settings from tedious parts most likely contributed from nu repos or the community - resiliency how do we error or provide defaults *Also happening:* Record split up by webbedspace and the follow up PRs Example power user config: https://github.com/kurokirasama/nushell_scripts/blob/main/nu_config.nu Michael: getting the config setup is right is extremely important to have the community on board and make sure we can help people when it get's even more complicated JT: good starting point would be the completions as they are currently lackluster by default. maybe completions go in a specific directory so we can ship more Darren: people are requesting to have a discovery on typical unix path `/usr/share/fish/completions` and `~/.config/fish/completions` or whatever *Action item:* make sure we can import a folder as a module to load the copletions from it Question about qualified name for files in the directory and how they appear in the module structure/namespace (concatenating all files sounds bug prone) Would require additional step either as part of the installer or the initial setup (from the data in the binary) Lookup paths (do we need more?, we may not have permissions to write to locations installers can write to) Q: how do we update the subfiles? Suggestion (JT) hash each config file and check if the hash changed compared to the stored values in the binary (include via `build.rs` or something) **Conclusion** completions as the first starting point for the config modularization ## Next steps for 0.80 and friends we made a big step by supporting mutation and more imperative constructs Q: should we make a version jump soon, as we moved big steps Stefan: Don't feel pressured to do so and we make bigger leaps and smaller steps anyway What are the things that feel like missing to reach `0.80` mentally - Better IDE support - performance edge cases - redirection - error handling in a more granular way - matching (on types) - rest of the 90% work for the last 10% ## Typechecking and the problem of out of date documentation Still breaks the doc update script, we should get that fixed ASAP https://github.com/nushell/nushell/issues/7320 community was not yet eager to pick it up **Action item** assign range of commands among the core contributors Warning: examples are tested for types by Dan's extension to the examples tester either add additional examples proving that we behave properly with respect to the types or explicitly disable example checking (and be appropriately lenient with `Type::Any`) ## Dataframeectomy post operative care no shitstorm yet small number of complaints (on reddit?) People probably didn't care enough yet as the integration wasn't as seamless as it could be to be intuitive out of the box, so most probably never used it. (and those that use it maybe compile themselves) -> polish the plugin interface for 1.0 (so it can be versioned and relied upon) -> 2.0 can bring more tight coupling for more high performance plugins without designing by commitee now (missing killer tool for tigh coupling: wasm, missing stable abi, extism?) Should we commit to particular `nu-protocol` internals for 1.0 General sense, arriving at the good set of core commands is more relevant to the users. Ideas around: - `Value::Table` that would encapsulate the implementation details (row-based, column based for dataframe) - overlays to enable special commands - having the core commands exposed to other commands (mini nu virtual machine?) - would this lend itself towards to doing vtable/enum-dispatch OOP-style overloads of commands or command internal operations

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully