or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
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.
Syncing
xxxxxxxxxx
Nushell core team meeting 2023-06-14
Attendees
Agenda
cargo
in the CI and--workspace
: related to nushell/nushell#9425do we want to add extra to the CI in order to run the nu-cmd-extra tests ?
--workspace
options triggeredDiscussed Topics
Detour: serde and bloat
ShellError
is the culprit for the large compile size for serde derivesrelease cycle
change the cycle only after next release to update users in the next blog post.
we do not want to surprise anyone.
the main benefit is to buy us more time to polish and have a solid 1.0.
going from 3 to 4 delays the 0.100 release by around 4 months.
Decision message on discord/blog, make the regular release and then try the 4 week cadence
thinking about milestone framework for 1.0
uutils and nushell
uutils/coreutils
s side to have the option to use uutils internals without having to use the POSIX frontend and replace it with a nu front
https://twitter.com/_vkaku/status/1668752465737715712 Twitter thread kicking of potential collab
Also a potential option to have more posix compatibility where needed.
Darren: challenge to shim the output (as they can freely print to STDOUT) while we have to channel the data into the correct format.
Can using JSON be a compromise
nu-cmd-base
We decided to have a new crate called nu-cmd-base which would be the place for all of the core datastructures that need a home. The other alternative was to add more stuff to nu-utils which is not ideal.
This crate nu-cmd-base will be used for helper methods, traits, structs that are used by all of our commands.
There will be NO commands in nu-cmd-base.
Issues