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 2024-01-10
Attendees
Agenda
use ../../foo/bar.nu
crate
?autoload
: Load all modules fromNU_AUTOLOAD_DIRS
$nu.vendors.autolad_path
constant for package maintainers to override if necessaryjob start <closure>
: starts new thread and job, returns job idjob list
: similar tops
job wait [id]
job kill [id]
job switch [id]
?job resume [id]
?job pause/stop [id]
??Discussed Topics
Relative imports
Sophia:
We need to preserve being able to move directories freely.
The
..
feels like a good fit for a shell, let's keep it, not necessary to havesuper
keyword.Jumping to project root could be useful (like Rust's
crate
).Amtoine:
One other possibility is to run tests with package root auto-added to NU_LIB_DIRS.
autoload
Sounds good.
One concern is performace: Adding too much into the autoload directory could affect startup time. But it can be disabled by removing
autoload
from config, or customizingNU_AUTOLOAD_DIRS
.Job control
Threads vs. processes?
Difference between REPL and script:
* In REPL, jobs should terminate when REPL ends (or shouldn't?)
* In a script, jobs should keep running after evaluation of the script is done
Issues