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-09-07 ## Attendees - Stefan - JT - Jakub - Darren - Reilly - Storm - Andres ## Agenda - [Pillars of Nushell](https://hackmd.io/HOYbgsN9QmiOkIK9WY_6uQ): Common themes - Syntax changes: - brackets vs parens in defs - Afterthoughts: dollarless variables - Proposed: space vs dot for subcommands - Contributor sustainability - Team documentation - Roles for our club members - Dev docs - Issue triage - `source-env` failure [#6513](https://github.com/nushell/nushell/discussions/6513) and [#6510](https://github.com/nushell/nushell/issues/6510) - being a shell - discussion of `source` in general - JT's cursed syntax idea # Discussed Topics ## Pillars of nushell We have a collection on [Pillars of Nushell](https://hackmd.io/HOYbgsN9QmiOkIK9WY_6uQ) Wait for everyone to have ## Syntax changes Strong engagement on the polls (> 60 respondents) - removing the `$` on the variable (pulled for now) - No reactions on revert of `$` yet with the release - (62% percent for dedollarfication in the polls) but we weren't yet technically convinced - `[]` vs `()` for `def`s - Space vs dot for subcommands - dot has IDE advantages - see comments by JT in the last section (potentially new unifying semantics) ## Involving the community better We should keep up on issue triage and PR review -> try to give our club PR review and issue triage rights (check Github options) ## How can we reduce the problem "People don't understand nushell properly" 1. People using nushell 2. People contributing to nushell - Not fully aware of general structure - Parsetime philosophy Maybe: A blogpost about the parse and eval time to point to (on top of "thinking in nushell") ## Contributor book Desired: - How to write a command + rough guidelines - Where to place your tests - Examples - different integration tests - How the parser etc. are structured READMEs in the main repo have advantages in keeping it in sync (every developer would have it on their disk already) ## Testing We don't get all the benefits from automated testing at the moment. **Problem:** Running the test suite with dataframes is slow 99% solution: not always recommend running `cargo test --all --features=extra` Maybe a nushell helper script for the developers to trigger the right things locally Idea: nushell assertion commands to better write better nu tests Most people won't learn nushell internals. However, a good way to ensure that the nushell model is followed is to add tests for 100% coverage of our codebase. This way, if rules are broken, tests will catch them. ## `source-env` failure We want to be able to hand a path to `source-env` Problem: We allow blocks in the env Currently we don't absorb the new blocks (not allowed at eval time by current design) Currently works for data only Blocks and defs break *Problematic usecase right now:* prompts (They use a block and should be sourceable) Hotfix (not so nice): rip `source-env` OR require static path (defeats the purpose of source work) Hotfix: error on block import properly Initially intended to go alongside with modules (they now have a `export-env` block to aggregate the data segment) Metaquestion: How much do we embrace the shellness (leading to allowing `eval` or `source`) > Andres from early nushell development: Can we keep the parser agnostic from shell things? (concern at the time IDE parsing/primary parsing) Can we have valid different flavors of the parser (shell flavor, static language flavor)? -> problem of consistency, hard to follow for the users if stuff only works conditionally. Eval exists in other scripting languages (Dave?: on eval also description of side effects in the form of new prototypes) **Fix now:** properly error out on blocks now, decide on the further direction later. Also address the block post. (pointer in the error message) ## Philosophical discussion in the direction: Pillars of nushell > JT: If we want to reach a large userbase we can not just be a GUCCI shell Areas: shell, devops, dataframes, DSL (value add by adding a shell scripting like tool for an existing ecosystem), + crazy things **Open Q:** How can we crack the new area and attract many new users and contributors Historical example: Ruby only made inroads around the world with Ruby on Rails. Python got its killer application with the numpy/scipy ecosystem (and some webstuff...) > We need stakeholders that feel empowered to add commands or push nu(shell) in nu directions e.g. Andres' data project -> data commands Idea floating around to pick up: test runner -> devops concerns could be addressable by nu ### Gists of comments (please expand or correct if I misrepresent you) - Stefan: there are areas that make it feel hard to program more complex things. personally miss first-class functions and user defined types allowing function dispatch or typecheck. would love to escalate from a oneliner - Jakub: maybe work around the shell like syntax but favor static/structured semantics for scripts and allow going beyond scripts into large applications - Reilly: writing scripts feels harder than necessary now, maybe have 2-flavors to feel more "C-style syntax" like in larger scripts compared to the shell experience - JT: with jakt NES emulator project, could a NuES be written? Ambitious project that is passion driven. ## Syntax and typesystem idea from JT Let's embrace the overloading based on types -> subcommands can be simplified and made consistent ``` # Current "hello world" | str split " " # Future "hello world" | str.split " " # str is a module # modules can say they extend a certain type # `str` extends/enhances `string` # Also allow "hello world".split " " ``` Q: how to constrain a string to be a path We like the idea

    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